/* =========================================
   1. Variables & Reset
   ========================================= */
:root {
    /* Ivory & Gold Luxury Palette */
    --bg-ivory: #FDFCF5;
    --bg-beige: #F5F2E8;
    --text-dark: #1A1A1A;
    --text-gray: #4A4A4A;
    --gold-primary: #D4AF37;
    --gold-dark: #B59020;
    --gold-light: #F3E5AB;
    --white: #FFFFFF;
    --black: #000000;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-ivory);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. Buttons & Utilities
   ========================================= */
.gold-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.gold-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: 0.5s;
}

.gold-btn:hover .btn-shine {
    left: 100%;
}

.primary-btn {
    background: var(--text-dark);
    color: var(--gold-primary);
    padding: 15px 35px;
    border: 1px solid var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.primary-btn:hover {
    background: transparent;
    color: var(--text-dark);
}

.secondary-btn {
    background: transparent;
    color: var(--text-dark);
    padding: 15px 35px;
    border: 1px solid var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.secondary-btn:hover {
    background: var(--text-dark);
    color: var(--gold-primary);
}

.section-tag {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section-heading {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.separator-gold {
    width: 80px;
    height: 2px;
    background: var(--gold-primary);
    margin: 20px auto;
}

.text-center {
    text-align: center;
}

/* =========================================
   3. Header Styling
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(253, 252, 245, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s;
}

.nav-item:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: 0.4s;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg-ivory);
    z-index: 999;
    padding-top: 100px;
    transition: 0.4s;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-links {
    text-align: center;
}

.mobile-links li {
    margin: 20px 0;
}

.mobile-links a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
}

/* =========================================
   4. Hero Section
   ========================================= */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, #fbf4d7 0%, transparent 40%);
    z-index: -2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.eyebrow-text {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.gold-text-gradient {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-btn-group {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-trust-badges {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* 3D Visual in Hero */
.luxury-3d-card {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1000px;
}

.card-glass {
    position: absolute;
    width: 80%;
    height: 90%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(-15deg) rotateX(5deg);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.chart-visual {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
}

.bar {
    width: 30px;
    background: linear-gradient(to top, var(--gold-dark), var(--gold-primary));
    border-radius: 5px 5px 0 0;
    animation: growBar 2s ease-out forwards;
}

.b1 {
    height: 40%;
    animation-delay: 0.2s;
}

.b2 {
    height: 60%;
    animation-delay: 0.4s;
}

.b3 {
    height: 50%;
    animation-delay: 0.6s;
}

.b4 {
    height: 85%;
    animation-delay: 0.8s;
}

.stat-floating {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--text-dark);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: floatReverse 6s ease-in-out infinite;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.card-decoration-ring {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.2;
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, -50%) rotateY(-15deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) rotateY(-15deg) rotateX(5deg) translateY(-20px);
    }
}

@keyframes floatReverse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes growBar {
    from {
        height: 0;
    }
}

/* =========================================
   5. Proof Section
   ========================================= */
.proof-section {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.proof-item h3 {
    font-size: 3rem;
    color: var(--gold-primary);
    display: inline-block;
    margin-bottom: 5px;
}

.proof-suffix,
.proof-prefix {
    font-size: 3rem;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-weight: 600;
}

.proof-label {
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* =========================================
   6. Authority / About
   ========================================= */
.authority-section {
    padding: var(--section-padding);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-frame {
    position: relative;
    height: 500px;
    border: 1px solid var(--gold-primary);
    padding: 20px;
}

.placeholder-img-artistic {
    width: 100%;
    height: 100%;
    background: #e0d8c0;
    background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    position: relative;
    overflow: hidden;
}

.placeholder-img-artistic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), transparent);
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    right: -30px;
    background: var(--white);
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--gold-primary);
}

.experience-badge span {
    display: block;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}

.body-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.check-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.check-list i {
    color: var(--gold-primary);
    margin-right: 10px;
}

/* =========================================
   7. Services Section
   ========================================= */
.services-section {
    padding: var(--section-padding);
    background-color: var(--bg-beige);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    border-top-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gold-primary);
}

/* =========================================
   8. Calculator Section
   ========================================= */
.calculator-section {
    padding: var(--section-padding);
    background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(to right, #1a1a1a, #2c2c2c);
    color: var(--white);
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.calc-content h2,
.calc-content h5 {
    color: var(--white);
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    height: 5px;
    border-radius: 5px;
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gold-primary);
    cursor: pointer;
    border-radius: 50%;
}

.range-value {
    margin-top: 10px;
    font-size: 1.2rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.calc-results {
    background: var(--white);
    color: var(--text-dark);
    padding: 30px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-card {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.result-card span {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-gray);
}

.result-card h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 5px 0 0;
}

.result-card.highlight h3 {
    color: var(--gold-dark);
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 20px;
    font-style: italic;
}

.btn-block {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 15px;
    font-weight: 600;
    display: block;
}

/* =========================================
   9. Process Section
   ========================================= */
.process-section {
    padding: var(--section-padding);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--gold-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item .content {
    padding: 30px;
    background: var(--white);
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item h2 {
    color: rgba(212, 175, 55, 0.2);
    font-size: 4rem;
    position: absolute;
    top: -20px;
    font-family: var(--font-heading);
}

.timeline-item.left h2 {
    right: 40px;
}

.timeline-item.right h2 {
    left: 40px;
}

/* =========================================
   10. Industries & Testimonials
   ========================================= */
.industries-section {
    padding: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.industry-scroller {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-weight: 600;
    transition: 0.3s;
}

.industry-card i {
    font-size: 2rem;
    color: var(--gold-dark);
}

.industry-card:hover {
    color: var(--text-dark);
    transform: scale(1.1);
}

/* Testimonials */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-beige);
    text-align: center;
}

.testimonial-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 30px;
}

.slide {
    display: none;
    animation: fadeIn 0.5s;
}

.slide.active {
    display: block;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.author-details h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.author-details span {
    color: var(--gold-dark);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.slider-controls {
    margin-top: 40px;
}

.slider-controls button {
    background: transparent;
    border: 1px solid var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
    transition: 0.3s;
}

.slider-controls button:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* =========================================
   11. Contact Page Specifics
   ========================================= */
.page-header {
    background: var(--text-dark);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    color: var(--gold-primary);
}

.page-breadcrumb a {
    color: #ccc;
}

.contact-section {
    padding: var(--section-padding);
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-top: 5px;
}

.luxury-form {
    background: var(--white);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 1rem;
    background: #FAFAFA;
}

.form-group input:focus {
    border-color: var(--gold-primary);
    outline: none;
    background: var(--white);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Legal Page Content */
.legal-content {
    padding: var(--section-padding);
}

.legal-content h2 {
    margin-top: 30px;
    font-size: 1.8rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

/* =========================================
   12. Footer & Chat
   ========================================= */
.main-footer {
    background-color: #111;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    max-width: 150px;
}

.footer-col h4 {
    color: var(--gold-primary);
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-col ul li i {
    width: 20px;
    color: var(--gold-primary);
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 0.85rem;
    color: #666;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.chat-header {
    background: var(--gold-dark);
    color: var(--white);
    padding: 15px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    background: var(--white);
    height: 300px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-top: none;
}

.chat-body.open {
    display: flex;
}

.msg.bot {
    background: #f1f1f1;
    color: #333;
    padding: 10px;
    margin: 15px;
    border-radius: 10px 10px 10px 0;
    align-self: flex-start;
    font-size: 0.9rem;
}

.chat-input-area {
    display: flex;
    border-top: 1px solid #eee;
}

.chat-input-area input {
    flex: 1;
    border: none;
    padding: 15px;
    outline: none;
}

.chat-input-area button {
    background: var(--gold-primary);
    border: none;
    color: var(--white);
    width: 50px;
    cursor: pointer;
}

/* CTA Section Pre-Footer */
.cta-section {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-container h2 {
    color: var(--gold-primary);
    font-size: 2.5rem;
}

.quick-contact-inline {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.quick-contact-inline input {
    padding: 14px;
    width: 300px;
    border: none;
}

/* =========================================
   13. Responsiveness
   ========================================= */
@media (max-width: 992px) {

    .hero-content,
    .split-layout,
    .calc-wrapper,
    .proof-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-section {
        padding-top: 150px;
        text-align: center;
    }

    .hero-btn-group {
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .luxury-3d-card {
        margin-top: 50px;
        height: 300px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item h2 {
        top: 20px;
        left: 10px;
        font-size: 2.5rem;
    }

    .quick-contact-inline {
        flex-direction: column;
        align-items: center;
    }

    .quick-contact-inline input {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-heading {
        font-size: 2rem;
    }

    .calculator-section {
        padding: 50px 20px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeUp 1s ease-out forwards;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}