:root {
    --bg: #FFFEF8;
    --bg-alt: #FFF9EB;
    --fg: #2D3142;
    --fg-muted: #5C6378;
    --light-blue: #A8D8EA;
    --light-blue-deep: #7EC8E3;
    --light-yellow: #FFF3B0;
    --light-yellow-deep: #FFE066;
    --light-orange: #FFD4A3;
    --light-orange-deep: #FFB366;
    --accent: #FF8C42;
    --card: #FFFFFF;
    --border: #E8E4DC;
    --shadow: rgba(45, 49, 66, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
   }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 56px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 10;
    line-height: 1;
    color: #FFFFFF;
}



h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 00;
    line-height: 1.2;
    color: #FFB366;
}

h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* Fix for mobile browser address bar */
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        min-height: 250px;
        height: 250px;
        margin-top: 72px; /* Start after the fixed header */
    }
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.carousel-slide.active img {
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(1.2rem, 3.5vw, 2rem);
    color: #FFFFFF;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
    text-shadow: 0 0 8px rgba(0,0,0,0.4), 0 0 20px rgba(0,0,0,0.2);
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--light-orange-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.15s forwards;
    opacity: 0;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.hero-tag:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.hero-actions .btn-outline {
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    background: transparent;
}

.hero-actions .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn {
        text-align: center;
    }
    .hero-tags {
        gap: 0.4rem;
    }
    .hero-tag {
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--fg-muted);
    max-width: 600px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Quick Booking Form */
.quick-booking {
    position: relative;
    z-index: 10;
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 10px 40px var(--shadow);
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--light-blue-deep);
    background: var(--card);
}

/* Services Section */
.section {
    padding: 0.5rem 1rem;
}

.section-one {
    padding: 0.5rem 1rem;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(0.75rem, 1.5vw, 1.5rem);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--fg);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--fg-muted);
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--light-blue), var(--light-yellow), var(--light-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon.blue {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-blue-deep) 100%);
}

.service-icon.yellow {
    background: linear-gradient(135deg, var(--light-yellow) 0%, var(--light-yellow-deep) 100%);
}

.service-icon.orange {
    background: linear-gradient(135deg, var(--light-orange) 0%, var(--light-orange-deep) 100%);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--fg);
}

.service-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--fg);
}

.service-capacity {
    font-size: 0.85rem;
    color: var(--fg-muted);
    margin-bottom: 1rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.price-unit {
    font-size: 0.85rem;
    color: var(--fg-muted);
}

.service-features {
    list-style: none;
    margin-bottom: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--fg-muted);
    padding: 0.25rem 0;
}

.service-features li svg {
    width: 16px;
    height: 16px;
    color: var(--light-blue-deep);
}

.service-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-status.available {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.service-status.limited {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* Tariff Table Section */
.tariff-section {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.tariff-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    overflow-x: auto;
    box-shadow: 0 10px 40px var(--shadow);
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
}

.tariff-table th,
.tariff-table td {
    padding: 1rem 1.25rem;
    text-align: left;
}

.tariff-table thead {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-blue-deep) 100%);
}

.tariff-table th {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--fg);
}

.tariff-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.tariff-table tbody tr:hover {
    background: var(--bg-alt);
}

.tariff-table tbody tr:last-child {
    border-bottom: none;
}

.tariff-table td {
    font-size: 0.95rem;
}

.vehicle-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vehicle-icon-sm {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vehicle-icon-sm svg {
    width: 18px;
    height: 18px;
}

.price-cell {
    font-weight: 700;
    color: var(--accent);
}

/* Why Choose Us - Masonry Grid */
.masonry-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    grid-auto-rows: 150px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.masonry-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

.masonry-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    flex-shrink: 0;
}

.masonry-icon svg {
    width: 20px;
    height: 20px;
    color: var(--fg);
}

.masonry-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 0.2rem;
}

.masonry-desc {
    font-size: 0.75rem;
    color: var(--fg-muted);
    line-height: 1.3;
}

/* Sizes */
.mm-featured {
    grid-column: span 2;
    grid-row: span 2;
    padding: 1.5rem 1.5rem;
}

.mm-featured .masonry-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
}

.mm-featured .masonry-icon svg {
    width: 24px;
    height: 24px;
}

.mm-featured .masonry-title {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.mm-featured .masonry-desc {
    font-size: 0.85rem;
}

.mm-tall {
    grid-row: span 2;
}

.mm-short {
    grid-row: span 1;
}

@media (max-width: 992px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mm-featured {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .mm-featured, .mm-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-yellow) 50%, var(--light-orange) 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--fg);
    margin-bottom: 1rem;
}

.cta-desc {
    color: var(--fg-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--card);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fg);
    box-shadow: 0 5px 20px var(--shadow);
}

.cta-phone svg {
    color: var(--accent);
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}




/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}


/* --- POPULAR DESTINATIONS --- */
.section-paddings {
    margin: auto;
    padding: 0.5rem 1rem;
    align-items : safe center;
}

