        :root {
            --primary: #0891b2;
            --primary-dark: #0e7490;
            --secondary: #f97316;
            --accent: #10b981;
            --dark: #0f172a;
            --dark-light: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --gray-light: #94a3b8;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #0891b2 0%, #0284c7 100%);
            --gradient-warm: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
            --gradient-accent: linear-gradient(135deg, #10b981 0%, #34d399 100%);
            --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
            --shadow-glow: 0 4px 30px rgba(8, 145, 178, 0.25);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(8, 145, 178, 0.1);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(32px, 5vw, 48px);
            margin-bottom: 16px;
            color: var(--dark);
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--gray);
            max-width: 600px;
        }

        /* Buttons */
        .btn-primary-custom {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            cursor: pointer;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
            color: white;
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--dark);
            border: 2px solid var(--dark);
            padding: 14px 30px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            cursor: pointer;
        }

        .btn-outline-custom:hover {
            background: var(--dark);
            color: white;
        }

        .btn-white {
            background: white;
            color: var(--primary);
            border: none;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            cursor: pointer;
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            color: var(--primary);
        }

        /* Header / Navigation */
        .navbar-custom {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.3s ease;
        }

        .navbar-custom.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-sm);
            padding: 12px 0;
        }

        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 24px;
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .navbar-custom.scrolled .navbar-brand-custom {
            color: var(--dark);
        }

        .navbar-brand-custom .logo-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .navbar-custom.scrolled .nav-links a {
            color: var(--gray);
        }

        .nav-links a:hover {
            color: white;
        }

        .navbar-custom.scrolled .nav-links a:hover {
            color: var(--primary);
        }

        .nav-btn {
            background: white;
            color: var(--primary) !important;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
        }

        .navbar-custom.scrolled .nav-btn {
            background: var(--gradient-primary);
            color: white !important;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }

        .navbar-custom.scrolled .mobile-menu-btn {
            color: var(--dark);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--gradient-dark);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230891b2' fill-opacity='0.1' d='M0,160L48,170.7C96,181,192,203,288,186.7C384,171,480,117,576,117.3C672,117,768,171,864,197.3C960,224,1056,224,1152,197.3C1248,171,1344,117,1392,90.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
                background-size: cover;
            background-position: bottom;
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-badge i {
            color: var(--secondary);
        }

        .hero-title {
            font-size: clamp(40px, 7vw, 72px);
            color: white;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .hero-title span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 540px;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 64px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-value {
            font-family: 'Poppins', sans-serif;
            font-size: 42px;
            font-weight: 800;
            color: white;
            line-height: 1;
        }

        .hero-stat-value span {
            color: var(--primary);
        }

        .hero-stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 8px;
        }

        .hero-image {
            position: absolute;
            right: -5%;
            top: 50%;
            transform: translateY(-50%);
            width: 55%;
            height: 80%;
            border-radius: 30px 0 0 30px;
            overflow: hidden;
            opacity: 0.4;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, var(--dark) 0%, transparent 50%);
            z-index: 1;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Floating Elements */
        .floating-card {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: var(--shadow-lg);
            animation: float 6s ease-in-out infinite;
            z-index: 10;
        }

        .floating-card.card-1 {
            right: 10%;
            top: 20%;
            animation-delay: 0s;
        }

        .floating-card.card-2 {
            right: 25%;
            bottom: 25%;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .floating-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 12px;
        }

        .floating-card-title {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 4px;
        }

        .floating-card-text {
            font-size: 13px;
            color: var(--gray);
        }

        /* About Section */
        .about {
            padding: 120px 0;
            background: var(--light);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-main {
            width: 100%;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
        }

        .about-image-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--gradient-primary);
            color: white;
            padding: 24px 32px;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow-glow);
        }

        .about-image-badge-value {
            font-family: 'Poppins', sans-serif;
            font-size: 36px;
            font-weight: 800;
            line-height: 1;
        }

        .about-image-badge-label {
            font-size: 13px;
            opacity: 0.9;
            margin-top: 4px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 40px;
        }

        .about-feature {
            display: flex;
            gap: 16px;
        }

        .about-feature-icon {
            width: 52px;
            height: 52px;
            background: rgba(8, 145, 178, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 22px;
            flex-shrink: 0;
        }

        .about-feature-title {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 4px;
        }

        .about-feature-text {
            font-size: 14px;
            color: var(--gray);
        }

        /* Services Section */
        .services {
            padding: 120px 0;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        .service-card {
            background: var(--light);
            border-radius: 24px;
            padding: 40px 32px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            background: white;
            box-shadow: var(--shadow-lg);
            transform: translateY(-8px);
            border-color: rgba(8, 145, 178, 0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 72px;
            height: 72px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            margin-bottom: 24px;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .service-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .service-description {
            color: var(--gray);
            font-size: 15px;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 12px;
            color: var(--primary-dark);
        }

        /* Tours Section */
        .tours {
            padding: 120px 0;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .tours::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20 80 L35 50 L50 65 L70 30 L85 55 L100 40 L100 100 L0 100 L0 80 Z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
            background-size: cover;
        }

        .tours .section-badge {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .tours .section-title {
            color: white;
        }

        .tours .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .tours-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
            position: relative;
            z-index: 2;
        }

        .tour-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .tour-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .tour-image {
            height: 220px;
            position: relative;
            overflow: hidden;
        }

        .tour-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .tour-card:hover .tour-image img {
            transform: scale(1.1);
        }

        .tour-date {
            position: absolute;
            top: 16px;
            left: 16px;
            background: white;
            color: var(--primary);
            padding: 10px 16px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 13px;
            box-shadow: var(--shadow-md);
        }

        .tour-slots {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            color: white;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .tour-slots.hot {
            background: var(--secondary);
        }

        .tour-content {
            padding: 28px;
        }

        .tour-location {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .tour-title {
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
        }

        .tour-features {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }

        .tour-feature {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
        }

        .tour-feature i {
            color: var(--primary);
        }

        .tour-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .tour-price {
            font-family: 'Poppins', sans-serif;
        }

        .tour-price-value {
            font-size: 28px;
            font-weight: 800;
            color: white;
        }

        .tour-price-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        .tour-btn {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tour-btn:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-glow);
        }

        /* Gallery Section */
        .gallery {
            padding: 120px 0;
            background: var(--light);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 250px);
            gap: 20px;
            margin-top: 60px;
        }

        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .gallery-item:first-child {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
            display: flex;
            align-items: flex-end;
            padding: 24px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-caption {
            color: white;
        }

        .gallery-caption-title {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 4px;
        }

        .gallery-caption-text {
            font-size: 13px;
            opacity: 0.8;
        }

        /* Testimonials */
        .testimonials {
            padding: 120px 0;
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: var(--light);
            border-radius: 24px;
            padding: 36px;
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }

        .testimonial-quote {
            position: absolute;
            top: 24px;
            right: 24px;
            font-size: 48px;
            color: var(--primary);
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .testimonial-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }

        .testimonial-rating i {
            color: #fbbf24;
            font-size: 16px;
        }

        .testimonial-text {
            font-size: 15px;
            color: var(--dark);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .testimonial-avatar {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 16px;
        }

        .testimonial-tour {
            font-size: 13px;
            color: var(--gray);
        }

        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .cta::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(32px, 5vw, 48px);
            color: white;
            margin-bottom: 20px;
        }

        .cta-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Contact Section */
        .contact {
            padding: 120px 0;
            background: var(--dark);
        }

        .contact .section-badge {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .contact .section-title {
            color: white;
        }

        .contact .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            margin-top: 60px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
        }

        .contact-item-icon {
            width: 56px;
            height: 56px;
            background: rgba(8, 145, 178, 0.2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 24px;
            flex-shrink: 0;
        }

        .contact-item-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-item-value {
            color: white;
            font-size: 18px;
            font-weight: 500;
        }

        .contact-item-value a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item-value a:hover {
            color: var(--primary);
        }

        .contact-socials {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .contact-social {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-social:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .form-control-custom {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            color: white;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .form-control-custom:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
        }

        .form-control-custom::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        textarea.form-control-custom {
            min-height: 120px;
            resize: vertical;
        }

        /* Footer */
        .footer {
            background: var(--dark-light);
            padding: 60px 0 30px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-brand-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
        }

        .footer-brand-name {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 24px;
            color: white;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            line-height: 1.8;
            max-width: 320px;
        }

        .footer-title {
            color: white;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 24px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

        .footer-payments {
            display: flex;
            gap: 12px;
        }

        .footer-payment {
            width: 48px;
            height: 32px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-image {
                width: 50%;
                opacity: 0.3;
            }

            .floating-card {
                display: none;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-image {
                display: none;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-image-badge {
                right: 20px;
                bottom: -20px;
            }

            .services-grid,
            .tours-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 200px);
            }

            .gallery-item:first-child {
                grid-column: span 2;
                grid-row: span 1;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .hero-stats {
                gap: 32px;
                flex-wrap: wrap;
            }

            .services-grid,
            .tours-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .gallery-item:first-child {
                grid-column: span 1;
            }

            .gallery-item {
                height: 250px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
