
        /* ========== CSS VARIABLES - GREEN PARROT COLORS ========== */
        :root {
            --color-primary: #1A8714;
            --color-primary-dark: #145f10;
            --color-primary-light: #2ba822;
            --color-button: #FF7700;
            --color-button-hover: #e66a00;
            --color-button-light: #ff8c1a;
            --color-white: #ffffff;
            --color-dark: #1a1a1a;
            --color-gray: #6b7280;
            --color-light-gray: #f3f4f6;
            --gradient-primary: linear-gradient(135deg, #1A8714 0%, #2ba822 50%, #145f10 100%);
            --gradient-button: linear-gradient(135deg, #FF7700 0%, #ff8c1a 50%, #e66a00 100%);
            --gradient-hero: linear-gradient(135deg, #1A8714 0%, #0d5a09 100%);
            --gradient-footer: linear-gradient(135deg, #FF7700 0%, #ff8c1a 30%, #e66a00 70%, #cc5500 100%);
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
            --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }

        /* ========== RESET & BASE ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--color-dark);
            background-color: var(--color-white);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== HEADER / NAVBAR ========== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--gradient-primary);
            padding: 12px 0;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .header.scrolled {
            padding: 8px 0;
            background: rgba(26, 135, 20, 0.98);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo img {
            height: 55px;
            width: auto;
        }

        .logo-text {
            color: var(--color-white);
            font-size: 1.3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 8px;
            align-items: center;
        }

        .nav-menu a {
            color: var(--color-white);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            transition: var(--transition);
            padding: 10px 18px;
            border-radius: 25px;
        }

        .nav-menu a:hover {
            background: rgba(255,255,255,0.2);
        }

        .nav-btn {
            background: var(--gradient-button) !important;
            color: var(--color-white) !important;
            padding: 12px 28px !important;
            border-radius: 25px;
            font-weight: 700 !important;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            background: var(--color-button-hover) !important;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--color-white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            background: var(--gradient-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 20px 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://greenparrotadventuretours.com/header/11zon_converted/1_1_11zon.webp') center/cover;
            opacity: 0.3;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(transparent, rgba(26, 135, 20, 0.1));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.15);
            padding: 10px 25px;
            border-radius: 50px;
            color: var(--color-white);
            font-size: 0.95rem;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .hero-badge i {
            color: #FFD700;
        }

        .hero h1 {
            color: var(--color-white);
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            text-shadow: 2px 4px 15px rgba(0,0,0,0.3);
        }

        .hero h1 span {
            color: #FFD700;
            display: block;
        }

        .hero-subtitle {
            color: rgba(255,255,255,0.95);
            font-size: 1.4rem;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .hero-description {
            color: rgba(255,255,255,0.85);
            font-size: 1.1rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--gradient-button);
            color: var(--color-white);
            padding: 16px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

          .btn-primary2 {
            background: var(--gradient-button);
            color: var(--color-white);
            padding: 16px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 119, 0, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-white);
            padding: 16px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            border: 2px solid var(--color-white);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-secondary:hover {
            background: var(--color-white);
            color: var(--color-primary);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            animation: bounce 2s infinite;
        }

        .scroll-indicator a {
            color: var(--color-white);
            font-size: 2rem;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-15px); }
            60% { transform: translateX(-50%) translateY(-7px); }
        }

        /* ========== ABOUT SECTION ========== */
        .about {
            padding: 100px 0;
            background: var(--color-light-gray);
            position: relative;
            overflow: hidden;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .about-image {
            position: relative;
        }

        .image-wrapper {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .image-wrapper img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
        }

        .floating-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gradient-button);
            color: var(--color-white);
            padding: 12px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: var(--shadow-md);
        }

        .experience-box {
            position: absolute;
            bottom: -25px;
            right: -25px;
            background: var(--gradient-primary);
            color: var(--color-white);
            padding: 25px 35px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .experience-box .number {
            display: block;
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1;
        }

        .experience-box .text {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--color-primary);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .section-tag i {
            color: var(--color-button);
        }

        .about-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--color-dark);
            line-height: 1.2;
        }

        .about-title .highlight {
            color: var(--color-primary);
        }

        .about-description {
            color: var(--color-gray);
            margin-bottom: 18px;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin: 35px 0;
        }

        .feature-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .feature-icon {
            width: 55px;
            height: 55px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            font-size: 1.3rem;
            flex-shrink: 0;
            box-shadow: var(--shadow-sm);
        }

        .feature-text h4 {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--color-dark);
        }

        .feature-text p {
            font-size: 0.9rem;
            color: var(--color-gray);
        }

        .about .btn-primary {
            margin-top: 10px;
        }

        /* Decorations */
        .decoration {
            position: absolute;
            border-radius: 50%;
            background: var(--color-primary);
            opacity: 0.05;
        }

        .decoration-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            right: -100px;
        }

        .decoration-2 {
            width: 300px;
            height: 300px;
            bottom: -50px;
            left: -50px;
        }

        /* ========== VIDEO BANNER SECTION ========== */
        .video-banner {
            position: relative;
            height: 1100px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .video-banner .video-background {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .video-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
         
            z-index: 1;
        }

        .buton-ubi{ margin-top: 700px;
            
}
        .video-banner-content {
            position: relative;
            z-index: 2;
            color: var(--color-white);
            max-width: 100%;
            height: 800px;
            padding: 0 20px;
        }

        .video-banner-content .small-text {
            font-size: 1rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 20px;
            opacity: 0.9;
            font-weight: 500;
        }

        .video-banner-content h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 4px 15px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        .video-banner-content h2 span {
            color: #FFD700;
        }

        .video-banner-content p {
            font-size: 1.3rem;
            max-width: 650px;
            margin: 0 auto 30px;
            opacity: 0.95;
            line-height: 1.7;
        }

        .video-banner-content .btn-primary {
            background: var(--gradient-button);
        }

        .video-banner-content .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(255, 119, 0, 0.5);
        }

        /* Play Button Style (Optional) */
        .play-btn {
            width: 80px;
            height: 80px;
            background: var(--gradient-button);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 30px rgba(255, 119, 0, 0.4);
            animation: pulse-play 2s infinite;
        }

        .play-btn i {
            font-size: 2rem;
            color: var(--color-white);
            margin-left: 5px;
        }

        .play-btn:hover {
            transform: scale(1.1);
        }

        @keyframes pulse-play {
            0% { box-shadow: 0 0 0 0 rgba(255, 119, 0, 0.5); }
            70% { box-shadow: 0 0 0 25px rgba(255, 119, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 119, 0, 0); }
        }

        /* ========== WHY CHOOSE US SECTION ========== */
        .why-choose-us {
            padding: 100px 0;
            background: linear-gradient(180deg, #f8fdf8 0%, var(--color-white) 100%);
            position: relative;
            overflow: hidden;
        }

        .why-choose-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .why-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-primary);
            color: var(--color-white);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .why-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 15px;
        }

        .why-title span {
            color: var(--color-primary);
        }

        .why-subtitle {
            font-size: 1.1rem;
            color: var(--color-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 60px;
        }

        .why-card {
            background: var(--color-white);
            padding: 35px 25px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid rgba(26, 135, 20, 0.1);
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-primary);
        }

        .card-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-button);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--color-white);
            box-shadow: 0 5px 20px rgba(255, 119, 0, 0.3);
        }

        .why-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--color-dark);
        }

        .why-card p {
            font-size: 0.9rem;
            color: var(--color-gray);
            line-height: 1.7;
        }

        /* Stats */
        .why-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
            padding: 40px;
            background: var(--gradient-primary);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
        }

        .stat-item {
            text-align: center;
            color: var(--color-white);
        }

        .stat-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #FFD700;
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Decorative Bubbles */
        .bubble {
            position: absolute;
            border-radius: 50%;
            background: var(--color-primary);
            opacity: 0.05;
            animation: float 6s ease-in-out infinite;
        }

        .bubble-1 { width: 100px; height: 100px; top: 10%; left: 5%; animation-delay: 0s; }
        .bubble-2 { width: 60px; height: 60px; top: 20%; right: 10%; animation-delay: 1s; }
        .bubble-3 { width: 80px; height: 80px; bottom: 30%; left: 10%; animation-delay: 2s; }
        .bubble-4 { width: 50px; height: 50px; bottom: 20%; right: 5%; animation-delay: 3s; }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* ========== TOURS SECTION ========== */
        .tours-section {
            padding: 100px 0;
            background: var(--color-white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--color-dark);
        }

        .section-header h2 span {
            color: var(--color-primary);
        }

        .section-header p {
            color: var(--color-gray);
            font-size: 1.1rem;
            max-width: 650px;
            margin: 0 auto;
        }

        .tours-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .tour-card {
            background: var(--color-white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .tour-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .tour-image {
            height: 280px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .tour-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
        }

        .tour-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gradient-button);
            color: var(--color-white);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 700;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .tour-content {
            padding: 30px;
        }

        .tour-content h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--color-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tour-content h3 i {
            color: var(--color-primary);
        }

        .tour-content > p {
            color: var(--color-gray);
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .tour-details {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }

        .tour-detail {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: var(--color-gray);
        }

        .tour-detail i {
            color: var(--color-primary);
            font-size: 1rem;
        }

        .tour-includes {
            margin-bottom: 25px;
        }

        .tour-includes h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--color-dark);
        }

        .tour-includes ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .tour-includes li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--color-gray);
        }

        .tour-includes li i {
            color: var(--color-primary);
            font-size: 0.85rem;
        }

        .tour-recommendations {
            background: rgba(26, 135, 20, 0.05);
            padding: 20px;
            border-radius: var(--border-radius);
            margin-bottom: 25px;
        }

        .tour-recommendations h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--color-dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .tour-recommendations h4 i {
            color: var(--color-button);
        }

        .tour-recommendations ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tour-recommendations li {
            background: var(--color-white);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--color-gray);
            border: 1px solid rgba(0,0,0,0.08);
        }

        .tour-pricing {
            background: var(--color-light-gray);
            padding: 25px;
            border-radius: var(--border-radius);
            margin-bottom: 25px;
        }

        .tour-pricing h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--color-dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .tour-pricing h4 i {
            color: var(--color-button);
        }

        .pricing-type {
            margin-bottom: 15px;
        }

        .pricing-type:last-child {
            margin-bottom: 0;
        }

        .pricing-type h5 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 0.95rem;
            padding: 5px 0;
        }

        .price-row:last-child {
            margin-bottom: 0;
        }

        .price-row .label {
            color: var(--color-gray);
        }

        .price-row .price {
            font-weight: 700;
            color: var(--color-primary);
        }

        .price-row .price.free {
            color: var(--color-button);
        }

        .price-row .price.warning {
            color: #dc2626;
            font-size: 0.85rem;
        }

        .tour-notes {
            background: rgba(255, 119, 0, 0.08);
            padding: 20px;
            border-radius: var(--border-radius);
            margin-bottom: 25px;
            border-left: 4px solid var(--color-button);
        }

        .tour-notes h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--color-dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .tour-notes h4 i {
            color: var(--color-button);
        }

        .tour-notes ul {
            list-style: none;
        }

        .tour-notes li {
            font-size: 0.88rem;
            color: var(--color-gray);
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .tour-notes li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--color-button);
            font-weight: bold;
        }

        .tour-notes li:last-child {
            margin-bottom: 0;
        }

        .tour-card .btn-primary {
            width: 100%;
            justify-content: center;
        }

        /* ========== TRANSFERS SECTION ========== */
        .transfers-section {
            padding: 100px 0;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .transfers-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .transfers-section .section-header h2,
        .transfers-section .section-header p {
            color: var(--color-white);
        }

        .transfers-section .section-badge {
            background: var(--gradient-button);
        }

        .transfers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .transfer-card {
            background: var(--color-white);
            border-radius: var(--border-radius);
            padding: 35px 25px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .transfer-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .transfer-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-button);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--color-white);
            box-shadow: 0 8px 25px rgba(255, 119, 0, 0.35);
        }

        .transfer-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--color-dark);
        }

        .transfer-card .route {
            color: var(--color-gray);
            font-size: 0.9rem;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .transfer-card .price {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1;
        }

        .transfer-card .price span {
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-gray);
        }

        .transfer-card .capacity {
            font-size: 0.85rem;
            color: var(--color-gray);
            margin-top: 12px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .transfers-features {
            max-width: 900px;
            margin: 50px auto 0;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .transfers-features-box {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 35px;
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
            border: 1px solid rgba(255,255,255,0.15);
        }

        .transfer-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--color-white);
        }

        .transfer-feature i {
            font-size: 1.5rem;
            color: #FFD700;
        }

        .transfer-feature span {
            font-weight: 500;
        }

        /* ========== POLICIES SECTION ========== */
        .policies-section {
            padding: 80px 0;
            background: var(--color-light-gray);
        }

        .policies-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .policies-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .policy-card {
            background: var(--color-white);
            border-radius: var(--border-radius);
            padding: 35px;
            box-shadow: var(--shadow-sm);
        }

        .policy-card h3 {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: var(--color-dark);
        }

        .policy-card h3 i {
            color: var(--color-button);
            font-size: 1.5rem;
        }

        .policy-card ul {
            list-style: none;
        }

        .policy-card li {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--color-gray);
            line-height: 1.6;
        }

        .policy-card li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .policy-card li i {
            color: var(--color-primary);
            margin-top: 4px;
            font-size: 0.9rem;
        }

        .policy-card li strong {
            color: var(--color-dark);
        }

        /* ========== CONTACT SECTION ========== */
        .contact-section {
            padding: 100px 0;
            background: var(--color-white);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-info h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .contact-info h2 span {
            color: var(--color-primary);
        }

        .contact-info > p {
            color: var(--color-gray);
            margin-bottom: 35px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: var(--color-light-gray);
            border-radius: var(--border-radius);
            transition: var(--transition);
            cursor: pointer;
        }

        .contact-method:hover {
            background: var(--color-primary);
            color: var(--color-white);
            transform: translateX(10px);
        }

        .contact-method:hover .method-icon {
            background: var(--color-white);
            color: var(--color-primary);
        }

        .contact-method:hover .method-content p {
            color: rgba(255,255,255,0.85);
        }

        .method-icon {
            width: 65px;
            height: 65px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            font-size: 1.6rem;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .method-content h4 {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .method-content p {
            font-size: 0.95rem;
            color: var(--color-gray);
            transition: var(--transition);
        }

        .contact-map {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            min-height: 450px;
            border: none;
        }

        /* ========== FOOTER - ORANGE GRADIENT ========== */
        .footer {
            background: var(--gradient-footer);
            padding: 70px 0 30px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .footer-brand img {
            height: 100px;
            margin-bottom: 25px;
        }

        .footer-brand p {
            color: #fff;
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .footer-social a:hover {
            background: var(--color-white);
            color: var(--color-button);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            color: var(--color-white);
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 15px;
        }

        .footer-column a {
            color: #fff;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .footer-column a:hover {
            color: var(--color-white);
            padding-left: 8px;
            text-shadow: 0 0 10px rgba(255,255,255,0.5);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            margin-top: 50px;
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }

        /* ========== WHATSAPP FLOAT BUTTON ========== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            font-size: 2.2rem;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: var(--transition);
            animation: pulse-whatsapp 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background: #128C7E;
        }

        @keyframes pulse-whatsapp {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
            70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .transfers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--color-primary);
                flex-direction: column;
                padding: 20px;
                gap: 10px;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
            
            .tours-grid {
                grid-template-columns: 1fr;
            }
            
            .transfers-grid {
                grid-template-columns: 1fr;
            }
            
            .why-grid {
                grid-template-columns: 1fr;
            }
            
            .policies-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-social {
                justify-content: center;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .tour-includes ul {
                grid-template-columns: 1fr;
            }
            
            .why-stats {
                gap: 30px;
            }
            
            .transfers-features-box {
                gap: 25px;
            }
            
            .video-banner {
                height: 400px;
            }
            
            .video-banner-content h2 {
                font-size: 2rem;
            }
            
            .video-banner-content p {
                font-size: 1rem;
            }
            
            .about-title,
            .why-title,
            .section-header h2,
            .contact-info h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            
            .experience-box {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 20px;
            }
            
            .video-banner {
                 width: 100%;
    aspect-ratio: 16 / 9; /* Fuerza el formato horizontal de laptop */
    object-fit: cover;    /* Evita que el video se estire o deje franjas negras */
            }
            
            .video-banner-content h2 {
                font-size: 1.6rem;
            }
            
            .play-btn {
                width: 60px;
                height: 60px;
            }
            
            .play-btn i {
                font-size: 1.5rem;
            }
        }








        /* ========== VIDEO BANNER SECTION - FULLY RESPONSIVE ========== */
.video-banner {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    min-height: 400px;
    max-height: 1100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}



.video-banner .video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover; /* Clave para responsividad */
}

/* Fallback para navegadores antiguos */
@supports not (object-fit: cover) {
    .video-banner .video-background {
        width: 100%;
        height: auto;
    }
}

.video-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.video-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--color-white);
    width: 90%;
    max-width: 900px;
    padding: 20px;
}

