/* 
   South Indian Chauffeur - Premium Tour Operations
   Design System & Styling
*/

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

:root {
    /* Color System */
    --primary: #0A3C36;
    --primary-rgb: 10, 60, 54;
    --primary-light: #16534C;
    --secondary: #7E2522;
    --secondary-rgb: 126, 37, 34;
    --accent: #C5A059;
    --accent-rgb: 197, 160, 89;
    --accent-dark: #A6803C;
    --bg-cream: #FAF7F2;
    --bg-sand: #F2ECE1;
    --bg-dark: #072521;
    --text-dark: #1A2E2B;
    --text-muted: #5A6E6A;
    --text-light: #EBF2F0;
    --white: #ffffff;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(10, 60, 54, 0.04);
    --shadow-md: 0 8px 24px rgba(10, 60, 54, 0.08);
    --shadow-lg: 0 16px 40px rgba(10, 60, 54, 0.12);

    /* Borders & Radius */
    --border-color: rgba(10, 60, 54, 0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-round: 50px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-round);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(10, 60, 54, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 60, 54, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(126, 37, 34, 0.2);
}

.btn-secondary:hover {
    background-color: #942E2A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 37, 34, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(197, 160, 89, 0.25);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Common Layout Elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
    position: relative;
}

.section-bg-sand {
    background-color: var(--bg-sand);
}

.section-bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-bg-dark h2,
.section-bg-dark h3 {
    color: var(--white);
}

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

.section-header .subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: var(--radius-sm);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.section-bg-dark .section-header p {
    color: rgba(235, 242, 240, 0.7);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 15px 0;
}

/* Transparent State (Over Dark slide or Dark breadcrumb section) */
header:not(.scrolled):not(.scrolled-dark) .logo-title {
    color: var(--white);
}

header:not(.scrolled):not(.scrolled-dark) .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

header:not(.scrolled):not(.scrolled-dark) .nav-toggle {
    color: var(--white);
}

header:not(.scrolled):not(.scrolled-dark) .btn-outline {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

header:not(.scrolled):not(.scrolled-dark) .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Scrolled State (Home page - Cream Bg) */
header.scrolled {
    background-color: rgba(250, 247, 242, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    border-bottom: 1px solid rgba(10, 60, 54, 0.05);
}

header.scrolled .logo-title {
    color: var(--primary);
}

header.scrolled .nav-link {
    color: var(--primary);
}

header.scrolled .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

header.scrolled .btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Scrolled State (Sub Pages - Dark Green Bg) */
header.scrolled-dark {
    background-color: rgba(7, 37, 33, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled-dark .logo-title {
    color: var(--white);
}

header.scrolled-dark .nav-link {
    color: var(--white);
}

header.scrolled-dark .btn-outline {
    border-color: var(--accent);
    color: var(--white);
}

header.scrolled-dark .btn-outline:hover {
    background-color: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

header.scrolled-dark .nav-toggle {
    color: var(--white);
}

/* Header Layout with Grid */
header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    /* logo | nav | CTA */
    align-items: center;
    padding: 15px 20px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    /* keeps nav centered */
    gap: 20px;
    /* spacing between nav links */
}




.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    height: 52px;
    width: auto;
    border-radius: 4px;
    transition: var(--transition-normal);
}

header.scrolled .logo-img,
header.scrolled-dark .logo-img {
    height: 48px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.logo-tagline {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
    /* Prevent page link titles like "Tamil Nadu" from wrapping */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-normal);
}

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

.nav-link.active {
    color: var(--accent) !important;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    /* spacing between phone and button */
    padding-left: 40px;
    /* pushes CTA away from nav */
    flex-shrink: 0;
}


.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Breadcrumb Navigation */
.breadcrumb-section {
    background-color: var(--bg-dark);
    padding: 120px 0 60px 0;
    color: var(--white);
    background-image: linear-gradient(rgba(7, 37, 33, 0.8), rgba(7, 37, 33, 0.95)), url('https://images.unsplash.com/photo-1593693397690-362cb9666fc2?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.breadcrumb-section h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 10px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: var(--accent);
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 37, 33, 0.7) 0%, rgba(7, 37, 33, 0.4) 60%, rgba(7, 37, 33, 0.85) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
    align-items: center;
    width: 100%;
    padding-top: 80px;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(197, 160, 89, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: var(--radius-round);
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 550px;
}

/* Floating Booking Widget */
.booking-widget {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    color: var(--text-dark);
    border: 1px solid rgba(10, 60, 54, 0.05);
}

.booking-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booking-form {
    display: grid;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 6px;
    position: relative;
}

.form-group label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background-color: var(--bg-cream);
    border: 1px solid rgba(10, 60, 54, 0.15);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

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

.booking-widget .btn {
    margin-top: 10px;
    width: 100%;
}

/* Grid Layouts & Cards */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Feature Cards (Why Choose Us) */
.feature-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: var(--transition-normal);
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.2);
}

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

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(10, 60, 54, 0.05);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 1.6rem;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* State Cards (Destinations) */
.state-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-slow);
}

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

.state-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.state-badge-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-round);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.state-content {
    padding: 30px;
}

.state-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.state-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.state-destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.dest-tag {
    background-color: var(--bg-sand);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Service Card (Custom Design) */
.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

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

.service-card-img {
    height: 200px;
    overflow: hidden;
}

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

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

.service-card-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card-info h3 i {
    color: var(--accent);
    font-size: 1.2rem;
}

.service-card-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Fleet Section Details */
.fleet-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.fleet-tab-btn {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: var(--radius-round);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--primary);
}

.fleet-tab-btn:hover {
    border-color: var(--primary);
    background-color: rgba(10, 60, 54, 0.02);
}

.fleet-tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(10, 60, 54, 0.2);
}

