        :root {
            --primary: #000000;
            --secondary: #D4AF37;
            --accent: #F5F5F5;
            --gradient-neon: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #FFA500 100%);
            --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
            --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--primary);
            overflow-x: hidden;
            background: #ffffff;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }
        
        /* Floating Elements Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        @keyframes floatReverse {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(20px) rotate(-5deg); }
        }
        
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
            50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 0 60px rgba(255, 215, 0, 0.4); }
        }
        
        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .floating-element {
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-element-reverse {
            animation: floatReverse 7s ease-in-out infinite;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            padding: 15px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
        }
        
        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            padding: 10px 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-neon);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
            animation: pulse-glow 3s ease-in-out infinite;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }
        
        .logo-text span {
            color: var(--secondary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }
        
        .nav-menu a {
            color: white;
            text-decoration: none;
            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(--secondary);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .nav-menu a:hover {
            color: var(--secondary);
        }
        
        .nav-cta {
            background: var(--gradient-neon) !important;
            color: var(--primary) !important;
            padding: 12px 28px !important;
            border-radius: 50px;
            font-weight: 600 !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
        }
        
        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(212, 175, 55, 0.6) !important;
        }
        
        .nav-cta::after {
            display: none !important;
        }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 10001;
        }
        
        .mobile-toggle span {
            width: 30px;
            height: 3px;
            background: white;
            transition: all 0.3s ease;
            border-radius: 3px;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(26,26,26,0.9) 100%), 
                        url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--secondary);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 8s ease-in-out infinite;
        }
        
        .hero-content {
            max-width: 900px;
            text-align: center;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid var(--secondary);
            color: var(--secondary);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 30px;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: fadeInDown 1s ease;
        }
        
        .hero-title {
            font-size: clamp(42px, 6vw, 72px);
            color: white;
            line-height: 1.2;
            margin-bottom: 25px;
            font-weight: 700;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .hero-title span {
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% auto;
            animation: gradient-shift 3s ease infinite;
        }
        
        .hero-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 45px;
            line-height: 1.8;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s both;
        }
        
        .btn-primary {
            background: var(--gradient-neon);
            color: var(--primary);
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-secondary:hover {
            border-color: var(--secondary);
            color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-15px); }
            60% { transform: translateX(-50%) translateY(-7px); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Section Styles */
        section {
            padding: 120px 0;
            position: relative;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
            color: var(--secondary);
            padding: 8px 22px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .section-title {
            font-size: clamp(32px, 4vw, 48px);
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .section-subtitle {
            font-size: 17px;
            color: #666;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* About Section */
        .about-section {
            background: var(--accent);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .about-image-wrapper {
            position: relative;
        }
        
        .about-image-main {
            width: 100%;
            height: 550px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: var(--shadow-card);
        }
        
        .about-floating-card {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: white;
            padding: 25px 35px;
            border-radius: 15px;
            box-shadow: var(--shadow-card);
            animation: float 5s ease-in-out infinite;
        }
        
        .about-floating-card h4 {
            font-size: 36px;
            color: var(--secondary);
            font-weight: 700;
        }
        
        .about-floating-card p {
            color: #666;
            font-size: 14px;
            margin-top: 5px;
        }
        
        .about-content h2 {
            font-size: 42px;
            margin-bottom: 25px;
            line-height: 1.3;
        }
        
        .about-content p {
            color: #555;
            margin-bottom: 30px;
            font-size: 16px;
            line-height: 1.9;
        }
        
        .about-values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-top: 40px;
        }
        
        .value-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .value-item:hover {
            border-color: var(--secondary);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
        }
        
        .value-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-neon);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .value-item h4 {
            font-size: 17px;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .value-item p {
            font-size: 13px;
            color: #777;
            margin: 0;
            line-height: 1.6;
        }
        
        /* Milestones/Metrics Section */
        .metrics-section {
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }
        
        .metrics-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.05;
            background-image: radial-gradient(circle at 2px 2px, var(--secondary) 1px, transparent 0);
            background-size: 40px 40px;
        }
        
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .metric-card {
            text-align: center;
            padding: 50px 30px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 20px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .metric-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .metric-card:hover::before {
            left: 100%;
        }
        
        .metric-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
        }
        
        .metric-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-neon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: var(--primary);
        }
        
        .metric-number {
            font-size: 52px;
            font-weight: 700;
            color: white;
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
        }
        
        .metric-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            letter-spacing: 1px;
        }
        
        /* Why Choose Us / Features Section */
        .features-section {
            background: white;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }
        
        .feature-card {
            background: white;
            padding: 45px 35px;
            border-radius: 20px;
            border: 1px solid #eee;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-neon);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-card);
            border-color: transparent;
        }
        
        .feature-card:hover::after {
            transform: scaleX(1);
        }
        
        .feature-number {
            font-size: 64px;
            font-weight: 800;
            color: rgba(212, 175, 55, 0.1);
            line-height: 1;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }
        
        .feature-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--secondary);
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            background: var(--gradient-neon);
            color: var(--primary);
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.8;
            font-size: 15px;
        }
        
        /* Work Process Section */
        .process-section {
            background: var(--accent);
        }
        
        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, transparent, var(--secondary), transparent);
            transform: translateX(-50%);
        }
        
        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .process-content {
            width: calc(50% - 50px);
            background: white;
            padding: 35px;
            border-radius: 18px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }
        
        .process-content:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-card);
        }
        
        .process-dot {
            width: 70px;
            height: 70px;
            background: var(--gradient-neon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--primary);
            font-weight: 700;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
        }
        
        .process-content h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--primary);
        }
        
        .process-content p {
            color: #666;
            font-size: 15px;
            line-height: 1.7;
        }
        
        /* Packages Section */
        .packages-section {
            background: white;
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            align-items: stretch;
        }
        
        .package-card {
            background: white;
            border-radius: 25px;
            padding: 45px 35px;
            border: 2px solid #eee;
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .package-card.featured {
            border-color: var(--secondary);
            transform: scale(1.05);
            box-shadow: 0 30px 80px rgba(212, 175, 55, 0.25);
        }
        
        .package-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-neon);
            color: var(--primary);
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-card);
        }
        
        .package-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }
        
        .package-name {
            font-size: 26px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .package-price {
            font-size: 48px;
            font-weight: 700;
            color: var(--secondary);
            font-family: 'Playfair Display', serif;
            margin-bottom: 25px;
        }
        
        .package-price span {
            font-size: 16px;
            color: #888;
            font-weight: 400;
        }
        
        .package-features {
            list-style: none;
            margin-bottom: 35px;
            flex-grow: 1;
        }
        
        .package-features li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            color: #555;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
        }
        
        .package-features li i {
            color: var(--secondary);
            font-size: 14px;
        }
        
        .package-btn {
            width: 100%;
            padding: 16px;
            border-radius: 50px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: block;
        }
        
        .package-btn.primary {
            background: var(--gradient-neon);
            color: var(--primary);
            border: none;
        }
        
        .package-btn.secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .package-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }
        
        /* Services Section */
        .services-section {
            background: var(--accent);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 280px 1fr;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-card);
            border-color: var(--secondary);
        }
        
        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .service-info {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-neon);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .service-info h3 {
            font-size: 26px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .service-info p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 15px;
        }
        
        .service-link {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            gap: 15px;
        }
        
        /* Booking Form Section */
        .booking-section {
            background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(26,26,26,0.95) 100%),
                        url('https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
            position: relative;
        }
        
        .booking-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .booking-text h2 {
            font-size: 44px;
            color: white;
            margin-bottom: 25px;
            line-height: 1.3;
        }
        
        .booking-text p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 17px;
            line-height: 1.9;
            margin-bottom: 35px;
        }
        
        .booking-features-list {
            list-style: none;
        }
        
        .booking-features-list li {
            color: white;
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 16px;
        }
        
        .booking-features-list li i {
            color: var(--secondary);
            font-size: 20px;
        }
        
        .booking-form-container {
            background: white;
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary);
            font-size: 14px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e5e5e5;
            border-radius: 12px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            outline: none;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            background: white;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }
        
        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            border: 1px solid #eee;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-card);
            border-color: transparent;
        }
        
        .testimonial-stars {
            color: var(--secondary);
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .testimonial-text {
            color: #555;
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 25px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary);
        }
        
        .author-info h4 {
            font-size: 17px;
            color: var(--primary);
            margin-bottom: 3px;
        }
        
        .author-info p {
            color: #888;
            font-size: 13px;
        }
        
        .quote-icon {
            position: absolute;
            top: 25px;
            right: 30px;
            font-size: 60px;
            color: rgba(212, 175, 55, 0.1);
            font-family: 'Playfair Display', serif;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--accent);
        }
        
        .faq-container {
            max-width: 850px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid #e5e5e5;
            transition: all 0.3s ease;
        }
        
        .faq-item.active {
            border-color: var(--secondary);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
        }
        
        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 17px;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--secondary);
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--secondary);
            font-size: 18px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        
        .faq-answer-content {
            padding: 0 30px 25px;
            color: #666;
            line-height: 1.9;
            font-size: 15px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(26,26,26,0.92) 100%),
                        url('https://images.pexels.com/photos/164539/pexels-photo-164539.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-size: clamp(36px, 5vw, 56px);
            color: white;
            margin-bottom: 25px;
            line-height: 1.3;
        }
        
        .cta-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 19px;
            max-width: 650px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }
        
        /* Contact Section */
        .contact-section {
            background: white;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
        }
        
        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .contact-card {
            background: var(--accent);
            padding: 30px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .contact-card:hover {
            border-color: var(--secondary);
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
        }
        
        .contact-card-icon {
            width: 65px;
            height: 65px;
            background: var(--gradient-neon);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--primary);
            flex-shrink: 0;
        }
        
        .contact-card h4 {
            font-size: 17px;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .contact-card p {
            color: #666;
            font-size: 15px;
        }
        
        .contact-card a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-card a:hover {
            color: var(--secondary);
        }
        
        .contact-form-wrapper {
            background: var(--accent);
            padding: 50px;
            border-radius: 25px;
        }
        
        .contact-form-wrapper h3 {
            font-size: 32px;
            margin-bottom: 30px;
            color: var(--primary);
        }
        
        /* Footer */
        .footer {
            background: var(--gradient-dark);
            color: white;
            padding: 80px 0 30px;
            position: relative;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .footer-col h3 {
            font-size: 22px;
            margin-bottom: 25px;
            color: var(--secondary);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.9;
            margin-bottom: 25px;
            font-size: 15px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-social a:hover {
            background: var(--secondary);
            color: var(--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;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 10px;
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .newsletter-input {
            padding: 16px 20px;
            border: 2px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            outline: none;
            transition: all 0.3s ease;
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .newsletter-input:focus {
            border-color: var(--secondary);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .newsletter-btn {
            padding: 16px;
            background: var(--gradient-neon);
            color: var(--primary);
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }
        
        .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 {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }
        
        .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: color 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: var(--secondary);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: var(--gradient-neon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            font-size: 22px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 9998;
            box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .packages-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin: 0 auto;
            }
            
            .package-card.featured {
                transform: none;
            }
            
            .package-card.featured:hover {
                transform: translateY(-15px);
            }
        }
        
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                padding: 100px 40px;
                gap: 25px;
                transition: right 0.4s ease;
                backdrop-filter: blur(20px);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .about-floating-card {
                right: 20px;
                bottom: -20px;
            }
            
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-card {
                grid-template-columns: 1fr;
            }
            
            .service-image {
                height: 250px;
            }
            
            .booking-container {
                grid-template-columns: 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }
            
            .process-line {
                left: 30px;
            }
            
            .process-step,
            .process-step:nth-child(even) {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 80px;
            }
            
            .process-content {
                width: 100%;
            }
            
            .process-dot {
                left: 30px;
                transform: translateX(-50%);
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 80px 0;
            }
            
            .container {
                padding: 0 20px;
            }
            
            .hero-title {
                font-size: 38px;
            }
            
            .metrics-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .about-values {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .booking-form-container {
                padding: 30px;
            }
            
            .contact-form-wrapper {
                padding: 30px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .section-title {
                font-size: 30px;
            }
        }
        
        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