.video-banner-content .small-text {
    font-size: clamp(0.75rem, 2vw, 1rem);
    letter-spacing: clamp(2px, 0.5vw, 4px);
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 500;
}

.video-banner-content h2 {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.video-banner-content h2 span {
    color: #FFD700;
}

.video-banner-content p {
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    max-width: 650px;
    margin: 0 auto 25px;
    opacity: 0.95;
    line-height: 1.7;
}

.video-banner-content .btn-primary {
    background: var(--gradient-button);
    padding: clamp(12px, 2vw, 16px) clamp(25px, 4vw, 45px);
    font-size: clamp(0.85rem, 2vw, 1.1rem);
}

.video-banner-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 119, 0, 0.5);
}

/* ========== RESPONSIVE VIDEO - MOBILE ========== */
@media (max-width: 768px) {
    .video-banner {
        min-height: 350px;
        padding-bottom: 75%; /* Más alto en móvil */
    }
    
    .video-banner .video-background {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .video-banner-content {
        width: 95%;
        padding: 15px;
    }
    
    .video-banner-content .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .video-banner {
        min-height: 300px;
        padding-bottom: 100%; /* Aún más alto en móviles pequeños */
    }
    
    .video-banner-content h2 {
        line-height: 1.3;
    }
    
    .video-banner-content p {
        display: none; /* Ocultar descripción en móviles muy pequeños */
    }
    
    .video-banner-content .small-text {
        margin-bottom: 10px;
    }
}

/* Landscape mode on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .video-banner {
        min-height: 280px;
        padding-bottom: 45%;
    }
}

/* Nueva clase para el contenedor padre */
.btn-center-container {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Alineación vertical */
    width: 100%;            /* Ocupa todo el ancho para poder centrar */
    margin-top: 50px;       /* El margen superior que pediste */
    padding: 10px 0;
}

/* Ajuste para que el botón se porte bien */
.btn-center-container .btn-primary {
    display: inline-flex;    /* Mantiene tu estilo original de icono al lado del texto */
    min-width: fit-content;  /* Evita que se deforme */
    text-decoration: none;
}





/* Estilos para los botones que no funcionan */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none !important; /* Quita el subrayado azul */
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 10; /* Asegura que estén por encima de cualquier capa invisible */
}

.btn-primary {
  color: white !important;
}

.btn-secondary {
  background-color: #ffffff;
  color: #1e3a5f !important;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Efectos de movimiento al pasar el mouse */
.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

/* Ajuste para que los iconos se vean bien */
.btn-primary i, .btn-secondary i {
  font-size: 1.2rem;
}