/* ========================================
   Travel C Sri Lanka - Main Stylesheet
   Modern Travel Website with Teal & Gold
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    /* Color Palette */
    --teal-primary: #0d9488;
    --teal-dark: #0f766e;
    --teal-light: #14b8a6;
    --teal-50: #f0fdfa;
    --gold-primary: #d4a574;
    --gold-dark: #c4956a;
    --gold-light: #e4b584;
    --gold-50: #fdf8f3;

    /* Neutrals */
    --dark: #1e293b;
    --dark-light: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --white: #ffffff;

    /* Gradients */
    --gradient-teal: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13, 148, 136, 0.9) 0%, rgba(15, 118, 110, 0.95) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 30px rgba(212, 165, 116, 0.3);
    --shadow-teal: 0 10px 30px rgba(13, 148, 136, 0.3);

    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-transform: none;
}

.btn-primary {
    background: var(--gradient-teal);
    color: var(--white);
    box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--teal-primary);
    border: 2px solid var(--teal-primary);
}

.btn-secondary:hover {
    background: var(--teal-primary);
    color: var(--white);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0rem;
}

/* Logo image only (since logo has text) */
.logo-image {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

/* Hide scrolled logo by default on landing page */
.logo-image-scrolled {
    display: none;
}

/* Show landing logo only when not scrolled */
.navbar:not(.scrolled) .logo-image-landing {
    display: block;
}

.navbar:not(.scrolled) .logo-image-scrolled {
    display: none;
}

/* Show scrolled logo only when scrolled */
.navbar.scrolled .logo-image-landing {
    display: none;
}

.navbar.scrolled .logo-image-scrolled {
    display: block;
}

.navbar.scrolled .logo-image {
    height: 60px;
}

/* Hide text part of logo if using full logo image */
.logo-text {
    display: none;
}

.navbar:not(.scrolled) .logo {
    color: var(--white);
}

.navbar.scrolled .logo {
    color: var(--teal-primary);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    overflow: hidden;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.navbar:not(.scrolled) .nav-links a {
    color: var(--white);
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Book Now Button - Larger with white text */
.nav-btn {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--gradient-gold);
    color: var(--white) !important;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
    text-transform: none;
    letter-spacing: 0;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.5);
}

.nav-btn::after {
    display: none !important;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.navbar.scrolled .mobile-nav-toggle span {
    background: var(--dark);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 122, 120, 0.5) 0%, rgba(22, 66, 91, 0.6) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero .btn-group {
    justify-content: center;
}

/* Floating decorations */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-decoration:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.hero-decoration:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: -50px;
    animation-delay: 1s;
}

.hero-decoration:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Page Hero (for sub-pages) */
.page-hero {
    padding: 10rem 0 5rem;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SECTIONS
   ======================================== */

section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    background: var(--teal-50);
    color: var(--teal-primary);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: var(--light);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-image-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--gradient-gold);
    border-radius: var(--radius-xl);
    z-index: -1;
    top: -20px;
    right: -20px;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content h2 span {
    color: var(--teal-primary);
}

.about-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-primary);
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 500;
    color: var(--dark);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--teal-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--teal-primary);
    font-size: 1.75rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-teal);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* ========================================
   DESTINATIONS SECTION - NEW DESIGN
   ======================================== */

.destinations-section {
    background: var(--white);
    padding: 5rem 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.destination-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.destination-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.destination-card h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.destination-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 3rem;
    font-weight: 700;
}

.destinations-note {
    text-align: center;
    margin-top: 2.5rem;
}

.destinations-note p {
    margin: 0 0 1rem;
    color: var(--gray);
    font-size: 1.0625rem;
}

/* ========================================
   GALLERY/CAROUSEL SECTION
   ======================================== */

.gallery-section {
    padding: 5rem 0;
    background: var(--light);
    overflow: hidden;
}

.gallery-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-item-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-teal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
}

.gallery-item-placeholder span {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.3;
}

.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: var(--white);
    font-weight: 500;
}

/* Large Gallery for Homepage */
.gallery-section.large .gallery-item {
    width: 500px;
    height: 380px;
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-card {
        height: 220px;
    }

    .gallery-item {
        width: 300px;
        height: 220px;
    }

    .gallery-section.large .gallery-item {
        width: 350px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        height: 200px;
    }
}


/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light);
}

.why-us-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--teal-light);
}

.why-us-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-teal);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.why-us-content h4 {
    margin-bottom: 0.25rem;
}

.why-us-content p {
    margin: 0;
    font-size: 0.9375rem;
}

/* ========================================
   FLEET/VEHICLES SECTION
   ======================================== */

.fleet-section {
    background: var(--dark);
    color: var(--white);
}

.fleet-section .section-header h2 {
    color: var(--white);
}

.fleet-section .section-header p {
    color: var(--gray-light);
}

.fleet-section .section-badge {
    background: rgba(212, 165, 116, 0.2);
    color: var(--gold-light);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.fleet-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.fleet-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.fleet-card-image {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.fleet-card h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.fleet-card p {
    color: var(--gray-light);
    font-size: 0.875rem;
    margin: 0;
}

.fleet-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Fleet Page Specific */
.fleet-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.fleet-page-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light);
}