.text-center {
    text-align: center;
    color: #FFD4A3;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.dest-card.hidden {
    display: none;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (min-width: 576px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .destination-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dest-card {
    position: relative;
    height: 280px;
    background: #fffdf5; /* Sticky note / polaroid color */
    padding: 12px 12px 55px 12px; /* Space for image and bottom text */
    box-sizing: border-box;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e4dc;
    border-radius: 2px 2px 10px 2px; /* slight peel effect */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s, z-index 0s;
    overflow: visible; /* Allow pin to show */
}

/* The Pin */
.dest-card::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 35% 35%, var(--accent), #d35400); /* Orange pin */
    border-radius: 50%;
    box-shadow: 2px 4px 6px rgba(0,0,0,0.3), inset -2px -2px 4px rgba(0,0,0,0.2);
    z-index: 10;
}

/* Un-uniform rotation */
.dest-card:nth-child(even) { transform: rotate(2deg); }
.dest-card:nth-child(odd) { transform: rotate(-2deg); }
.dest-card:nth-child(3n) { transform: rotate(1deg); }
.dest-card:nth-child(4n) { transform: rotate(-3deg); }
.dest-card:nth-child(5n) { transform: rotate(3deg); }

/* Hover effect */
.dest-card:nth-child(n):hover {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 8px 15px 30px rgba(0,0,0,0.15);
    z-index: 20;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    display: block;
    transition: filter 0.3s;
}

.dest-card:hover img {
    filter: brightness(1.05); /* subtle brightness instead of zoom since polaroid rotates */
}

.dest-overlay {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    background: none; /* No gradient, let paper color show */
    padding: 10px 5px;
    text-align: center;
}

.dest-overlay h3 {
    color: var(--fg); /* Dark text for paper background */
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    text-shadow: none; /* Remove old text-shadow */
    font-family: 'Playfair Display', serif;
}

/* --- CUSTOM MODAL --- */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    animation: customFadeIn 0.3s ease;
}

.custom-modal-content {
    background-color: var(--bg);
    margin: 5% auto;
    padding: 20px;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 800px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.4s ease;
}

.custom-modal-close {
    color: var(--fg-muted);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    z-index: 10;
}

.custom-modal-close:hover {
    color: var(--accent);
}

.modal-body-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.modal-image-col {
    flex: 1;
    min-width: 300px;
}

.modal-image-col img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
}

.modal-info-col {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info-col h2 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 2rem;
}

.seo-content p {
    font-size: 0.95rem;
    color: var(--fg-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

@keyframes customFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/* ─── CT-style Sections ─── */
.ct-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto clamp(0.5rem, 1vw, 1rem);
    padding: 0 1rem;
}

.ct-section-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--fg);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.ct-scroll-arrows {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

.ct-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.ct-arrow:hover {
    background: var(--accent, #FF8C42);
    color: #fff;
    border-color: var(--accent, #FF8C42);
}

.ct-scroll-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ct-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}

.ct-scroll::-webkit-scrollbar {
    display: none;
}

.ct-card {
    flex: 0 0 calc(44% - 0.5rem);
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.ct-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow);
}

.ct-card:active {
    transform: scale(0.98);
}

.ct-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-alt);
}

.ct-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.ct-card:hover .ct-card-img-wrap img {
    transform: scale(1.06);
}

.ct-card-status {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    backdrop-filter: blur(2px);
}

.ct-card-status.available {
    background: rgba(76, 175, 80, 0.85);
}

.ct-card-status.limited {
    background: rgba(255, 152, 0, 0.85);
}

.ct-card-body {
    padding: 0.65rem 0.75rem 0.75rem;
}

.ct-card-body h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--fg);
    margin: 0 0 0.15rem;
    font-family: 'Source Sans 3', sans-serif;
}

.ct-card-body p {
    font-size: 0.75rem;
    color: var(--fg-muted);
    margin: 0 0 0.25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ct-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 0.15rem;
}

.ct-price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--fg-muted);
}

.ct-card-link {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.ct-card-link:hover {
    text-decoration: underline;
}

@media (min-width: 576px) {
    .ct-card {
        flex: 0 0 calc(33.333% - 0.667rem);
    }
}

@media (min-width: 992px) {
    .ct-card {
        flex: 0 0 calc(25% - 0.75rem);
    }
}

@media (min-width: 1280px) {
    .ct-card {
        flex: 0 0 calc(20% - 0.8rem);
    }
}

/* ─── Layout Container ─── */
.container1 {
    max-width: 1600px;
    /* Wider container to fit 8 columns */
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}




.fleet-image {
    width: 100%;
    border-radius: 0px 400px 400px 400px;
    overflow: hidden;
}


/* Horizontal Floating Contact Bar (bottom) */
.floating-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 9999;
}

.floating-contact-bar .contact-bar-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.floating-contact-bar .contact-bar-item.whatsapp {
    background-color: #25D366;
}

.floating-contact-bar .contact-bar-item.phone {
    background-color: #007bff;
}

.floating-contact-bar .contact-bar-item.enquiry {
    background-color: #6f42c1;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.floating-contact-bar .contact-bar-item:hover {
    opacity: 0.9;
    color: white;
}

.floating-contact-bar .contact-bar-item i {
    font-size: 22px;
}

