
        :root {
            --primary-navy: #1B3A5F;
            --primary-red: #A0503A;
            --accent-red: #8B4234;
            --accent-navy: #152E4D;
            --text-dark: #1f1f1f;
            --text-light: #f8f8f8;
            --bg-cream: #F5F1E8;
            --bg-white: #ffffff;
            --shadow: rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .responsive-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-cream);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Crimson Pro', serif;
            font-weight: 600;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px var(--shadow);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Crimson Pro', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-navy);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 180px;
            height: 60px;
            background-image: url('logo.jpeg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--primary-red);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
            color: white !important;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(160, 80, 58, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(160, 80, 58, 0.4);
        }

        .cta-button::after {
            display: none;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-navy);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f8f8f8 0%, var(--bg-cream) 100%);
            overflow: hidden;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            animation: fadeInLeft 1s ease-out;
        }

        .hero-subtitle {
            color: var(--primary-red);
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .hero-title {
            font-size: 3.5rem;
            line-height: 1.2;
            color: var(--primary-navy);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .hero-description {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(160, 80, 58, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(160, 80, 58, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-navy);
            padding: 1rem 2rem;
            border: 2px solid var(--primary-navy);
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: var(--primary-navy);
            color: white;
            transform: translateY(-2px);
        }

        .hero-media {
            position: relative;
            height: 750px;
            animation: fadeInRight 1s ease-out;
        }

        .video-placeholder {
            width: 100%;
            height: 80%;
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-navy));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .video-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(160, 80, 58, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(27, 58, 95, 0.2) 0%, transparent 50%);
        }

        .video-placeholder-content {
            text-align: center;
            z-index: 1;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .play-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .play-button::after {
            content: '▶';
            font-size: 2rem;
            margin-left: 5px;
        }

        /* Stats Section */
        .stats {
            background: white;
            padding: 3rem 2rem;
            box-shadow: 0 10px 40px var(--shadow);
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-red);
            font-family: 'Crimson Pro', serif;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #666;
            font-size: 0.95rem;
        }

        /* Services Section */
        .services {
            padding: 6rem 2rem;
            background: var(--bg-cream);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-subtitle {
            color: var(--primary-red);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }

        .section-description {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-navy));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 70%, rgba(160, 80, 58, 0.66) 0%, transparent 50%);
        }

        .service-content {
            padding: 2rem;
        }

        .service-title {
            font-size: 1.5rem;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }

        .service-description {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: #555;
            position: relative;
            padding-left: 1.5rem;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-red);
            font-weight: bold;
        }

        .service-link {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 1rem;
        }

        .service-link::after {
            content: '→';
        }

        /* Packages Section */
        .packages {
            padding: 6rem 2rem;
            background: white;
        }

        .packages-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .package-card {
            background: var(--bg-cream);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .package-card:hover {
            border-color: var(--primary-red);
            transform: translateY(-5px);
        }

        .package-card.featured {
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-navy));
            color: white;
            transform: scale(1.05);
        }

        .package-header {
            padding: 2rem;
            text-align: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .featured .package-header {
            border-bottom-color: rgba(255, 255, 255, 0.2);
        }

        .package-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .package-duration {
            color: var(--primary-red);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .featured .package-duration {
            color: var(--primary-red);
        }

        .package-price {
            padding: 2rem;
            text-align: center;
        }

        .price-amount {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Crimson Pro', serif;
            color: var(--primary-red);
        }

        .price-currency {
            font-size: 1.2rem;
        }

        .price-period {
            color: #666;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .featured .price-period {
            color: rgba(255, 255, 255, 0.8);
        }

        .package-features {
            padding: 0 2rem 2rem;
        }

        .package-features ul {
            list-style: none;
        }

        .package-features li {
            padding: 0.75rem 0;
            position: relative;
            padding-left: 1.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .featured .package-features li {
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }

        .package-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-red);
            font-weight: bold;
        }

        .package-button {
            margin: 0 2rem 2rem;
        }

        .package-button .btn-primary {
            width: 100%;
            text-align: center;
        }

        .featured .package-button .btn-primary {
            background: white;
            color: var(--primary-navy);
        }

        /* Why Choose Us */
        .why-choose {
            padding: 6rem 2rem;
            background: var(--bg-cream);
        }

        .why-choose-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .why-choose-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--primary-navy), var(--primary-red));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .why-choose-content {
            padding: 2rem;
        }

        .features-list {
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            align-items: start;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .feature-text h3 {
            font-size: 1.3rem;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
        }

        .feature-text p {
            color: #666;
            line-height: 1.7;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 2rem;
            background: white;
        }

        .testimonials-slider {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--bg-cream);
            padding: 2.5rem;
            border-radius: 16px;
            position: relative;
            box-shadow: 0 10px 30px var(--shadow);
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--primary-red);
            line-height: 1;
            margin-bottom: 1rem;
            font-family: 'Crimson Pro', serif;
        }

        .testimonial-text {
            color: #555;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-navy));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }

        .author-info h4 {
            color: var(--primary-navy);
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .author-info p {
            color: #666;
            font-size: 0.85rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-navy));
            color: white;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section .section-title {
            color: white;
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta-section .section-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-buttons .btn-primary {
            background: var(--primary-red);
        }

        .cta-buttons .btn-secondary {
            border-color: white;
            color: white;
        }

        .cta-buttons .btn-secondary:hover {
            background: white;
            color: var(--primary-navy);
        }

        /* Footer */
        .footer {
            background: #0f1419;
            color: #999;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-about h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-about p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.75rem;
        }

        .footer-links ul li a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--primary-red);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container,
            .why-choose-container {
                grid-template-columns: 1fr;
            }

            .services-grid,
            .packages-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-slider {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hero-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 2rem;
                box-shadow: 0 10px 30px var(--shadow);
            }

            .services-grid,
            .packages-grid {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-section .section-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }
        }

        /* Page Header */
        .page-header {
            margin-top: 80px;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-navy));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                    radial-gradient(circle at 20% 80%, rgba(160, 80, 58, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(27, 58, 95, 0.2) 0%, transparent 50%);
        }

        .page-header-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .page-subtitle {
            color: var(--primary-red);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .page-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-family: 'Crimson Pro', serif;
        }

        .page-description {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact-section {
            padding: 6rem 2rem;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        /* Contact Info */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-header {
            margin-bottom: 1rem;
        }

        .info-header h2 {
            font-size: 2.5rem;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }

        .info-header p {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px var(--shadow);
            display: flex;
            gap: 1.5rem;
            align-items: start;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-details h3 {
            font-size: 1.3rem;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: #666;
            margin-bottom: 0.5rem;
        }

        .contact-details a {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: var(--accent-red);
        }

        /* Social Links */
        .social-section {
            background: var(--bg-cream);
            padding: 2rem;
            border-radius: 16px;
            margin-top: 2rem;
        }

        .social-section h3 {
            font-size: 1.5rem;
            color: var(--primary-navy);
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .social-link {
            background: white;
            padding: 1rem;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: var(--text-dark);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px var(--shadow);
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            background: var(--primary-red);
            color: white;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
        }

        .social-link:hover .social-icon {
            background: white;
            color: var(--primary-red);
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px var(--shadow);
        }

        .form-header {
            margin-bottom: 2rem;
        }

        .form-header h2 {
            font-size: 2rem;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
        }

        .form-header p {
            color: #666;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group label {
            font-weight: 600;
            color: var(--primary-navy);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--bg-cream);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-red);
            background: white;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-group select {
            cursor: pointer;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
            color: white;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(160, 80, 58, 0.3);
            font-family: 'Montserrat', sans-serif;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(160, 80, 58, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Map Section */
        .map-section {
            padding: 6rem 2rem;
            background: white;
        }

        .map-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .map-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .map-header h2 {
            font-size: 2.5rem;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }

        .map-header p {
            color: #666;
            font-size: 1.05rem;
        }

        .map-wrapper {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-navy));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .map-placeholder {
            text-align: center;
            padding: 2rem;
        }

        .map-placeholder h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 2rem;
            background: var(--bg-cream);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-header h2 {
            font-size: 2.5rem;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }

        .faq-header p {
            color: #666;
            font-size: 1.05rem;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .faq-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 20px var(--shadow);
            transition: all 0.3s ease;
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: var(--bg-cream);
        }

        .faq-question h3 {
            font-size: 1.2rem;
            color: var(--primary-navy);
            margin: 0;
            flex: 1;
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 2rem 1.5rem;
            color: #666;
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        /* Footer */
        .footer {
            background: #0f1419;
            color: #999;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-about h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-about p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social-link:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.75rem;
        }

        .footer-links ul li a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--primary-red);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-container {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .page-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 2rem;
                box-shadow: 0 10px 30px var(--shadow);
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .social-links {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .page-title {
                font-size: 2rem;
            }

            .contact-form-wrapper {
                padding: 2rem;
            }
        }


        .page-subtitle {
            color: var(--primary-red);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .page-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-family: 'Crimson Pro', serif;
        }

        .page-description {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.8;
        }

        /* Story Section */
        .story-section {
            padding: 6rem 2rem;
            background: white;
        }

        .story-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .story-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-navy));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .story-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                    radial-gradient(circle at 30% 70%, rgba(160, 80, 58, 0.2) 0%, transparent 50%);
        }

        .story-content h2 {
            font-size: 2.5rem;
            color: var(--primary-navy);
            margin-bottom: 1.5rem;
        }

        .story-content .subtitle {
            color: var(--primary-red);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .story-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .story-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .highlight-text {
            flex: 1;
        }

        .highlight-text h4 {
            color: var(--primary-navy);
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .highlight-text p {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        /* Values Section */
        .values-section {
            padding: 6rem 2rem;
            background: var(--bg-cream);
        }

        .values-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-subtitle {
            color: var(--primary-red);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }

        .section-description {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .value-card {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
            color: white;
        }

        .value-card h3 {
            font-size: 1.5rem;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }

        .value-card p {
            color: #666;
            line-height: 1.7;
        }

        /* Team Section */
        .team-section {
            padding: 6rem 2rem;
            background: white;
        }

        .team-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .team-card {
            background: var(--bg-cream);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow);
            transition: all 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .team-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-navy));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .team-info {
            padding: 1.5rem;
            text-align: center;
        }

        .team-info h3 {
            font-size: 1.2rem;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
        }

        .team-info p {
            color: var(--primary-red);
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 6rem 2rem;
            background: var(--bg-cream);
        }

        .timeline-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary-navy), var(--primary-red));
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            width: 45%;
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px var(--shadow);
            position: relative;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: auto;
            text-align: right;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: auto;
            text-align: left;
        }

        .timeline-year {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 0.5rem;
            font-family: 'Crimson Pro', serif;
        }

        .timeline-content h3 {
            font-size: 1.3rem;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
        }

        .timeline-content p {
            color: #666;
            line-height: 1.7;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            width: 20px;
            height: 20px;
            background: var(--primary-red);
            border-radius: 50%;
            transform: translateX(-50%);
            border: 4px solid white;
            box-shadow: 0 0 0 4px var(--bg-cream);
            z-index: 1;
        }

        /* Stats Section */
        .stats-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-navy));
            color: white;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
        }

        .stat-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-red);
            font-family: 'Crimson Pro', serif;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
        }

        /* Certifications Section */
        .certifications-section {
            padding: 6rem 2rem;
            background: white;
        }

        .certifications-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .certifications-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .certification-card {
            background: var(--bg-cream);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 10px 30px var(--shadow);
            transition: all 0.3s ease;
        }

        .certification-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .certification-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
            color: white;
        }

        .certification-card h3 {
            font-size: 1.1rem;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
        }

        .certification-card p {
            color: #666;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-navy));
            color: white;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section .section-title {
            color: white;
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta-section .section-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--primary-red);
            color: white;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(160, 80, 58, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(160, 80, 58, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1.2rem 2.5rem;
            border: 2px solid white;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-navy);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: #0f1419;
            color: #999;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-about h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-about p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social-link:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.75rem;
        }

        .footer-links ul li a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--primary-red);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .story-container {
                grid-template-columns: 1fr;
            }

            .values-grid,
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-container,
            .certifications-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                flex-direction: row;
            }

            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
                text-align: left !important;
            }

            .timeline-dot {
                left: 30px;
            }

            .page-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 2rem;
                box-shadow: 0 10px 30px var(--shadow);
            }

            .values-grid,
            .team-grid,
            .stats-container,
            .certifications-grid {
                grid-template-columns: 1fr;
            }

            .story-highlights {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .page-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-section .section-title {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }
        }


        /* Breadcrumb */
        .breadcrumb {
            margin-top: 100px;
            padding: 1.5rem 2rem;
            background: white;
            border-bottom: 1px solid #e0e0e0;
        }

        .breadcrumb-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: var(--primary-red);
        }

        .breadcrumb span {
            color: #999;
        }

        .breadcrumb .current {
            color: var(--primary-navy);
            font-weight: 600;
        }

        /* Package Hero */
        .package-hero {
            padding: 3rem 2rem;
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-navy));
            color: white;
        }

        .package-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .package-hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .package-badge {
            display: inline-block;
            background: var(--primary-red);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .package-meta {
            display: flex;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
        }

        .meta-icon {
            font-size: 1.3rem;
        }

        .package-description {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.95;
        }

        .package-price-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        .price-tag {
            color: var(--primary-red);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .price-amount {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-navy);
            font-family: 'Crimson Pro', serif;
            margin-bottom: 0.5rem;
        }

        .price-currency {
            font-size: 1.5rem;
        }

        .price-note {
            color: #666;
            font-size: 0.85rem;
            margin-bottom: 2rem;
        }

        .book-now-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(160, 80, 58, 0.3);
            font-family: 'Montserrat', sans-serif;
        }

        .book-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(160, 80, 58, 0.4);
        }

        .quick-contact {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e0e0e0;
        }

        .quick-contact p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .contact-buttons {
            display: flex;
            gap: 0.75rem;
        }

        .contact-btn {
            flex: 1;
            padding: 0.75rem;
            border-radius: 8px;
            border: 2px solid var(--primary-navy);
            background: white;
            color: var(--primary-navy);
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background: var(--primary-navy);
            color: white;
        }

        /* Package Content */
        .package-content {
            padding: 4rem 2rem;
        }

        .content-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
        }

        /* Gallery */
        .package-gallery {
            margin-bottom: 3rem;
        }

        .main-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-navy));
            border-radius: 20px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .thumbnail-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .thumbnail {
            height: 120px;
            background: linear-gradient(135deg, var(--accent-navy), var(--primary-navy));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .thumbnail:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Tabs */
        .package-tabs {
            margin-bottom: 3rem;
        }

        .tab-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            border-bottom: 2px solid #e0e0e0;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 1rem 1.5rem;
            background: none;
            border: none;
            color: #666;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
            font-family: 'Montserrat', sans-serif;
        }

        .tab-btn.active {
            color: var(--primary-red);
            border-bottom-color: var(--primary-red);
        }

        .tab-btn:hover {
            color: var(--primary-red);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-section {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px var(--shadow);
            margin-bottom: 2rem;
        }

        .content-section h2 {
            font-size: 2rem;
            color: var(--primary-navy);
            margin-bottom: 1.5rem;
        }

        .content-section h3 {
            font-size: 1.5rem;
            color: var(--primary-navy);
            margin: 2rem 0 1rem;
        }

        .content-section p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .features-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .feature-item {
            display: flex;
            align-items: start;
            gap: 0.75rem;
            padding: 1rem;
            background: var(--bg-cream);
            border-radius: 12px;
        }

        .feature-icon {
            color: var(--primary-red);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-item span {
            color: #555;
            line-height: 1.6;
        }

        .itinerary-day {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: var(--bg-cream);
            border-radius: 12px;
            border-left: 4px solid var(--primary-red);
        }

        .day-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .day-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .day-title {
            flex: 1;
        }

        .day-title h4 {
            color: var(--primary-navy);
            font-size: 1.2rem;
            margin-bottom: 0.25rem;
        }

        .day-title p {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        .day-activities {
            list-style: none;
            margin-left: 3.5rem;
        }

        .day-activities li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
            color: #555;
        }

        .day-activities li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-red);
            font-weight: bold;
            font-size: 1.5rem;
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .sidebar-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px var(--shadow);
            margin-bottom: 2rem;
        }

        .sidebar-card h3 {
            font-size: 1.5rem;
            color: var(--primary-navy);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--bg-cream);
        }

        .info-list {
            list-style: none;
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .info-item:last-child {
            border-bottom: none;
        }

        .info-label {
            color: #666;
            font-weight: 500;
        }

        .info-value {
            color: var(--primary-navy);
            font-weight: 600;
            text-align: right;
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-navy));
            color: white;
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            margin-bottom: 2rem;
        }

        .highlight-box h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .highlight-box p {
            opacity: 0.9;
            margin: 0;
        }

        .share-buttons {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .share-btn {
            flex: 1;
            padding: 0.75rem;
            background: var(--bg-cream);
            border: none;
            border-radius: 8px;
            color: var(--primary-navy);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .share-btn:hover {
            background: var(--primary-navy);
            color: white;
        }

        /* Related Packages */
        .related-packages {
            padding: 4rem 2rem;
            background: white;
        }

        .related-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-subtitle {
            color: var(--primary-red);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-navy);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .package-card {
            background: var(--bg-cream);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .package-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-navy));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .package-info {
            padding: 2rem;
        }

        .package-info h3 {
            font-size: 1.3rem;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
        }

        .package-duration {
            color: var(--primary-red);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .package-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #e0e0e0;
        }

        .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-red);
            font-family: 'Crimson Pro', serif;
        }

        .view-btn {
            padding: 0.5rem 1.25rem;
            background: var(--primary-navy);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-btn:hover {
            background: var(--primary-red);
        }

        /* Footer */
        .footer {
            background: #0f1419;
            color: #999;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-about h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-about p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social-link:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.75rem;
        }

        .footer-links ul li a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--primary-red);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .package-hero-container {
                grid-template-columns: 1fr;
            }

            .content-container {
                grid-template-columns: 1fr;
            }

            .packages-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .sidebar {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 2rem;
                box-shadow: 0 10px 30px var(--shadow);
            }

            .package-hero-content h1 {
                font-size: 2rem;
            }

            .price-amount {
                font-size: 2.5rem;
            }

            .thumbnail-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-list {
                grid-template-columns: 1fr;
            }

            .packages-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .contact-buttons {
                flex-direction: column;
            }
        }