.fleet-content-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.fleet-content-pane.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.fleet-img-wrapper {
    background-color: var(--bg-sand);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    position: relative;
    height: 350px;
}

.fleet-img-wrapper img {
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
}

.fleet-info-wrapper h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.fleet-sub {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: block;
}

.fleet-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.spec-text {
    font-size: 0.95rem;
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.spec-value {
    font-weight: 700;
    color: var(--primary);
}

/* Destination Subpage Styling */
.destinations-hero {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 140px 0 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.destinations-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 37, 33, 0.8) 0%, rgba(7, 37, 33, 0.95) 100%);
}

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

.dest-detail-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 400px 1fr;
    margin-bottom: 40px;
    transition: var(--transition-normal);
}

.dest-detail-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.2);
}

.dest-detail-img {
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

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

.dest-detail-card:hover .dest-detail-img img {
    transform: scale(1.05);
}

.dest-detail-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dest-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.dest-detail-meta {
    font-size: 0.85rem;
    color: var(--accent-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dest-detail-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.dest-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.highlight-tag {
    background-color: rgba(10, 60, 54, 0.05);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Tour Itineraries (State Pages) */
.itinerary-section {
    background-color: var(--bg-sand);
    padding: 90px 0;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.itinerary-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.itinerary-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

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

.itinerary-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 24px 30px;
    position: relative;
}

.itinerary-duration {
    background-color: var(--accent);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-round);
    font-size: 0.8rem;
    font-weight: 700;
    position: absolute;
    right: 30px;
    top: 24px;
    text-transform: uppercase;
}

.itinerary-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-top: 10px;
}

.itinerary-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.itinerary-route {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.itinerary-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.step-day {
    display: flex;
    gap: 15px;
}

.day-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    min-width: 45px;
}

.day-desc h4 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.day-desc p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Cruise Excursions Feature */
.cruise-highlight {
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    padding: 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cruise-highlight h2,
.cruise-highlight h3 {
    color: var(--white);
}

.cruise-highlight::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(197, 160, 89, 0.05);
    border-radius: 50%;
}

.cruise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cruise-features {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.cruise-feature-item {
    display: flex;
    gap: 15px;
}

.cruise-feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cruise-feature-text h4 {
    color: var(--white);
    margin-bottom: 4px;
}

.cruise-feature-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Contact Page Grid & Styling */
.contact-layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-panel {
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contact-info-list {
    display: grid;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-details h4 {
    color: var(--white);
    margin-bottom: 6px;
    font-size: 1rem;
}

.contact-info-details p,
.contact-info-details a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-info-details a:hover {
    color: var(--accent);
}

.whatsapp-card-callout {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 40px;
    text-align: center;
}

.whatsapp-card-callout i {
    font-size: 2.2rem;
    color: #25D366;
    margin-bottom: 12px;
    display: block;
}

.whatsapp-card-callout h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.whatsapp-card-callout p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

/* Contact Form Card */
.contact-form-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-form-card .subtitle-form {
    color: var(--text-muted);
    margin-bottom: 30px;
    display: block;
}

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

.contact-form-card textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-card .btn {
    width: 100%;
}

/* FAQ Accordion Styling */
.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0 auto;
    display: grid;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-header {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--white);
    user-select: none;
    transition: var(--transition-fast);
}

.faq-header:hover {
    background-color: rgba(10, 60, 54, 0.01);
}

.faq-question {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

.faq-icon-toggle {
    font-size: 1rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-large);
    background-color: var(--white);
}

.faq-body-content {
    padding: 0 30px 24px 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-header {
    background-color: rgba(10, 60, 54, 0.02);
}

.faq-item.active .faq-icon-toggle {
    transform: rotate(180deg);
}

.faq-item.active .faq-body {
    max-height: 1000px;
}

/* Footer Styling */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px 0;
    border-top: 3px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent);
}

.footer-about p {
    color: rgba(235, 242, 240, 0.7);
    font-size: 0.95rem;
    margin-top: 20px;
    margin-bottom: 25px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}

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

.footer-links {
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: rgba(235, 242, 240, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: var(--accent);
    opacity: 0;
    transition: var(--transition-fast);
    margin-left: -12px;
}

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

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-info {
    display: grid;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(235, 242, 240, 0.7);
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 4px;
}

.footer-contact-item a {
    color: rgba(235, 242, 240, 0.7);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(235, 242, 240, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Responsiveness for Small Desktops */
@media (max-width: 1200px) {
    .logo-img {
        height: 44px;
    }

    header.scrolled .logo-img,
    header.scrolled-dark .logo-img {
        height: 36px;
    }

    .logo-title {
        font-size: 1.05rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .header-cta .btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        padding-top: 100px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content p {
        margin: 0 auto 30px auto;
    }

    .booking-widget {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .itinerary-grid,
    .itinerary-grid-2col {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .dest-detail-card {
        grid-template-columns: 1fr;
    }

    .dest-detail-img {
        height: 250px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .fleet-content-pane.active {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fleet-img-wrapper {
        height: 250px;
    }

    .cruise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-cream);
        flex-direction: column;
        padding: 40px 20px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    header.scrolled-dark .nav-menu {
        background-color: var(--bg-dark);
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .header-cta .btn {
        display: none;
    }
}

@media (max-width: 480px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

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

    .contact-form-card {
        padding: 30px 20px;
    }

    .fleet-tabs {
        flex-wrap: wrap;
    }

    @media (max-width: 768px) {
        header .container {
            grid-template-columns: 1fr;
            /* stack vertically */
            gap: 15px;
            text-align: center;
        }

        .nav-menu {
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .header-cta {
            justify-content: center;
            padding-left: 0;
            /* reset spacing */
        }
    }


}