/* Sticky booking bar above floating contact bar */
.sticky-booking-bar {
    display: none;
    position: fixed;
    bottom: 56px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 8px 16px 10px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    z-index: 9998;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.sticky-booking-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.sticky-booking-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 2px;
}
.sticky-booking-price {
    font-size: 0.85rem;
    color: var(--fg-muted);
}
.sticky-booking-price strong {
    font-size: 1.1rem;
    color: var(--fg);
}
.sticky-booking-btn {
    background: #f97316;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.sticky-booking-btn:hover {
    background: #e56200;
    color: #fff;
}

@media (max-width: 991px) {
    .sticky-booking-bar {
        display: none;
    }
}

/* Go to Top Button (right side) */
.go-to-top {
    display: none !important;
}

.go-to-top:hover {
    transform: scale(1.12);
    background-color: #e8620c;
}

@media (max-width: 768px) {
    .go-to-top {
        right: 10px;
        bottom: 70px;
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
}

/* Vertical Floating Social Bar (left side) */
.floating-social-bar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9998;
}

.floating-social-bar .social-bar-item {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}

.floating-social-bar .social-bar-item:hover {
    transform: scale(1.15);
    color: white;
}

.floating-social-bar .social-bar-item.facebook {
    background-color: #1877F2;
}

.floating-social-bar .social-bar-item.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.floating-social-bar .social-bar-item.twitter {
    background-color: #000;
}

.floating-social-bar .social-bar-item i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .floating-social-bar {
        left: 8px;
        gap: 8px;
    }
    .floating-social-bar .social-bar-item {
        width: 42px;
        height: 42px;
    }
    .floating-social-bar .social-bar-item i {
        font-size: 20px;
    }
}


.faq-section {
    margin: 100px auto;
    padding: 100px;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Accordion */
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #ffe0cc;
    transition: ease-in-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .faq-item:hover {
        border-color: #f97316;
    }

/* Question */
.faq-question {
    padding: 20px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Icon */
.faq-icon {
    font-size: 20px;
    transition: 0.3s;
    color: #f97316;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 14px;
    color: #555;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Active */
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active {
    border-color: #f97316;
    box-shadow: 0 8px 25px rgba(249,115,22,0.2);
}

/* Hidden items */
.faq-item.hidden {
    display: none;
}

/* Button */
.show-btn {
    display: block;
    margin: 25px auto 0;
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

    .show-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(249,115,22,0.3);
    }

/* Packages Grid - 4 Columns */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.package-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.package-image {
    overflow: hidden;
    height: 220px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-name {
    font-size: 1.25rem;
    color: var(--fg);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.package-desc {
    font-size: 0.9rem;
    color: var(--fg-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.package-body .btn {
    align-self: flex-start;
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* About Story Section - 2:1 Layout */
.about-story-section {
    background: var(--bg);
    padding: 0.5rem 1rem;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}

.about-story-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-story-main:hover {
    box-shadow: 0 15px 40px var(--shadow);
}

.about-story-image {
    overflow: hidden;
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: left;
    /*clip-path: inset(0 0 0 50%);*/
    object-position: left;
}

    .about-story-image img {
        width: 100%;
        height: 100%;
        border-radius: 0px 100px 100px 0px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.about-story-main:hover .about-story-image img {
    transform: scale(1.05);
}

.about-story-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-story-content h3 {
    font-size: 1.5rem;
    color: var(--fg);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.about-story-content p {
    font-size: 0.95rem;
    color: var(--fg-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-story-content .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.about-story-side {
    display: flex;
    flex-direction: column;
}

.about-story-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.about-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.about-story-card-image {
    overflow: hidden;
    height: 130px;
}

    .about-story-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        border-radius: 100px 0px 0px 100px;
    }

.about-story-card:hover .about-story-card-image img {
    transform: scale(1.05);
}

.about-story-card-body {
    padding: 1.5rem;
    text-align: center;
}

.about-story-card-body h4 {
    font-size: 1.2rem;
    color: var(--fg);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.about-story-card-body p {
    font-size: 0.9rem;
    color: var(--fg-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-story-main {
        grid-template-columns: 1fr;
    }

    .about-story-image {
        min-height: 250px;
    }

    .about-story-content {
        padding: 1.5rem;
    }
}

#amenities .container,
.testimonials-section .container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Amenities Section ===== */
.amenity-group {
    margin-bottom: 1.5rem;
}
.amenity-group:last-child {
    margin-bottom: 0;
}

.amenity-group-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.amenity-group-label i {
    font-size: 0.75rem;
}

.amenity-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    background: var(--card);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--fg);
    box-shadow: 0 1px 4px rgba(45, 49, 66, 0.06);
    transition: background 0.2s, box-shadow 0.2s;
}
.amenity-tag i {
    font-size: 0.75rem;
    color: var(--accent);
}
.amenity-tag:hover {
    background: var(--light-yellow);
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.15);
}

.modal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal-links a {
    text-decoration: none;
}

.vehicle-switch-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.vehicle-switch-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid #FF8C42;
    background: #fff3e0;
    color: #d35400;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.vehicle-switch-btn:hover {
    background: #FF8C42;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