.fleet-page-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.fleet-page-image {
    height: 200px;
    background: var(--gradient-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

.fleet-page-content {
    padding: 2rem;
}

.fleet-page-content h3 {
    margin-bottom: 0.5rem;
}

.fleet-page-badge {
    display: inline-block;
    background: var(--gold-50);
    color: var(--gold-dark);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.fleet-page-content p {
    margin-bottom: 1.5rem;
}

.fleet-page-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fleet-page-feature {
    background: var(--teal-50);
    color: var(--teal-dark);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
}

.fleet-tip {
    background: var(--teal-50);
    border: 1px solid var(--teal-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.fleet-tip h3 {
    color: var(--teal-dark);
    margin-bottom: 1rem;
}

.fleet-tip p {
    color: var(--teal-dark);
    margin-bottom: 1.5rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: var(--gradient-teal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-group {
    justify-content: center;
}

/* ========================================
   SERVICES PAGE SPECIFIC
   ======================================== */

.service-detail {
    padding: var(--section-padding);
}

.service-detail:nth-child(even) {
    background: var(--light);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid>* {
    direction: ltr;
}

.service-detail-content h2 {
    margin-bottom: 1.5rem;
}

.service-detail-content h2 span {
    color: var(--teal-primary);
}

.service-detail-content>p {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

.service-list {
    margin-bottom: 2rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light);
}

.service-detail:nth-child(even) .service-list li {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list-icon {
    width: 28px;
    height: 28px;
    background: var(--teal-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-primary);
    flex-shrink: 0;
}

.service-list span {
    font-weight: 500;
    color: var(--dark);
}

.service-detail-image {
    position: relative;
}

.service-detail-image-wrapper {
    background: transparent;
    border-radius: var(--radius-xl);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    overflow: hidden;
}

.service-detail-image-wrapper img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.service-detail-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
}

/* How to Book Section */
.booking-steps {
    padding: var(--section-padding);
    background: var(--dark);
}

.booking-steps .section-header h2 {
    color: var(--white);
}

.booking-steps .section-header p {
    color: var(--gray-light);
}

.booking-steps .section-badge {
    background: rgba(212, 165, 116, 0.2);
    color: var(--gold-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-card h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--gray-light);
    margin: 0;
    font-size: 0.9375rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info>p {
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--teal-50);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-teal);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-method.whatsapp .contact-method-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-method-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-method-content p {
    margin: 0;
    font-size: 0.9375rem;
}

.operating-area {
    background: var(--gold-50);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.operating-area h4 {
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.operating-area p {
    margin: 0;
    color: var(--gold-dark);
    font-size: 0.9375rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light);
}

.contact-form-wrapper h3 {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper>p {
    margin-bottom: 2rem;
    color: var(--gray);
}

.contact-form {
    display: grid;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--light);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.0625rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand .logo-image {
    height: 70px;
    width: auto;
    filter: brightness(1.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--teal-primary);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item span {
    color: var(--gray-light);
    font-size: 0.9375rem;
}

.footer-contact-item svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

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

.footer-bottom p {
    margin: 0;
    color: var(--gray-light);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--gray-light);
    font-size: 0.875rem;
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {

    .about-grid,
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-detail:nth-child(even) .service-detail-grid {
        direction: ltr;
    }

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

    .fleet-grid,
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--dark) !important;
        font-size: 1.125rem;
        padding: 0.75rem 0;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .why-us-grid,
    .fleet-grid,
    .destinations-grid,
    .fleet-page-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

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

    .about-image-decoration {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .page-hero {
        padding: 8rem 0 3rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .service-card,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.text-teal {
    color: var(--teal-primary);
}

.text-gold {
    color: var(--gold-primary);
}

.bg-light {
    background: var(--light);
}

.bg-dark {
    background: var(--dark);
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* ========================================
   TOUR PACKAGES SECTION - Premium Modern Design
   ======================================== */

.packages-section {
    background: linear-gradient(180deg, var(--light) 0%, #e8f5f4 100%);
    padding: 5rem 0;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    position: relative;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--teal-primary) 0%, var(--gold-primary) 100%);
}

.package-card:hover {
    box-shadow: 0 25px 60px rgba(13, 148, 136, 0.2);
    transform: translateY(-10px);
}

.package-header {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #14b8a6 100%);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.package-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

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

.package-icon {
    font-size: 1.5rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.package-title-info {
    flex: 1;
    min-width: 250px;
    position: relative;
    z-index: 1;
}

.package-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 0.4rem 1.25rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.package-badge-gold {
    background: linear-gradient(135deg, var(--gold-primary) 0%, #e6aa5c 100%);
    color: var(--dark);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.package-badge-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.package-badge-luxury {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.package-header h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.package-best-for {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

.package-duration {
    background: var(--white);
    color: var(--teal-primary);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.duration-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.duration-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray);
    letter-spacing: 1px;
}

.package-content {
    padding: 2.5rem;
}

.package-highlights {
    margin-bottom: 2.5rem;
}

.package-highlights h4,
.package-itinerary h4 {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-highlights h4::before,
.package-itinerary h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--teal-primary) 0%, var(--gold-primary) 100%);
    border-radius: 2px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.875rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 100%);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
    border: 1px solid rgba(13, 148, 136, 0.08);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: linear-gradient(135deg, #ccfbf1 0%, #f0fdfa 100%);
    transform: translateX(3px);
    border-color: rgba(13, 148, 136, 0.15);
}

.highlight-check {
    font-size: 0.7rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal-primary) 0%, #14b8a6 100%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

.package-itinerary {
    margin-bottom: 2rem;
}

.itinerary-timeline {
    display: grid;
    gap: 0.625rem;
}

.itinerary-day {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--light);
    transition: all 0.3s ease;
    position: relative;
}

.itinerary-day::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--teal-primary) 0%, var(--gold-primary) 100%);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.itinerary-day:hover {
    background: #fafafa;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.itinerary-day:hover::before {
    height: 70%;
}

.day-number {
    background: var(--teal-primary);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    min-width: 60px;
    text-align: center;
}

.day-plan {
    color: var(--dark);
    font-size: 0.95rem;
}

.package-includes {
    background: var(--gold-50);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--gold-primary);
}

.package-includes p {
    margin: 0;
    color: var(--dark);
    font-size: 0.95rem;
}

.package-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ========================================
   EXTRA ADD-ON OPTIONS SECTION
   ======================================== */

.addons-section {
    background: var(--white);
    padding: 4rem 0;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.addon-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
}

.addon-card:hover {
    border-color: var(--teal-primary);
    background: var(--teal-50);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.addon-card-wide {
    grid-column: 1 / -1;
}

.addon-checkbox {
    width: 40px;
    height: 40px;
    background: var(--teal-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.addon-card:hover .addon-checkbox {
    background: var(--teal-primary);
}

.addon-content h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.addon-content p {
    color: var(--gray);
    font-size: 0.875rem;
    margin: 0;
}

/* ========================================
   CLEAN PACKAGE CARD GRID - Modern Style
   ======================================== */

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pkg-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pkg-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.pkg-card:hover .pkg-image img {
    transform: scale(1.08);
}

.pkg-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--teal-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pkg-tag-gold {
    background: linear-gradient(135deg, var(--gold-primary) 0%, #e6aa5c 100%);
    color: var(--dark);
}

.pkg-tag-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pkg-tag-luxury {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.pkg-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pkg-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.pkg-desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pkg-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pkg-highlights li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--dark);
}

.pkg-highlights li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--teal-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.pkg-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--light);
}

.pkg-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pkg-duration {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--teal-primary);
}

.pkg-type {
    font-size: 0.8rem;
    color: var(--gray);
}

.pkg-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--teal-primary);
    color: white;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pkg-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

/* Addons Section - New Style */
.addons-section {
    background: var(--light);
    padding: 5rem 0;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.addon-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.addon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--teal-primary);
}

.addon-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal-50) 0%, #ccfbf1 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--teal-primary);
}

.addon-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.addon-item p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* ========================================
   MOBILE RESPONSIVE - Package Cards
   ======================================== */

@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pkg-image {
        height: 180px;
    }

    .pkg-body {
        padding: 1.25rem;
    }

    .pkg-title {
        font-size: 1.125rem;
    }

    .pkg-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .pkg-meta {
        flex-direction: row;
        justify-content: space-between;
    }

    .pkg-btn {
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .addon-item {
        padding: 1.25rem 1rem;
    }

    .addon-icon {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ENHANCED VEHICLE CARDS
   ======================================== */

.vehicle-enhanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.vehicle-enhanced-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--light);
}

.vehicle-enhanced-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vehicle-enhanced-image {
    height: 200px;
    background: var(--gradient-teal);
    position: relative;
    overflow: hidden;
}

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

.vehicle-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vehicle-badge {
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-ac {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: var(--white);
}

.badge-non-ac {
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
}

.badge-popular {
    background: var(--gold-primary);
    color: var(--dark);
}

.vehicle-enhanced-content {
    padding: 1.5rem;
}

.vehicle-enhanced-content h3 {
    color: var(--dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.vehicle-enhanced-content>p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.vehicle-spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--light);
    border-radius: var(--radius);
}

.vehicle-spec-icon {
    width: 28px;
    height: 28px;
    background: var(--teal-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-primary);
    font-size: 0.875rem;
}

.vehicle-spec-text {
    font-size: 0.8rem;
}

.vehicle-spec-text span {
    display: block;
    color: var(--gray);
    font-size: 0.7rem;
}

.vehicle-spec-text strong {
    color: var(--dark);
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.vehicle-feature-tag {
    padding: 0.35rem 0.75rem;
    background: var(--teal-50);
    color: var(--teal-primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.vehicle-enhanced-btn {
    width: 100%;
    justify-content: center;
}

/* Responsive for packages and vehicles */
@media (max-width: 768px) {
    .package-header {
        flex-direction: column;
        text-align: center;
    }

    .package-duration {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .duration-number {
        font-size: 1.5rem;
    }

    .itinerary-day {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-specs {
        grid-template-columns: 1fr;
    }
}