        :root {
            --primary: #E8DCC4;
            --secondary: #6B4F4F;
            --accent: #FFF8F0;
            --dark: #3a3226;
            --darker: #2a241e;
            --neon-gold: #f5e6a0;
            --neon-rose: #e8c4b0;
            --shadow: rgba(107, 79, 79, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Manrope', sans-serif;
            background: var(--accent);
            color: var(--secondary);
            overflow-x: hidden;
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--accent);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--secondary), var(--dark));
            border-radius: 5px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 22px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(248, 245, 240, 0.92);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(107, 79, 79, 0.1);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 4px 30px var(--shadow);
        }

        .navbar.scrolled {
            padding: 16px 5%;
            background: rgba(248, 245, 240, 0.98);
            box-shadow: 0 8px 40px var(--shadow);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            color: var(--secondary);
        }

        .logo-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
            box-shadow: 0 8px 25px rgba(107, 79, 79, 0.25);
            position: relative;
            overflow: hidden;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(232, 220, 196, 0.3), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        .logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 38px;
            align-items: center;
        }

        .nav-menu a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 4px;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary), var(--dark));
            transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-radius: 2px;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--dark);
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            color: var(--primary);
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 12px 35px rgba(107, 79, 79, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(232, 220, 196, 0.4), transparent);
            transition: left 0.6s;
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 45px rgba(107, 79, 79, 0.35);
            color: var(--accent);
        }

        .cta-btn i {
            transition: transform 0.3s ease;
        }

        .cta-btn:hover i {
            transform: translateX(4px);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
            padding: 8px;
        }

        .mobile-toggle span {
            width: 32px;
            height: 3px;
            background: var(--secondary);
            transition: all 0.3s ease;
            border-radius: 3px;
            position: relative;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 5% 100px;
            position: relative;
            overflow: hidden;
            background: 
                radial-gradient(ellipse at 20% 80%, rgba(232, 220, 196, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(107, 79, 79, 0.08) 0%, transparent 50%),
                var(--accent);
        }

        .hero-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            animation: floatShape 25s infinite ease-in-out;
        }

        .floating-shape.shape-1 {
            width: 400px;
            height: 400px;
            background: var(--secondary);
            top: -150px;
            right: -100px;
            animation-delay: 0s;
        }

        .floating-shape.shape-2 {
            width: 300px;
            height: 300px;
            background: var(--primary);
            bottom: -80px;
            left: 10%;
            animation-delay: -8s;
        }

        .floating-shape.shape-3 {
            width: 200px;
            height: 200px;
            background: var(--dark);
            top: 40%;
            right: 15%;
            animation-delay: -16s;
        }

        @keyframes floatShape {
            0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
            25% { transform: translate(40px, -30px) rotate(90deg) scale(1.05); }
            50% { transform: translate(-25px, 35px) rotate(180deg) scale(0.95); }
            75% { transform: translate(30px, 25px) rotate(270deg) scale(1.02); }
        }

        .grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(107, 79, 79, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(107, 79, 79, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.6;
            z-index: 0;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 70px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            align-items: center;
        }

        .hero-content {
            max-width: 680px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(232, 220, 196, 0.6);
            border: 1px solid rgba(107, 79, 79, 0.2);
            padding: 10px 28px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            color: var(--secondary);
            margin-bottom: 32px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 25px rgba(107, 79, 79, 0.08);
            animation: badgePulse 4s infinite;
        }

        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 8px 25px rgba(107, 79, 79, 0.08); }
            50% { box-shadow: 0 12px 35px rgba(107, 79, 79, 0.15); }
        }

        .hero-badge i {
            color: var(--secondary);
            font-size: 16px;
        }

        .hero-title {
            font-size: 72px;
            margin-bottom: 32px;
            color: var(--secondary);
            position: relative;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 12px;
            background: linear-gradient(135deg, rgba(232, 220, 196, 0.4), rgba(232, 220, 196, 0.1));
            border-radius: 8px;
            z-index: -1;
        }

        .hero-subtitle {
            font-size: 21px;
            color: var(--dark);
            margin-bottom: 48px;
            line-height: 1.8;
            max-width: 580px;
            font-weight: 400;
        }

        .hero-ctas {
            display: flex;
            gap: 22px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .cta-primary {
            position: relative;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            color: var(--primary);
            padding: 18px 42px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 17px;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 16px 45px rgba(107, 79, 79, 0.3);
            overflow: hidden;
            z-index: 1;
            border: 2px solid transparent;
        }

        .cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(232, 220, 196, 0.35), transparent);
            transition: left 0.7s;
            z-index: -1;
        }

        .cta-primary:hover::before {
            left: 100%;
        }

        .cta-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 22px 55px rgba(107, 79, 79, 0.4);
            border-color: var(--primary);
        }

        .cta-primary i {
            transition: transform 0.3s ease;
        }

        .cta-primary:hover i {
            transform: translateX(6px);
        }

        .cta-secondary {
            background: transparent;
            color: var(--secondary);
            padding: 18px 42px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: 2px solid rgba(107, 79, 79, 0.3);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        .cta-secondary::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(232, 220, 196, 0.15);
            transition: width 0.4s ease;
            z-index: -1;
        }

        .cta-secondary:hover::after {
            width: 100%;
        }

        .cta-secondary:hover {
            border-color: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }

        .hero-trust {
            display: flex;
            align-items: center;
            gap: 32px;
            padding-top: 28px;
            border-top: 1px solid rgba(107, 79, 79, 0.12);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            color: var(--dark);
            font-weight: 500;
        }

        .trust-item i {
            color: var(--secondary);
            font-size: 18px;
        }

        .trust-divider {
            width: 1px;
            height: 36px;
            background: rgba(107, 79, 79, 0.15);
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .visual-wrapper {
            position: relative;
            width: 100%;
            max-width: 580px;
        }

        .hero-image {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 50px 100px rgba(107, 79, 79, 0.25);
            border: 3px solid rgba(232, 220, 196, 0.6);
            transition: transform 0.5s ease;
        }

        .hero-image:hover {
            transform: scale(1.02);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.7s ease;
        }

        .hero-image:hover img {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(232, 220, 196, 0.1), rgba(107, 79, 79, 0.08));
            pointer-events: none;
        }

        /* Floating Stats Cards */
        .stat-card {
            position: absolute;
            background: rgba(255, 248, 240, 0.95);
            backdrop-filter: blur(12px);
            border: 2px solid rgba(232, 220, 196, 0.7);
            border-radius: 22px;
            padding: 22px 26px;
            display: flex;
            align-items: center;
            gap: 18px;
            box-shadow: 0 25px 50px rgba(107, 79, 79, 0.18);
            z-index: 3;
            animation: floatCard 7s infinite ease-in-out;
            max-width: 240px;
        }

        .stat-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .stat-content {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 26px;
            font-weight: 800;
            color: var(--secondary);
            line-height: 1;
            font-family: 'Cormorant Garamond', serif;
        }

        .stat-label {
            font-size: 14px;
            color: var(--dark);
            font-weight: 500;
            margin-top: 4px;
        }

        .stat-1 {
            top: 8%;
            left: -25px;
            animation-delay: 0s;
        }

        .stat-2 {
            bottom: 18%;
            right: -20px;
            animation-delay: -3.5s;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-18px) rotate(1deg); }
        }

        /* Decorative Elements */
        .decorative-ring {
            position: absolute;
            border: 2px dashed rgba(107, 79, 79, 0.12);
            border-radius: 50%;
            animation: rotateRing 25s linear infinite;
        }

        .ring-1 {
            width: 620px;
            height: 620px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 35s;
        }

        .ring-2 {
            width: 780px;
            height: 780px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 45s;
            animation-direction: reverse;
            opacity: 0.6;
        }

        @keyframes rotateRing {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .float-badge {
            position: absolute;
            background: rgba(255, 248, 240, 0.92);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(107, 79, 79, 0.15);
            border-radius: 16px;
            padding: 14px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 500;
            color: var(--secondary);
            box-shadow: 0 12px 30px rgba(107, 79, 79, 0.1);
            animation: floatBadge 10s infinite ease-in-out;
        }

        .float-badge i {
            color: var(--secondary);
            font-size: 18px;
        }

        .float-1 {
            top: 18%;
            left: 3%;
            animation-delay: 0s;
        }

        .float-2 {
            top: 35%;
            right: 5%;
            animation-delay: -4s;
        }

        .float-3 {
            bottom: 25%;
            left: 8%;
            animation-delay: -8s;
        }

        @keyframes floatBadge {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-20px) translateX(12px); }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 45px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            color: var(--dark);
            font-size: 14px;
            font-weight: 500;
            z-index: 2;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.85;
        }

        .scroll-indicator:hover {
            opacity: 1;
            color: var(--secondary);
        }

        .scroll-mouse {
            width: 30px;
            height: 48px;
            border: 2px solid rgba(107, 79, 79, 0.3);
            border-radius: 24px;
            display: flex;
            justify-content: center;
            padding-top: 10px;
            position: relative;
        }

        .scroll-wheel {
            width: 4px;
            height: 10px;
            background: var(--secondary);
            border-radius: 2px;
            animation: scrollWheel 2.2s infinite;
            position: absolute;
        }

        @keyframes scrollWheel {
            0% { opacity: 1; transform: translateY(0); }
            100% { opacity: 0; transform: translateY(18px); }
        }

        /* Section Styles */
        section {
            padding: 110px 5%;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 70px;
        }

        .section-header h2 {
            font-size: 52px;
            margin-bottom: 24px;
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--dark));
            border-radius: 2px;
        }

        .section-header p {
            font-size: 19px;
            color: var(--dark);
            margin-top: 32px;
            line-height: 1.7;
            font-weight: 400;
        }

        /* About Section */
        .about {
            background: linear-gradient(180deg, var(--accent), #f9f5ed);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(107,79,79,0.03)"/></svg>');
            background-size: 40px 40px;
            opacity: 0.6;
            pointer-events: none;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 45px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .about-card {
            background: rgba(255, 248, 240, 0.7);
            border: 1px solid rgba(107, 79, 79, 0.15);
            border-radius: 24px;
            padding: 45px 40px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(232, 220, 196, 0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .about-card:hover::before {
            opacity: 1;
        }

        .about-card:hover {
            transform: translateY(-12px);
            border-color: var(--secondary);
            box-shadow: 0 25px 55px rgba(107, 79, 79, 0.15);
        }

        .about-card i {
            font-size: 44px;
            color: var(--secondary);
            margin-bottom: 24px;
            display: block;
            position: relative;
            z-index: 2;
        }

        .about-card h3 {
            font-size: 28px;
            margin-bottom: 18px;
            color: var(--secondary);
            position: relative;
            z-index: 2;
        }

        .about-card p {
            color: var(--dark);
            line-height: 1.85;
            position: relative;
            z-index: 2;
            font-weight: 400;
        }

        /* Milestones */
        .milestones {
            background: var(--accent);
            position: relative;
            overflow: hidden;
        }

        .milestones::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(232, 220, 196, 0.12) 1px, transparent 1px);
            background-size: 55px 55px;
            opacity: 0.7;
        }

        .milestones-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .milestone-item {
            text-align: center;
            padding: 42px 25px;
            background: rgba(255, 248, 240, 0.8);
            border-radius: 24px;
            border: 1px solid rgba(107, 79, 79, 0.12);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            backdrop-filter: blur(5px);
        }

        .milestone-item:hover {
            transform: translateY(-12px);
            background: rgba(232, 220, 196, 0.25);
            border-color: var(--secondary);
            box-shadow: 0 20px 45px rgba(107, 79, 79, 0.12);
        }

        .milestone-number {
            font-size: 64px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            display: block;
            font-family: 'Cormorant Garamond', serif;
            line-height: 1;
        }

        .milestone-label {
            font-size: 18px;
            color: var(--dark);
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Features Section */
        .features {
            background: linear-gradient(180deg, #f9f5ed, var(--accent));
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 34px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-box {
            background: rgba(255, 248, 240, 0.7);
            border: 1px solid rgba(107, 79, 79, 0.12);
            border-radius: 28px;
            padding: 45px 38px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
        }

        .feature-box::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(232, 220, 196, 0.25), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-box:hover::after {
            opacity: 1;
        }

        .feature-box:hover {
            transform: translateY(-14px) scale(1.02);
            border-color: var(--secondary);
            box-shadow: 0 25px 60px rgba(107, 79, 79, 0.18);
        }

        .feature-icon {
            width: 86px;
            height: 86px;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
            font-size: 34px;
            color: var(--primary);
            box-shadow: 0 15px 35px rgba(107, 79, 79, 0.2);
            position: relative;
            z-index: 2;
        }

        .feature-box h3 {
            font-size: 26px;
            margin-bottom: 18px;
            color: var(--secondary);
            position: relative;
            z-index: 2;
        }

        .feature-box p {
            color: var(--dark);
            line-height: 1.8;
            position: relative;
            z-index: 2;
            font-weight: 400;
        }

        /* Process Section */
        .process {
            background: var(--accent);
            position: relative;
        }

        .process::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 5L35 20H50L38 30L43 45L30 35L17 45L22 30L10 20H25Z" fill="rgba(107,79,79,0.03)"/></svg>');
            background-size: 80px 80px;
            opacity: 0.5;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 70px;
            left: 8%;
            right: 8%;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--dark), var(--secondary));
            z-index: 0;
            border-radius: 3px;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
            padding: 0 15px;
        }

        .step-number {
            width: 130px;
            height: 130px;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 52px;
            font-weight: 800;
            color: var(--primary);
            border: 6px solid var(--accent);
            box-shadow: 0 15px 45px rgba(107, 79, 79, 0.25);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            font-family: 'Cormorant Garamond', serif;
            position: relative;
            z-index: 2;
        }

        .step-number::after {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            border-radius: 50%;
            z-index: -1;
            opacity: 0.15;
            animation: pulseRing 3s infinite;
        }

        @keyframes pulseRing {
            0% { transform: scale(0.9); opacity: 0.2; }
            50% { transform: scale(1.1); opacity: 0.05; }
            100% { transform: scale(0.9); opacity: 0.2; }
        }

        .step:hover .step-number {
            transform: scale(1.12) rotate(8deg);
            box-shadow: 0 20px 55px rgba(107, 79, 79, 0.35);
        }

        .step h3 {
            font-size: 24px;
            margin-bottom: 14px;
            color: var(--secondary);
            font-weight: 600;
        }

        .step p {
            color: var(--dark);
            font-size: 16px;
            max-width: 260px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        /* Packages Section */
        .packages {
            background: linear-gradient(180deg, #f9f5ed, var(--accent));
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 34px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .package-card {
            background: rgba(255, 248, 240, 0.85);
            border: 2px solid rgba(107, 79, 79, 0.15);
            border-radius: 32px;
            padding: 55px 42px;
            text-align: center;
            position: relative;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            overflow: hidden;
            backdrop-filter: blur(5px);
        }

        .package-card.featured {
            border-color: var(--secondary);
            transform: scale(1.06);
            background: linear-gradient(135deg, rgba(232, 220, 196, 0.3), rgba(255, 248, 240, 0.9));
            box-shadow: 0 30px 70px rgba(107, 79, 79, 0.2);
            z-index: 2;
        }

        .package-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 24px;
            right: -42px;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            color: var(--primary);
            padding: 6px 55px;
            transform: rotate(45deg);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            box-shadow: 0 8px 20px rgba(107, 79, 79, 0.25);
        }

        .package-card:hover {
            transform: translateY(-14px);
            border-color: var(--secondary);
            box-shadow: 0 35px 75px rgba(107, 79, 79, 0.22);
        }

        .package-card.featured:hover {
            transform: scale(1.06) translateY(-14px);
        }

        .package-icon {
            font-size: 56px;
            color: var(--secondary);
            margin-bottom: 24px;
            display: block;
        }

        .package-card h3 {
            font-size: 30px;
            margin-bottom: 18px;
            color: var(--secondary);
            font-weight: 700;
        }

        .package-price {
            font-size: 52px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 24px 0 36px;
            font-family: 'Cormorant Garamond', serif;
            line-height: 1;
        }

        .package-price span {
            font-size: 20px;
            color: var(--dark);
            font-weight: 500;
            margin-left: 4px;
        }

        .package-features {
            list-style: none;
            margin-bottom: 38px;
            text-align: left;
            padding-left: 10px;
        }

        .package-features li {
            padding: 14px 0;
            color: var(--dark);
            border-bottom: 1px solid rgba(107, 79, 79, 0.08);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 400;
            font-size: 16px;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-features li i {
            color: var(--secondary);
            font-size: 18px;
            min-width: 20px;
        }

        /* Services Section */
        .services {
            background: var(--accent);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 36px;
            max-width: 1200px;
            margin: 0 auto 70px;
        }

        .service-item {
            background: rgba(255, 248, 240, 0.75);
            border: 1px solid rgba(107, 79, 79, 0.12);
            border-radius: 26px;
            padding: 44px;
            display: flex;
            gap: 34px;
            align-items: flex-start;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            backdrop-filter: blur(5px);
        }

        .service-item:hover {
            background: rgba(232, 220, 196, 0.2);
            border-color: var(--secondary);
            transform: translateX(12px);
            box-shadow: 0 20px 50px rgba(107, 79, 79, 0.15);
        }

        .service-icon {
            width: 78px;
            height: 78px;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--primary);
            flex-shrink: 0;
            box-shadow: 0 12px 30px rgba(107, 79, 79, 0.2);
        }

        .service-content h3 {
            font-size: 28px;
            margin-bottom: 14px;
            color: var(--secondary);
            font-weight: 600;
        }

        .service-content p {
            color: var(--dark);
            line-height: 1.85;
            font-weight: 400;
        }

        /* Booking Form */
        .booking-section {
            background: linear-gradient(180deg, #f9f5ed, var(--accent));
            padding: 90px 5%;
        }

        .booking-container {
            max-width: 850px;
            margin: 0 auto;
            background: rgba(255, 248, 240, 0.85);
            border: 2px solid rgba(107, 79, 79, 0.15);
            border-radius: 34px;
            padding: 70px 65px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 0 30px 70px rgba(107, 79, 79, 0.15);
        }

        .booking-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(232, 220, 196, 0.15), transparent 70%);
            z-index: 0;
        }

        .booking-form {
            position: relative;
            z-index: 1;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--secondary);
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 0.3px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 18px 24px;
            background: rgba(255, 255, 255, 0.7);
            border: 2px solid rgba(107, 79, 79, 0.15);
            border-radius: 16px;
            color: var(--secondary);
            font-family: 'Manrope', sans-serif;
            font-size: 17px;
            transition: all 0.3s ease;
            font-weight: 400;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(232, 220, 196, 0.3);
            background: rgba(255, 255, 255, 0.9);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 140px;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(180deg, var(--accent), #f9f5ed);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 34px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: rgba(255, 248, 240, 0.8);
            border: 1px solid rgba(107, 79, 79, 0.12);
            border-radius: 26px;
            padding: 44px 38px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            backdrop-filter: blur(5px);
        }

        .testimonial-card:hover {
            transform: translateY(-12px);
            border-color: var(--secondary);
            box-shadow: 0 25px 55px rgba(107, 79, 79, 0.18);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 24px;
            right: 34px;
            font-size: 96px;
            color: rgba(107, 79, 79, 0.08);
            font-family: 'Cormorant Garamond', serif;
            line-height: 1;
            font-weight: 300;
        }

        .stars {
            color: #d4af37;
            margin-bottom: 24px;
            font-size: 19px;
            letter-spacing: 3px;
        }

        .testimonial-text {
            color: var(--dark);
            line-height: 1.85;
            margin-bottom: 30px;
            font-style: italic;
            font-weight: 400;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 18px;
            position: relative;
            z-index: 1;
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary);
            font-size: 20px;
            flex-shrink: 0;
            border: 3px solid var(--accent);
        }

        .author-info h4 {
            color: var(--secondary);
            margin-bottom: 4px;
            font-size: 19px;
            font-weight: 600;
        }

        .author-info p {
            color: var(--dark);
            font-size: 15px;
            font-weight: 400;
        }

        /* FAQ Section */
        .faq {
            background: var(--accent);
        }

        .faq-container {
            max-width: 850px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 248, 240, 0.75);
            border: 1px solid rgba(107, 79, 79, 0.12);
            border-radius: 20px;
            margin-bottom: 22px;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .faq-item:hover {
            border-color: var(--secondary);
            box-shadow: 0 15px 35px rgba(107, 79, 79, 0.1);
        }

        .faq-question {
            padding: 28px 34px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: rgba(232, 220, 196, 0.1);
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(232, 220, 196, 0.2);
        }

        .faq-question h3 {
            font-size: 20px;
            color: var(--secondary);
            font-weight: 600;
            max-width: 85%;
            line-height: 1.5;
        }

        .faq-icon {
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-icon i {
            color: var(--primary);
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 34px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .faq-item.active .faq-answer {
            padding: 0 34px 30px;
            max-height: 400px;
        }

        .faq-answer p {
            color: var(--dark);
            line-height: 1.85;
            font-weight: 400;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(107, 79, 79, 0.92), rgba(58, 50, 38, 0.95)), 
                        url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1600');
            background-size: cover;
            background-position: center;
            padding: 110px 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(107, 79, 79, 0.85), rgba(58, 50, 38, 0.92));
            z-index: 1;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(232,220,196,0.08)"/></svg>');
            background-size: 50px 50px;
            opacity: 0.4;
            z-index: 1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 54px;
            margin-bottom: 24px;
            color: var(--primary);
            font-weight: 700;
        }

        .cta-section p {
            font-size: 22px;
            color: rgba(232, 220, 196, 0.95);
            margin-bottom: 48px;
            line-height: 1.7;
            font-weight: 400;
        }

        .cta-section .cta-primary {
            background: linear-gradient(135deg, var(--primary), #d4c4a8);
            color: var(--secondary);
            font-size: 19px;
            padding: 20px 52px;
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
        }

        .cta-section .cta-primary:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(180deg, #f9f5ed, var(--accent));
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 70px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info h3 {
            font-size: 36px;
            margin-bottom: 36px;
            color: var(--secondary);
            font-weight: 700;
        }

        .contact-details {
            margin-bottom: 48px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            margin-bottom: 36px;
        }

        .contact-icon {
            width: 68px;
            height: 68px;
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--primary);
            flex-shrink: 0;
            box-shadow: 0 14px 35px rgba(107, 79, 79, 0.22);
        }

        .contact-text h4 {
            color: var(--secondary);
            margin-bottom: 6px;
            font-size: 20px;
            font-weight: 600;
        }

        .contact-text p, .contact-text a {
            color: var(--dark);
            text-decoration: none;
            line-height: 1.75;
            transition: color 0.3s ease;
            font-weight: 400;
            font-size: 17px;
        }

        .contact-text a:hover {
            color: var(--secondary);
        }

        .contact-form-wrapper {
            background: rgba(255, 248, 240, 0.85);
            border: 2px solid rgba(107, 79, 79, 0.15);
            border-radius: 32px;
            padding: 58px;
            backdrop-filter: blur(10px);
            box-shadow: 0 30px 70px rgba(107, 79, 79, 0.15);
        }

        .contact-form-wrapper h3 {
            font-size: 32px;
            margin-bottom: 36px;
            color: var(--secondary);
            font-weight: 700;
        }

        /* Footer */
        footer {
            background: var(--dark);
            padding: 85px 5% 35px;
            border-top: 1px solid rgba(232, 220, 196, 0.15);
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(232,220,196,0.03)"/></svg>');
            background-size: 45px 45px;
            opacity: 0.6;
            pointer-events: none;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
            gap: 65px;
            max-width: 1300px;
            margin: 0 auto 65px;
            position: relative;
            z-index: 1;
        }

        .footer-col h4 {
            font-size: 22px;
            margin-bottom: 30px;
            color: var(--primary);
            font-weight: 600;
            position: relative;
            padding-bottom: 14px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 45px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .footer-col p {
            color: rgba(232, 220, 196, 0.85);
            line-height: 1.85;
            margin-bottom: 24px;
            font-weight: 400;
            font-size: 16px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 16px;
        }

        .footer-links a {
            color: rgba(232, 220, 196, 0.85);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 400;
            font-size: 16px;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 6px;
        }

        .footer-links a i {
            color: var(--primary);
            font-size: 13px;
            transition: transform 0.3s ease;
        }

        .footer-links a:hover i {
            transform: translateX(4px);
        }

        .newsletter-form {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 16px 22px;
            background: rgba(255, 248, 240, 0.15);
            border: 1px solid rgba(232, 220, 196, 0.25);
            border-radius: 14px;
            color: var(--primary);
            font-family: 'Manrope', sans-serif;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .newsletter-form input::placeholder {
            color: rgba(232, 220, 196, 0.6);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 248, 240, 0.25);
            box-shadow: 0 0 0 3px rgba(232, 220, 196, 0.2);
        }

        .newsletter-form button {
            padding: 16px 28px;
            background: linear-gradient(135deg, var(--primary), #d4c4a8);
            border: none;
            border-radius: 14px;
            color: var(--secondary);
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 50px;
        }

        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 28px;
        }

        .social-links a {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: rgba(232, 220, 196, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 18px;
            transition: all 0.3s ease;
            border: 1px solid rgba(232, 220, 196, 0.2);
        }

        .social-links a:hover {
            background: var(--primary);
            color: var(--secondary);
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 35px;
            border-top: 1px solid rgba(232, 220, 196, 0.15);
            color: rgba(232, 220, 196, 0.7);
            position: relative;
            z-index: 1;
            font-size: 15px;
            font-weight: 400;
        }

        .footer-bottom a {
            color: var(--primary);
            text-decoration: none;
            margin: 0 16px;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-title { font-size: 64px; }
            .hero-container { grid-template-columns: 1fr; text-align: center; gap: 80px; }
            .hero-content { margin: 0 auto; }
            .hero-subtitle { margin: 0 auto 48px; }
            .hero-ctas { justify-content: center; }
            .hero-trust { justify-content: center; }
            .hero-visual { order: -1; }
            .about-grid, .features-grid, .packages-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
            .milestones-grid { grid-template-columns: repeat(2, 1fr); }
            .process-steps { flex-direction: column; gap: 50px; }
            .process-steps::before { display: none; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .packages-grid .package-card.featured { transform: scale(1); }
        }

        @media (max-width: 992px) {
            .nav-menu { gap: 28px; }
            .hero-title { font-size: 56px; }
            .section-header h2 { font-size: 46px; }
            .about-card, .feature-box, .package-card, .service-item { padding: 38px 32px; }
            .booking-container { padding: 55px 45px; }
            .contact-form-wrapper { padding: 48px; }
        }

        @media (max-width: 768px) {
            .navbar { padding: 18px 5%; }
            .navbar.scrolled { padding: 14px 5%; }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 420px;
                height: 100vh;
                background: rgba(248, 245, 240, 0.98);
                flex-direction: column;
                padding: 110px 45px 40px;
                transition: right 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
                gap: 32px;
                box-shadow: -10px 0 40px rgba(107, 79, 79, 0.15);
                z-index: 999;
            }

            .nav-menu.active { right: 0; }
            .mobile-toggle { display: flex; }
            
            .hero { padding: 110px 5% 80px; min-height: auto; }
            .hero-title { font-size: 46px; }
            .hero-subtitle { font-size: 19px; }
            .section-header h2 { font-size: 40px; }
            
            .form-row { grid-template-columns: 1fr; }
            .packages-grid .package-card.featured { transform: scale(1); }
            .footer-grid { grid-template-columns: 1fr; gap: 50px; }
            
            .booking-container, .contact-form-wrapper { padding: 45px 35px; }
            .hero-ctas { flex-direction: column; align-items: center; }
            .cta-primary, .cta-secondary { width: 100%; max-width: 380px; justify-content: center; }
            
            .floating-elements { display: none; }
            .hero-bg-elements .floating-shape { opacity: 0.05; }
        }

        @media (max-width: 480px) {
            .hero-title { font-size: 40px; }
            .hero-subtitle { font-size: 18px; }
            .section-header h2 { font-size: 36px; }
            .milestone-number { font-size: 52px; }
            .package-price { font-size: 44px; }
            .stat-card { padding: 18px 22px; max-width: 220px; }
            .stat-number { font-size: 24px; }
            .contact-item { gap: 18px; }
            .contact-icon { width: 58px; height: 58px; font-size: 22px; }
        }

        /* Animation Utilities */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-up.active {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .stagger-item.active {
            opacity: 1;
            transform: translateY(0);
        }
