
        :root {
            --primary: #FFDAB9;
            --secondary: #001F3F;
            --accent: #F08080;
            --accent-deep: #E05555;
            --bg-dark: #001F3F;
            --bg-dark-2: #002B55;
            --bg-light: #FFF8F2;
            --bg-cream: #FFF1E6;
            --text-light: #FFFFFF;
            --text-dark: #001F3F;
            --text-muted: #8BA3C7;
            --glass-bg: rgba(255, 218, 185, 0.08);
            --glass-border: rgba(255, 218, 185, 0.15);
            --gradient-main: linear-gradient(135deg, #FFDAB9, #F08080);
            --gradient-dark: linear-gradient(135deg, #001F3F, #003366);
            --gradient-glow: linear-gradient(135deg, #F08080, #FFDAB9, #F08080);
            --shadow-neon: 0 0 20px rgba(240, 128, 128, 0.3), 0 0 60px rgba(240, 128, 128, 0.1);
            --shadow-card: 0 20px 60px rgba(0, 31, 63, 0.15);
            --shadow-card-dark: 0 20px 60px rgba(0, 0, 0, 0.3);
            --radius-sm: 0.5rem;
            --radius-md: 1rem;
            --radius-lg: 1.5rem;
            --radius-xl: 2rem;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Poppins', sans-serif;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            background: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.7;
        }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-dark); }
        ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--primary); }

        /* ===== UTILITY CLASSES ===== */
        .container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
        .section-padding { padding: 6rem 0; }
        .text-center { text-align: center; }
        .gradient-text {
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1.2rem;
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--primary);
            backdrop-filter: blur(12px);
            margin-bottom: 1.5rem;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1rem;
        }
        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 3rem;
            font-weight: 300;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .btn-primary {
            background: var(--gradient-main);
            color: var(--secondary);
        }
        .btn-primary:hover {
            box-shadow: var(--shadow-neon);
            transform: translateY(-3px);
        }
        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 1.5px solid var(--primary);
        }
        .btn-secondary:hover {
            background: var(--primary);
            color: var(--secondary);
            box-shadow: var(--shadow-neon);
            transform: translateY(-3px);
        }
        .btn-accent {
            background: var(--accent);
            color: #fff;
        }
        .btn-accent:hover {
            background: var(--accent-deep);
            box-shadow: 0 0 25px rgba(240,128,128,0.5);
            transform: translateY(-3px);
        }

        /* ===== FLOATING ELEMENTS ===== */
        .floating-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            pointer-events: none;
            animation: floatOrb 20s ease-in-out infinite;
        }
        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -40px) scale(1.1); }
            50% { transform: translate(-20px, 20px) scale(0.9); }
            75% { transform: translate(40px, 30px) scale(1.05); }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        @keyframes floatSlow {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(240,128,128,0.2); }
            50% { box-shadow: 0 0 40px rgba(240,128,128,0.4); }
        }
        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            background: rgba(0, 31, 63, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            padding: 0.6rem 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none;
        }
        .nav-logo-icon {
            width: 44px;
            height: 44px;
            background: var(--gradient-main);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.3rem;
            box-shadow: 0 0 15px rgba(240,128,128,0.3);
        }
        .nav-logo-text {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
        }
        .nav-logo-text span { color: var(--accent); }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            list-style: none;
        }
        .nav-menu a {
            text-decoration: none;
            color: rgba(255,255,255,0.8);
            font-size: 0.85rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .nav-menu a:hover, .nav-menu a.active {
            color: var(--primary);
            background: rgba(255,218,185,0.1);
        }
        .nav-cta {
            margin-left: 0.5rem;
        }
        .nav-cta .btn { padding: 0.6rem 1.5rem; font-size: 0.8rem; }
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        .nav-toggle span {
            width: 24px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .nav-toggle.active span:nth-child(2) { opacity: 0; }
        .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 5rem;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://images.pexels.com/photos/1388944/floor-flooring-hand-man-1388944.jpeg') center/cover no-repeat;
        }
        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,31,63,0.92), rgba(0,31,63,0.75), rgba(0,51,102,0.85));
        }
        .hero .container { position: relative; z-index: 2; }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .hero-content { animation: fadeInUp 1s ease forwards; }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.2rem;
            background: rgba(240,128,128,0.15);
            border: 1px solid rgba(240,128,128,0.3);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 1.5rem;
            animation: pulse-glow 3s ease infinite;
        }
        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 1.5rem;
        }
        .hero-title .highlight {
            position: relative;
            display: inline-block;
        }
        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            right: 0;
            height: 12px;
            background: rgba(240,128,128,0.3);
            border-radius: 4px;
            z-index: -1;
        }
        .hero-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            max-width: 500px;
            font-weight: 300;
            line-height: 1.8;
        }
        .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
        .hero-stats {
            display: flex;
            gap: 2.5rem;
        }
        .hero-stat h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }
        .hero-stat p {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 400;
        }
        .hero-visual {
            position: relative;
            animation: fadeInUp 1s 0.3s ease forwards;
            opacity: 0;
        }
        .hero-image-wrapper {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-card-dark), 0 0 40px rgba(240,128,128,0.15);
        }
        .hero-image-wrapper img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }
        .hero-image-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255,218,185,0.2);
            border-radius: var(--radius-xl);
            pointer-events: none;
        }
        .hero-floating-card {
            position: absolute;
            background: rgba(0,31,63,0.9);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-md);
            padding: 1rem 1.2rem;
            animation: float 4s ease-in-out infinite;
        }
        .hero-floating-card.card-1 {
            top: 10%;
            right: -30px;
            animation-delay: 0s;
        }
        .hero-floating-card.card-2 {
            bottom: 15%;
            left: -30px;
            animation-delay: 1s;
        }
        .hero-floating-card .card-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient-main);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }
        .hero-floating-card h4 {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
        }
        .hero-floating-card p {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            background: var(--bg-light);
            color: var(--text-dark);
            position: relative;
            overflow: hidden;
        }
        .about .section-badge { color: var(--accent); border-color: rgba(240,128,128,0.3); }
        .about .section-subtitle { color: #666; }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .about-image-area { position: relative; }
        .about-image-area img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-card);
        }
        .about-exp-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background: var(--gradient-main);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            box-shadow: var(--shadow-neon);
            animation: floatSlow 5s ease-in-out infinite;
        }
        .about-exp-badge h3 { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; line-height: 1; }
        .about-exp-badge p { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
        .about-content h2 { color: var(--secondary); }
        .about-content .section-subtitle { color: #555; text-align: left; margin-left: 0; }
        .about-content p.desc {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        .vmvp-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
        }
        .vmvp-card {
            padding: 1.5rem;
            border-radius: var(--radius-md);
            background: #fff;
            border: 1px solid #f0e6dc;
            transition: all 0.3s ease;
        }
        .vmvp-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,31,63,0.1);
            border-color: var(--accent);
        }
        .vmvp-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            background: rgba(240,128,128,0.1);
            color: var(--accent);
        }
        .vmvp-card h4 { font-size: 1rem; font-weight: 600; color: var(--secondary); margin-bottom: 0.3rem; }
        .vmvp-card p { font-size: 0.8rem; color: #777; line-height: 1.6; }

        /* ===== MILESTONES ===== */
        .milestones {
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }
        .milestones .floating-orb.orb-1 {
            width: 300px; height: 300px;
            background: var(--accent);
            top: -100px; right: -100px;
        }
        .milestones .floating-orb.orb-2 {
            width: 250px; height: 250px;
            background: var(--primary);
            bottom: -80px; left: -80px;
        }
        .milestones-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        .milestone-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(12px);
            transition: all 0.3s ease;
        }
        .milestone-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-neon);
            border-color: var(--accent);
        }
        .milestone-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.2rem;
            background: var(--gradient-main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--secondary);
        }
        .milestone-number {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 800;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.3rem;
        }
        .milestone-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        /* ===== WHY CHOOSE US ===== */
        .why-us {
            background: var(--bg-cream);
            color: var(--text-dark);
            position: relative;
            overflow: hidden;
        }
        .why-us .section-badge { color: var(--accent); border-color: rgba(240,128,128,0.3); }
        .why-us .section-subtitle { color: #666; }
        .why-us .section-title { color: var(--secondary); }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .feature-card {
            padding: 2.5rem 2rem;
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid #f0e6dc;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-main);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .feature-card:hover::before { opacity: 1; }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,31,63,0.12);
        }
        .feature-number {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 800;
            color: rgba(240,128,128,0.1);
            line-height: 1;
            margin-bottom: 1rem;
        }
        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(240,128,128,0.1);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 1.2rem;
            transition: all 0.3s ease;
        }
        .feature-card:hover .feature-icon {
            background: var(--gradient-main);
            color: var(--secondary);
        }
        .feature-card h3 { font-size: 1.15rem; font-weight: 600; color: var(--secondary); margin-bottom: 0.6rem; }
        .feature-card p { font-size: 0.85rem; color: #777; line-height: 1.7; }

        /* ===== WORK PROCESS ===== */
        .process {
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }
        .process .floating-orb.orb-1 {
            width: 350px; height: 350px;
            background: var(--primary);
            top: -150px; left: 50%;
        }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }
        .process-steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), var(--primary), var(--accent), transparent);
            opacity: 0.3;
        }
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .step-number {
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
            background: var(--glass-bg);
            border: 2px solid var(--glass-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            transition: all 0.4s ease;
        }
        .process-step:hover .step-number {
            background: var(--gradient-main);
            color: var(--secondary);
            border-color: transparent;
            box-shadow: var(--shadow-neon);
            transform: scale(1.1);
        }
        .process-step h3 { font-size: 1.1rem; font-weight: 600; color: var(--primary); margin-bottom: 0.5rem; }
        .process-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

        /* ===== PACKAGES ===== */
        .packages {
            background: var(--bg-light);
            color: var(--text-dark);
            position: relative;
            overflow: hidden;
        }
        .packages .section-badge { color: var(--accent); border-color: rgba(240,128,128,0.3); }
        .packages .section-title { color: var(--secondary); }
        .packages .section-subtitle { color: #666; }
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            align-items: stretch;
        }
        .package-card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 2.5rem 2rem;
            border: 1px solid #f0e6dc;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .package-card.featured {
            background: var(--secondary);
            color: #fff;
            border-color: transparent;
            transform: scale(1.05);
            box-shadow: 0 25px 60px rgba(0,31,63,0.3);
        }
        .package-card.featured .package-name,
        .package-card.featured .package-price { color: #fff; }
        .package-card.featured .package-features li { color: var(--primary); }
        .package-card.featured .package-features li i { color: var(--accent); }
        .package-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(0,31,63,0.15);
        }
        .package-card.featured:hover { transform: scale(1.05) translateY(-8px); }
        .package-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--gradient-main);
            color: var(--secondary);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.3rem 2.5rem;
            transform: rotate(45deg);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .package-icon {
            width: 50px;
            height: 50px;
            background: rgba(240,128,128,0.1);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--accent);
            margin-bottom: 1.2rem;
        }
        .package-card.featured .package-icon {
            background: rgba(255,218,185,0.15);
            color: var(--primary);
        }
        .package-name { font-size: 1.3rem; font-weight: 700; color: var(--secondary); margin-bottom: 0.5rem; }
        .package-price {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 0.3rem;
        }
        .package-price span { font-size: 1rem; font-weight: 400; color: #999; }
        .package-desc { font-size: 0.82rem; color: #999; margin-bottom: 1.5rem; }
        .package-card.featured .package-desc { color: var(--text-muted); }
        .package-features { list-style: none; margin-bottom: 2rem; }
        .package-features li {
            padding: 0.5rem 0;
            font-size: 0.85rem;
            color: #555;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            border-bottom: 1px solid #f5f0ec;
        }
        .package-card.featured .package-features li { border-color: rgba(255,218,185,0.1); }
        .package-features li i { color: var(--accent); font-size: 0.75rem; }
        .package-card .btn { width: 100%; justify-content: center; }

        /* ===== SERVICES ===== */
        .services {
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }
        .services .floating-orb.orb-1 {
            width: 400px; height: 400px;
            background: var(--accent);
            top: -200px; right: -200px;
        }
        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .service-card {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 2rem;
            padding: 2rem;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(12px);
            transition: all 0.4s ease;
            overflow: hidden;
        }
        .service-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }
        .service-card-img {
            border-radius: var(--radius-md);
            overflow: hidden;
            height: 200px;
        }
        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .service-card:hover .service-card-img img { transform: scale(1.1); }
        .service-card-content { display: flex; flex-direction: column; justify-content: center; }
        .service-card-content .service-num {
            font-family: var(--font-heading);
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
            letter-spacing: 0.1em;
        }
        .service-card-content h3 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.8rem;
        }
        .service-card-content p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* ===== BOOKING FORM ===== */
        .booking {
            background: var(--bg-cream);
            color: var(--text-dark);
            position: relative;
            overflow: hidden;
        }
        .booking .section-badge { color: var(--accent); border-color: rgba(240,128,128,0.3); }
        .booking .section-title { color: var(--secondary); }
        .booking .section-subtitle { color: #666; }
        .booking-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .booking-info h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .booking-info p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        .booking-benefits { list-style: none; }
        .booking-benefits li {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            color: #555;
        }
        .booking-benefits li i {
            width: 30px;
            height: 30px;
            background: rgba(240,128,128,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 0.75rem;
            flex-shrink: 0;
        }
        .booking-form-card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            box-shadow: var(--shadow-card);
            border: 1px solid #f0e6dc;
        }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 0.4rem;
        }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1.5px solid #e8ddd5;
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 0.85rem;
            color: var(--secondary);
            background: #fffdf9;
            transition: all 0.3s ease;
            outline: none;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(240,128,128,0.1);
        }
        .form-group textarea { resize: vertical; min-height: 100px; }
        .booking-form-card .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }
        .testimonials .floating-orb.orb-1 {
            width: 300px; height: 300px;
            background: var(--primary);
            bottom: -100px; left: -100px;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .testimonial-card {
            padding: 2rem;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(12px);
            transition: all 0.4s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        .testimonial-stars {
            display: flex;
            gap: 0.2rem;
            margin-bottom: 1rem;
        }
        .testimonial-stars i { color: #FFD700; font-size: 0.85rem; }
        .testimonial-text {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.85);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent);
        }
        .testimonial-author h4 { font-size: 0.9rem; font-weight: 600; color: var(--primary); }
        .testimonial-author p { font-size: 0.75rem; color: var(--text-muted); }

        /* ===== FAQ ===== */
        .faq {
            background: var(--bg-light);
            color: var(--text-dark);
            position: relative;
        }
        .faq .section-badge { color: var(--accent); border-color: rgba(240,128,128,0.3); }
        .faq .section-title { color: var(--secondary); }
        .faq .section-subtitle { color: #666; }
        .faq-list { max-width: 800px; margin: 0 auto; }
        .faq-item {
            background: #fff;
            border: 1px solid #f0e6dc;
            border-radius: var(--radius-md);
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-item:hover { border-color: var(--accent); }
        .faq-item.active { border-color: var(--accent); box-shadow: 0 5px 20px rgba(240,128,128,0.1); }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 1.5rem;
            cursor: pointer;
            gap: 1rem;
        }
        .faq-question h3 { font-size: 0.95rem; font-weight: 600; color: var(--secondary); }
        .faq-question .faq-toggle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(240,128,128,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 0.8rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        .faq-item.active .faq-toggle {
            background: var(--accent);
            color: #fff;
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .faq-answer-inner {
            padding: 0 1.5rem 1.2rem;
            font-size: 0.85rem;
            color: #666;
            line-height: 1.8;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: var(--secondary);
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('https://images.pexels.com/photos/259588/pexels-photo-259588.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
            opacity: 0.1;
        }
        .cta-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        .cta-inner h2 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
        }
        .cta-inner p {
            font-size: 1.05rem;
            color: var(--primary);
            margin-bottom: 2.5rem;
            font-weight: 300;
        }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
        .cta-phone {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            margin-top: 2rem;
            transition: color 0.3s ease;
        }
        .cta-phone:hover { color: var(--accent); }

        /* ===== CONTACT SECTION ===== */
        .contact {
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }
        .contact .floating-orb.orb-1 {
            width: 350px; height: 350px;
            background: var(--accent);
            top: -150px; right: -150px;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
        .contact-info h3 {
            font-family: var(--bg-dark);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .contact-info > p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        .contact-details { list-style: none; margin-bottom: 2rem; }
        .contact-details li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,218,185,0.08);
        }
        .contact-details li .icon-box {
            width: 44px;
            height: 44px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1rem;
            flex-shrink: 0;
        }
        .contact-details li h4 { font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 0.2rem; }
        .contact-details li p { font-size: 0.82rem; color: var(--text-muted); }
        .contact-details li a { color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
        .contact-details li a:hover { color: var(--accent); }
        .contact-socials { display: flex; gap: 0.8rem; }
        .contact-socials a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .contact-socials a:hover {
            background: var(--gradient-main);
            color: var(--secondary);
            border-color: transparent;
        }
        .contact-form-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            backdrop-filter: blur(12px);
        }
        .contact-form-card h3 {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .contact-form-card .form-group input,
        .contact-form-card .form-group textarea {
            background: rgba(255,255,255,0.05);
            border-color: var(--glass-border);
            color: #fff;
        }
        .contact-form-card .form-group input:focus,
        .contact-form-card .form-group textarea:focus {
            border-color: var(--accent);
        }
        .contact-form-card .form-group label { color: var(--primary); }
        .contact-form-card .btn { width: 100%; justify-content: center; }

        /* ===== FOOTER ===== */
        .footer {
            background: #000D1A;
            padding: 4rem 0 0;
            border-top: 1px solid rgba(255,218,185,0.08);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,218,185,0.08);
        }
        .footer-about .nav-logo { margin-bottom: 1.2rem; }
        .footer-about p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        .footer-heading {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.6rem; }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .footer-links a:hover { color: var(--accent); transform: translateX(3px); }
        .footer-links a i { font-size: 0.6rem; color: var(--accent); }
        .footer-subscribe p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        .subscribe-form {
            display: flex;
            gap: 0.5rem;
        }
        .subscribe-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-sm);
            background: rgba(255,255,255,0.05);
            color: #fff;
            font-family: var(--font-body);
            font-size: 0.85rem;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .subscribe-form input:focus { border-color: var(--accent); }
        .subscribe-form input::placeholder { color: var(--text-muted); }
        .footer-bottom {
            padding: 1.5rem 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
        .footer-bottom-links { display: flex; gap: 1.5rem; }
        .footer-bottom-links a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
        .footer-bottom-links a:hover { color: var(--accent); }

        /* ===== TOAST ===== */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            padding: 1rem 1.5rem;
            background: var(--secondary);
            color: var(--primary);
            border: 1px solid var(--accent);
            border-radius: var(--radius-md);
            font-size: 0.85rem;
            font-weight: 500;
            z-index: 9999;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .toast.show { opacity: 1; transform: translateY(0); }

        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 44px;
            height: 44px;
            background: var(--gradient-main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(240,128,128,0.3);
            z-index: 999;
            border: none;
        }
        .back-to-top.visible { opacity: 1; visibility: visible; }
        .back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-neon); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
            .hero-visual { max-width: 600px; }
            .about-grid { grid-template-columns: 1fr; gap: 2rem; }
            .milestones-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .process-steps { grid-template-columns: repeat(2, 1fr); }
            .process-steps::before { display: none; }
            .packages-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
            .package-card.featured { transform: none; }
            .package-card.featured:hover { transform: translateY(-8px); }
            .services-grid { grid-template-columns: 1fr; }
            .booking-wrapper { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: rgba(0,31,63,0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: flex-start;
                padding: 5rem 2rem 2rem;
                gap: 0.5rem;
                transition: right 0.4s ease;
                border-left: 1px solid var(--glass-border);
            }
            .nav-menu.open { right: 0; }
            .nav-menu a { padding: 0.8rem 1rem; width: 100%; border-radius: var(--radius-sm); }
            .nav-cta { margin-left: 0; margin-top: 1rem; }
            .nav-cta .btn { width: 100%; justify-content: center; }
            .nav-toggle { display: flex; }

            .hero { min-height: auto; padding: 7rem 0 3rem; }
            .hero-image-wrapper { height: 300px; }
            .hero-floating-card { display: none; }
            .hero-stats { gap: 1.5rem; }

            .about-image-area img { height: 350px; }
            .about-exp-badge { width: 90px; height: 90px; bottom: -10px; right: -10px; }
            .about-exp-badge h3 { font-size: 1.5rem; }

            .milestones-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
            .features-grid { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .service-card { grid-template-columns: 1fr; }
            .service-card-img { height: 200px; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }

        @media (max-width: 480px) {
            .section-padding { padding: 4rem 0; }
            .hero-title { font-size: 2rem; }
            .hero-buttons { flex-direction: column; }
            .hero-buttons .btn { width: 100%; justify-content: center; }
            .milestone-number { font-size: 2rem; }
            .subscribe-form { flex-direction: column; }
        }
