
        :root {
            --primary-dark: #7F1734;
            --primary-mid: #BE185D;
            --primary-light: #F9A8D4;
            --bg-light: #FFF1F2;
            --text-dark: #1a1a2e;
            --text-gray: #4a4a5a;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #7F1734 0%, #BE185D 50%, #F9A8D4 100%);
            --gradient-neon: linear-gradient(135deg, #7F1734 0%, #BE185D 50%, #ff00cc 100%);
            --shadow-glow: 0 0 30px rgba(190, 24, 93, 0.3);
            --shadow-card: 0 10px 40px rgba(127, 23, 52, 0.15);
        }



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
            background-color: var(--bg-light);
        }

        .bg-color{
            background-color:#efeff1 !important;
            padding-top:60px !important;
            padding-bottom:60px !important;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-light);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 10px;
        }

        /* ========== NAVBAR ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s ease;
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            padding: 12px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(20px);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            font-size: 28px;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo i {
            font-size: 36px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: floatLogo 3s ease-in-out infinite;
        }

        @keyframes floatLogo {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--primary-mid);
        }

        .nav-cta {
            background: var(--gradient-primary) !important;
            color: var(--white) !important;
            padding: 12px 28px !important;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: var(--shadow-glow);
            transition: all 0.3s ease !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(190, 24, 93, 0.4);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 26px;
            color: var(--primary-dark);
        }

        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(248, 248, 248, 0.95) 0%, rgba(205, 204, 204, 0.9) 50%, rgba(180, 180, 180, 0.85) 100%),
                        url('https://images.pexels.com/photos/6694866/pexels-photo-6694866.jpeg') center/cover no-repeat;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: floatShape 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: white;
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--primary-light);
            bottom: 20%;
            left: 5%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            background: white;
            top: 60%;
            right: 25%;
            animation-delay: 4s;
        }

        @keyframes floatShape {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 120px 30px 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 64px;
            font-weight: 800;
            color: #7F1734;
            line-height: 1.2;
            margin-bottom: 24px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .hero-content h1 span {
            display: block;
            background: linear-gradient(to right, #fff, #ffd6e7);
            background-clip: text;
            color: #7F1734;
        }

        .hero-content p {
            font-size: 18px;
            color: rgba(31, 30, 30, 0.95);
            margin-bottom: 35px;
            max-width: 550px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--white);
            color: var(--primary-dark);
            padding: 16px 38px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            background: var(--bg-light);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 16px 38px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            transition: all 0.4s ease;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
            transform: translateY(-5px);
        }

        .hero-image {
            position: relative;
        }

        .hero-img-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            animation: heroFloat 4s ease-in-out infinite;
        }

        @keyframes heroFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .hero-img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }

        .floating-card {
            position: absolute;
            background: var(--white);
            padding: 20px 25px;
            border-radius: 20px;
            box-shadow: var(--shadow-card);
            animation: cardFloat 3s ease-in-out infinite;
        }

        .floating-card.card-1 {
            top: 20%;
            left: -60px;
            animation-delay: 0s;
        }

        .floating-card.card-2 {
            bottom: 15%;
            right: -40px;
            animation-delay: 1.5s;
        }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .floating-card i {
            font-size: 32px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .floating-card h4 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .floating-card p {
            font-size: 13px;
            color: var(--text-gray);
            margin: 0;
        }

        /* ========== ABOUT SECTION ========== */
        .about {
            padding: 120px 0;
            background: var(--white);
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 70px;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(127, 23, 52, 0.1), rgba(249, 168, 212, 0.2));
            color: var(--primary-dark);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 18px;
            letter-spacing: 1px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .about-card {
            background: var(--bg-light);
            padding: 45px 35px;
            border-radius: 25px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .about-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-card);
            border-color: var(--primary-light);
        }

        .about-card:hover::before {
            transform: scaleX(1);
        }

        .about-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient-primary);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 38px;
            color: var(--white);
            transition: all 0.4s ease;
        }

        .about-card:hover .about-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: var(--shadow-glow);
        }

        .about-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .about-card p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* ========== MILESTONES / METRICS ========== */
        .milestones {
            padding: 100px 0;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .milestones::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        .metrics-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .metric-item {
            text-align: center;
            color: var(--white);
        }

        .metric-number {
            font-size: 58px;
            font-weight: 900;
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
            display: block;
        }

        .metric-label {
            font-size: 18px;
            font-weight: 500;
            opacity: 0.9;
            letter-spacing: 0.5px;
        }

        .metric-icon {
            font-size: 42px;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        /* ========== WHY CHOOSE US / FEATURES ========== */
        .features {
            padding: 120px 0;
            background: var(--bg-light);
        }

        .features-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .feature-card {
            background: var(--white);
            padding: 45px 35px;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            z-index: 0;
            transition: left 0.5s ease;
        }

        .feature-card:hover::before {
            left: 0;
        }

        .feature-card > * {
            position: relative;
            z-index: 1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-card);
            border-color: var(--primary-light);
        }

        .feature-card:hover .feature-icon,
        .feature-card:hover h3,
        .feature-card:hover p {
            color: var(--white);
        }

        .feature-icon {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, rgba(127, 23, 52, 0.1), rgba(249, 168, 212, 0.2));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: var(--primary-mid);
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .feature-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            transition: all 0.4s ease;
        }

        .feature-card p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
            transition: all 0.4s ease;
        }

        /* ========== WORK PROCESS ========== */
        .process {
            padding: 120px 0;
            background: var(--white);
        }

        .process-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .process-timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 60px;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 55px;
            left: 10%;
            right: 10%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-dark), var(--primary-mid), var(--primary-light));
            border-radius: 10px;
        }

        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 15px;
        }

        .step-number {
            width: 110px;
            height: 110px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 42px;
            font-weight: 900;
            color: var(--white);
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(190, 24, 93, 0.3);
            transition: all 0.4s ease;
        }

        .process-step:hover .step-number {
            transform: scale(1.15) rotate(360deg);
        }

        .process-step h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 12px;
        }

        .process-step p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* ========== PACKAGES SECTION ========== */
        .packages {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
        }

        .packages-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 50px;
        }

        .package-card {
            background: var(--white);
            border-radius: 30px;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .package-card.featured {
            background: var(--gradient-primary);
            transform: scale(1.05);
            border: none;
        }

        .package-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 25px;
            right: -35px;
            background: var(--white);
            color: var(--primary-dark);
            padding: 8px 45px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            transform: rotate(45deg);
        }

        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-card);
            border-color: var(--primary-light);
        }

        .package-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }

        .package-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(127, 23, 52, 0.1), rgba(249, 168, 212, 0.2));
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            color: var(--primary-mid);
        }

        .package-card.featured .package-icon {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        .package-name {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .package-card.featured .package-name {
            color: var(--white);
        }

        .package-price {
            font-size: 48px;
            font-weight: 900;
            color: var(--primary-mid);
            margin-bottom: 25px;
            font-family: 'Playfair Display', serif;
        }

        .package-card.featured .package-price {
            color: var(--white);
        }

        .package-price span {
            font-size: 16px;
            font-weight: 500;
            opacity: 0.8;
        }

        .package-features {
            list-style: none;
            margin-bottom: 35px;
            text-align: left;
        }

        .package-features li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 15px;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .package-card.featured .package-features li {
            color: rgba(255, 255, 255, 0.9);
            border-bottom-color: rgba(255, 255, 255, 0.2);
        }

        .package-features li i {
            color: var(--primary-mid);
            font-size: 14px;
        }

        .package-card.featured .package-features li i {
            color: var(--primary-light);
        }

        .package-btn {
            display: inline-block;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.4s ease;
            border: 2px solid var(--primary-mid);
            color: var(--primary-mid);
            background: transparent;
        }

        .package-btn:hover {
            background: var(--primary-mid);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }

        .package-card.featured .package-btn {
            background: var(--white);
            color: var(--primary-dark);
            border-color: var(--white);
        }

        .package-card.featured .package-btn:hover {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
        }

        /* ========== SERVICES SECTION ========== */
        .services {
            padding: 120px 0;
            background: var(--white);
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
            margin-top: 50px;
        }

        .service-card {
            display: flex;
            gap: 30px;
            background: var(--bg-light);
            padding: 40px;
            border-radius: 25px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: var(--gradient-primary);
            transition: width 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-card);
            border-color: var(--primary-light);
        }

        .service-card:hover::after {
            width: 100%;
        }

        .service-icon {
            width: 85px;
            height: 85px;
            min-width: 85px;
            background: var(--gradient-primary);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: var(--white);
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: rotateY(180deg);
        }

        .service-content h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 12px;
        }

        .service-content p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .service-link {
            color: var(--primary-mid);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .service-link:hover {
            gap: 15px;
            color: var(--primary-dark);
        }

        /* ========== BOOKING FORM ========== */
        .booking {
            padding: 120px 0;
            background: linear-gradient(135deg, rgba(127, 23, 52, 0.03), rgba(249, 168, 212, 0.08));
        }

        .booking-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .booking-form-wrapper {
            background: var(--white);
            border-radius: 35px;
            padding: 60px;
            box-shadow: var(--shadow-card);
            margin-top: 50px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 25px;
        }

        .form-group {
            position: relative;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e5e5e5;
            border-radius: 15px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            background: var(--bg-light);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-mid);
            box-shadow: 0 0 0 4px rgba(190, 24, 93, 0.1);
            background: var(--white);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 130px;
        }

        .submit-btn {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 18px 50px;
            border: none;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            box-shadow: var(--shadow-glow);
        }

        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(190, 24, 93, 0.4);
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials {
            padding: 120px 0;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
        }

        .testimonials .section-title,
        .testimonials .section-subtitle {
            color: var(--white);
        }

        .testimonials .section-badge {
            background: rgba(255, 255, 255, 0.15);
            color: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 40px 35px;
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .testimonial-stars {
            color: #ffd700;
            font-size: 18px;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-light);
        }

        .author-info h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 3px;
        }

        .author-info p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        /* ========== FAQ SECTION ========== */
        .faq {
            padding: 120px 0;
            background: var(--bg-light);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .faq-list {
            margin-top: 50px;
        }

        .faq-item {
            background: var(--white);
            border-radius: 20px;
            margin-bottom: 18px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .faq-item:hover {
            border-color: var(--primary-light);
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
        }

        .faq-toggle {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-content {
            padding: 0 30px 25px;
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(249, 168, 212, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 30px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .cta-btn {
            display: inline-block;
            background: var(--white);
            color: var(--primary-dark);
            padding: 20px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .cta-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
        }

        /* ========== CONTACT SECTION ========== */
        .contact {
            padding: 120px 0;
            background: var(--white);
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            margin-top: 50px;
        }

        .contact-info {
            background: var(--gradient-primary);
            padding: 50px 45px;
            border-radius: 30px;
            color: var(--white);
        }

        .contact-info h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .contact-info > p {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .info-icon {
            width: 55px;
            height: 55px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .info-text h4 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .info-text p, .info-text a {
            font-size: 15px;
            opacity: 0.9;
            color: var(--white);
            text-decoration: none;
            line-height: 1.6;
        }

        .info-text a:hover {
            text-decoration: underline;
        }

        .contact-form-wrapper {
            background: var(--bg-light);
            padding: 50px 45px;
            border-radius: 30px;
        }

        .contact-form-wrapper h3 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 30px;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
            padding: 80px 0 30px;
            color: var(--white);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 10px;
        }

        .footer-about p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--gradient-primary);
            transform: translateY(-5px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--primary-light);
            padding-left: 8px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary-mid);
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-form button {
            padding: 14px 25px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 12px;
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--primary-light);
        }

        /* ========== BACK TO TOP ========== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 22px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            box-shadow: var(--shadow-glow);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 52px;
            }
            
            .about-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image {
                max-width: 600px;
                margin: 0 auto;
            }
            
            .floating-card.card-1 {
                left: 20px;
            }
            
            .floating-card.card-2 {
                right: 20px;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 100px 40px;
                gap: 25px;
                transition: right 0.4s ease;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .hamburger {
                display: block;
                z-index: 1001;
            }
            
            .metrics-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .process-timeline {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-timeline::before {
                display: none;
            }
            
            .packages-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .package-card.featured {
                transform: none;
            }
            
            .package-card.featured:hover {
                transform: translateY(-15px);
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 40px;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .metrics-container {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            
            .metric-number {
                font-size: 44px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .form-group.full-width {
                grid-column: span 1;
            }
            
            .booking-form-wrapper {
                padding: 35px 25px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .cta-section h2 {
                font-size: 34px;
            }
            
            .floating-card {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 32px;
            }
            
            .logo {
                font-size: 22px;
            }
            
            .logo i {
                font-size: 28px;
            }
            
            .btn-primary, .btn-secondary {
                padding: 14px 28px;
                font-size: 14px;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .metrics-container {
                grid-template-columns: 1fr;
            }
        }

        /* ========== LOADING ANIMATION ========== */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader-wrapper.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            width: 70px;
            height: 70px;
            border: 5px solid var(--bg-light);
            border-top-color: var(--primary-mid);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }
