/* ================================
   V68 Adventures - Main Styles
   Adventure & Excitement Theme
   ================================ */

/* ================================
   CSS Variables - Brand Colors
   ================================ */
:root {
    /* Brand Colors */
    --navy: #234058;
    --navy-dark: #1a2f42;
    --navy-light: #3a5a7a;
    --gold: #e6a842;
    --gold-dark: #d49531;
    --gold-light: #f5b960;
    --orange: #d47f4b;
    --orange-dark: #c26a3a;
    --orange-light: #e69669;

    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-slow: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ================================
   Reset & Base Styles
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    background-color: #000;
    overflow: hidden;
    height: 100%;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: #000;
    overflow: hidden;
    height: 100%;
    margin: 0;
}

/* Full-page sections - stacked and fade in/out */
section {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 2;
    overflow-y: auto;
    overflow-x: hidden;
    background: transparent;
    padding: 100px 20px;
    box-sizing: border-box;
}

section > .container {
    width: 100%;
    max-width: var(--container-width);
    flex-shrink: 0;
}

/* Hero has transparent bg to show carousel */
section.hero {
    background: transparent;
    padding: 0;
    justify-content: center;
}

/* Active section is visible */
section.active-section {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 5 !important;
}

/* Force all specific sections to follow active-section rule */
section#hero,
section#about,
section#transport,
section#villas,
section#contact {
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

section#hero.active-section,
section#about.active-section,
section#transport.active-section,
section#villas.active-section,
section#contact.active-section {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 5 !important;
}

/* Sections scrollable */
section#about,
section#transport,
section#villas,
section#contact {
    overflow-y: auto;
    padding-top: 80px;
    padding-bottom: 40px;
    justify-content: center;
    align-items: center;
}

section#about .container,
section#transport .container,
section#villas .container,
section#contact .container {
    width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   Loading Screen with Van Animation
   ================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    position: relative;
}

.loading-road {
    width: 400px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 50px;
    position: relative;
    overflow: hidden;
}

.loading-road::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: var(--orange);
    animation: roadMove 2s linear infinite;
}

@keyframes roadMove {
    0% { left: -50px; }
    100% { left: 100%; }
}

.loading-van {
    width: 80px;
    height: 50px;
    background: var(--gold);
    border-radius: 8px 8px 4px 4px;
    position: relative;
    margin: 0 auto 30px;
    animation: vanDrive 3s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(230, 168, 66, 0.5);
}

.loading-van::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--navy);
    border-radius: 4px;
    top: -20px;
    left: 10px;
}

.loading-van::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    top: 5px;
    left: 15px;
    border-radius: 4px;
}

@keyframes vanDrive {
    0%, 100% {
        transform: translateX(-50px) rotate(-2deg);
    }
    50% {
        transform: translateX(50px) rotate(2deg);
    }
}

.loading-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: 0 auto 30px;
    opacity: 0;
    animation: logoFadeIn 1s ease 0.3s forwards, logoPulse 2s ease-in-out 1.3s infinite;
    border-radius: 20px;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes logoFadeIn {
    to {
        opacity: 1;
    }
}

.loading-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 3px;
    animation: pulse 2s ease-in-out infinite;
}

.loading-subtext {
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
    letter-spacing: 1px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(230, 168, 66, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    margin: 20px auto 0;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================
   Video Background (Fixed across ALL sections)
   ================================ */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: #000;
}

#scrollVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    pointer-events: none;
}

/* ================================
   Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    z-index: 1000;
    transition: all var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(35, 64, 88, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 60px;
}

.nav-logo {
    position: fixed;
    top: 10px;
    left: 30px;
    z-index: 1001;
}

.nav-logo img,
.nav-logo video {
    height: 150px;
    width: 150px;
    transition: transform var(--transition-fast);
    object-fit: contain;
}

.nav-logo img:hover,
.nav-logo video:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link-cta {
    padding: 10px 25px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 25px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 168, 66, 0.4);
}

/* Keep CTA button text visible when active */
.nav-link-cta.active {
    color: var(--navy) !important;
    background: var(--gold-light);
    box-shadow: 0 5px 15px rgba(230, 168, 66, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ================================
   Hero Section
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    text-align: center;
    color: var(--white);
    padding: 100px 20px;
    background: transparent !important;
    flex-direction: row;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 0.95;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 0.8s forwards;
    opacity: 0;
}

/* ================================
   Hero Elephant Push Animation
   ================================ */
.hero-elephant {
    position: absolute;
    left: -25vw;
    top: 50%;
    transform: translateY(-50%);
    width: 40vw;
    height: 40vw;
    max-width: 650px;
    max-height: 650px;
    min-width: 200px;
    min-height: 200px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: none;
    overflow: hidden;
}

.hero-elephant.pushing {
    animation: elephantWalkIn 3.5s linear forwards;
}

.hero-content {
    z-index: 5;
}

.hero-content.pushed {
    animation: contentPushed 3.5s linear forwards;
}

/* Both animations use viewport units - works same on all screen sizes */
@keyframes elephantWalkIn {
    0% {
        left: -25vw;
        transform: translateY(-50%);
        opacity: 1;
    }
    100% {
        left: 75vw;
        transform: translateY(-50%);
        opacity: 1;
    }
}

@keyframes contentPushed {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100vw);
        opacity: 1;
    }
}

/* ================================
   Hero Van + Text Layout (Van first, then text)
   ================================ */
.hero-content-van-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-van-inline {
    flex: 0 0 200px;
    height: 200px;
}

.hero-text-inline {
    flex: 0 1 auto;
}

.hero-title-inline {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease 0.2s forwards;
    opacity: 0;
    margin: 0;
    text-align: left;
    white-space: nowrap;
}

/* Responsive for van + text layout */
@media (max-width: 1200px) {
    .hero-title-inline {
        font-size: 4rem;
    }
    .hero-van-inline {
        flex: 0 0 160px;
        height: 160px;
    }
}

@media (max-width: 992px) {
    .hero-content-van-text {
        flex-direction: column;
        gap: 20px;
    }
    .hero-title-inline {
        font-size: 3rem;
        white-space: normal;
        text-align: center;
    }
    .hero-van-inline {
        flex: 0 0 180px;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .hero-title-inline {
        font-size: 2.2rem;
    }
    .hero-van-inline {
        flex: 0 0 140px;
        height: 140px;
    }
}

/* ================================
   Hero Split Layout (Van in Center) - Legacy
   ================================ */
.hero-content-split {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left,
.hero-right {
    flex: 1;
    text-align: center;
}

.hero-left {
    text-align: right;
}

.hero-right {
    text-align: left;
}

.hero-title-split {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease 0.2s forwards;
    opacity: 0;
    margin: 0;
}

.hero-center-van,
.hero-center-placeholder {
    flex: 0 0 400px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-center-van model-viewer {
    width: 100%;
    height: 100%;
    background: transparent !important;
    --poster-color: transparent;
    --progress-bar-color: transparent;
}

.hero-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 20px;
}

.hero-bottom .hero-subtitle {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-bottom .hero-buttons {
    animation: fadeIn 1s ease 0.8s forwards;
    opacity: 0;
}

/* Responsive for split hero */
@media (max-width: 1200px) {
    .hero-title-split {
        font-size: 3rem;
    }

    .hero-center-van {
        flex: 0 0 300px;
        height: 280px;
    }
}

@media (max-width: 992px) {
    .hero-content-split {
        flex-direction: column;
        gap: 10px;
    }

    .hero-left,
    .hero-right {
        text-align: center;
    }

    .hero-title-split {
        font-size: 2.8rem;
    }

    .hero-center-van {
        flex: 0 0 250px;
        height: 250px;
        order: -1;
    }
}

@media (max-width: 576px) {
    .hero-title-split {
        font-size: 2rem;
    }

    .hero-center-van {
        flex: 0 0 200px;
        height: 200px;
    }
}

/* ================================
   Hero Carousel
   ================================ */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(35, 64, 88, 0.7) 0%,
        rgba(26, 47, 66, 0.6) 50%,
        rgba(35, 64, 88, 0.7) 100%
    );
    z-index: 1;
}

/* Carousel Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.carousel-dot.active {
    background: var(--gold);
    border-color: var(--white);
    transform: scale(1.2);
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: rgba(230, 168, 66, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-prev {
        left: 15px;
    }

    .carousel-next {
        right: 15px;
    }

    .carousel-dots {
        bottom: 80px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    box-shadow: 0 5px 20px rgba(230, 168, 66, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(230, 168, 66, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-5px);
}

.btn-glow {
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(230, 168, 66, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(230, 168, 66, 0.6), 0 0 40px rgba(230, 168, 66, 0.4);
    }
}

.btn-large {
    padding: 14px 35px;
    font-size: 1rem;
}

/* Developer Credit */
.developer-credit {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.developer-credit p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.developer-credit a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 0;
        top: 8px;
    }
    50% {
        opacity: 1;
        top: 18px;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ================================
   Section Styles (sections are fixed for fade effect)
   ================================ */

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--navy);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 30px 0 15px;
    color: var(--gold);
}

/* ================================
   Services Preview Section
   ================================ */
.services-preview {
    background: transparent;
}

.services-preview .section-title {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-preview .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.75);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-card:hover {
    transform: translateY(-15px) rotateZ(2deg);
    box-shadow: 0 20px 60px rgba(230, 168, 66, 0.3);
    border-color: var(--gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateZ(360deg);
    box-shadow: 0 10px 30px rgba(230, 168, 66, 0.5);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    display: inline-block;
}

.service-link:hover {
    color: var(--orange);
    transform: translateX(5px);
}

/* ================================
   3D Van - Fixed Position with Section-Based Movement
   ================================ */
.elephant-3d-fixed {
    position: fixed;
    width: 350px;
    height: 350px;
    z-index: 1000;
    pointer-events: none;
    /* Smooth movement transition - using left/top only for consistent animation */
    transition: top 1.2s cubic-bezier(0.25, 0.1, 0.25, 1),
                left 1.2s cubic-bezier(0.25, 0.1, 0.25, 1),
                width 1s cubic-bezier(0.25, 0.1, 0.25, 1),
                height 1s cubic-bezier(0.25, 0.1, 0.25, 1),
                opacity 0.6s ease;
    /* Default position - center for hero */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Position classes - all use left/top for smooth movement */
.elephant-3d-fixed.pos-hero {
    top: 38%;
    left: 20%;
    width: 280px;
    height: 280px;
}

.elephant-3d-fixed.pos-services {
    top: 25%;
    left: 78%;
    width: 280px;
    height: 280px;
}

.elephant-3d-fixed.pos-about {
    top: 50%;
    left: 15%;
    width: 300px;
    height: 300px;
}

.elephant-3d-fixed.pos-transport {
    top: 40%;
    left: 82%;
    width: 320px;
    height: 320px;
}

.elephant-3d-fixed.pos-villas {
    top: 50%;
    left: 12%;
    width: 300px;
    height: 300px;
}

.elephant-3d-fixed.pos-contact {
    top: 70%;
    left: 80%;
    width: 250px;
    height: 250px;
}

.elephant-3d-fixed.pos-hidden {
    opacity: 0;
    pointer-events: none;
}

.elephant-3d-fixed model-viewer {
    width: 100%;
    height: 100%;
    background: transparent !important;
    --poster-color: transparent;
    --progress-bar-color: transparent;
    border: none;
    outline: none;
}

/* Responsive sizing for fixed van */
@media (max-width: 992px) {
    .elephant-3d-fixed {
        width: 250px;
        height: 250px;
    }

    .elephant-3d-fixed.pos-hero {
        width: 300px;
        height: 300px;
    }

    .elephant-3d-fixed.pos-services,
    .elephant-3d-fixed.pos-about,
    .elephant-3d-fixed.pos-transport,
    .elephant-3d-fixed.pos-villas,
    .elephant-3d-fixed.pos-contact {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .elephant-3d-fixed {
        width: 180px;
        height: 180px;
    }

    .elephant-3d-fixed.pos-hero {
        width: 220px;
        height: 220px;
    }

    .elephant-3d-fixed.pos-services,
    .elephant-3d-fixed.pos-about,
    .elephant-3d-fixed.pos-transport,
    .elephant-3d-fixed.pos-villas,
    .elephant-3d-fixed.pos-contact {
        top: 75%;
        left: 70%;
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .elephant-3d-fixed {
        width: 140px;
        height: 140px;
    }

    .elephant-3d-fixed.pos-hero {
        width: 180px;
        height: 180px;
        left: 50%;
    }

    .elephant-3d-fixed.pos-services,
    .elephant-3d-fixed.pos-about,
    .elephant-3d-fixed.pos-transport,
    .elephant-3d-fixed.pos-villas,
    .elephant-3d-fixed.pos-contact {
        top: 80%;
        left: 65%;
        width: 120px;
        height: 120px;
    }
}

/* ================================
   Why Choose Us Section
   ================================ */
.why-choose-us {
    background: linear-gradient(135deg, rgba(35, 64, 88, 0.15), rgba(26, 47, 66, 0.15));
    color: var(--white);
}

.why-choose-us .section-title {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-us .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(230, 168, 66, 0.3);
    border-color: var(--gold);
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.feature-item:hover .feature-number {
    opacity: 1;
    transform: scale(1.2);
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.feature-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
    background: transparent;
    text-align: center;
    padding: 120px 20px;
}

.cta-content {
    background: rgba(255, 255, 255, 0.75);
    padding: 60px 40px;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

/* ================================
   Scroll Animations
   ================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all var(--transition-slow);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll[data-delay="100"].animated {
    transition-delay: 0.1s;
}

.animate-on-scroll[data-delay="200"].animated {
    transition-delay: 0.2s;
}

.animate-on-scroll[data-delay="300"].animated {
    transition-delay: 0.3s;
}

.animate-on-scroll[data-delay="400"].animated {
    transition-delay: 0.4s;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: rgba(35, 64, 88, 0.95);
    color: var(--white);
    padding: 40px 0 20px;
    /* position: fixed is set earlier - don't override */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-5px) rotateZ(360deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-logo {
        height: 50px;
    }

    section#contact {
        padding-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .footer {
        padding: 20px 0 10px;
    }

    .footer-col p,
    .footer-col li {
        font-size: 0.85rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    section#contact {
        padding-bottom: 20px;
    }
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(35, 64, 88, 0.98);
        width: 100%;
        padding: 40px;
        gap: 20px;
        transition: right var(--transition-fast);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .loading-van {
        width: 60px;
        height: 40px;
    }

    .loading-road {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}


/* ================================
   Page Header Styles (for inner pages)
   ================================ */
.page-header {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, rgba(35, 64, 88, 0.50), rgba(26, 47, 66, 0.50));
    color: var(--white);
    text-align: center;
    position: relative;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* ================================
   Consistent Section Title Styling (All Pages)
   ================================ */
.our-story .section-title,
.mission-vision .section-title,
.our-values .section-title,
.why-us-detailed .section-title,
.our-fleet .section-title,
.transport-services .section-title,
.why-transport .section-title,
.villa-collection .section-title,
.villa-showcase .section-title,
.villa-amenities .section-title,
.why-villa .section-title,
.why-villas .section-title,
.contact-section .section-title,
.quick-contact .section-title {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.our-story .section-subtitle,
.mission-vision .section-subtitle,
.our-values .section-subtitle,
.why-us-detailed .section-subtitle,
.our-fleet .section-subtitle,
.transport-services .section-subtitle,
.why-transport .section-subtitle,
.villa-collection .section-subtitle,
.villa-showcase .section-subtitle,
.villa-amenities .section-subtitle,
.why-villa .section-subtitle,
.why-villas .section-subtitle,
.contact-section .section-subtitle,
.quick-contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: none;
}

/* ================================
   Our Story Section
   ================================ */
.our-story {
    padding: var(--section-padding);
    background: transparent;
}

.story-text {
    background: rgba(255, 255, 255, 0.75);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-text h2 {
    margin-bottom: 30px;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray);
    font-size: 1.1rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* ================================
   Mission & Vision Cards
   ================================ */
.mission-vision {
    padding: var(--section-padding);
    background: transparent;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.75);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-medium);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mv-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(230, 168, 66, 0.3);
    border-color: var(--gold);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.mv-card:hover .mv-icon {
    transform: rotateY(360deg) scale(1.2);
}

.mv-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

/* ================================
   Values Section
   ================================ */
.our-values {
    padding: var(--section-padding);
    background: transparent;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-item {
    background: rgba(255, 255, 255, 0.75);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.value-item:hover {
    transform: translateY(-10px) rotateZ(3deg);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(230, 168, 66, 0.4);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: all var(--transition-fast);
}

.value-item:hover .value-icon {
    transform: scale(1.3) rotateZ(-15deg);
}

.value-item h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.value-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* ================================
   Why Us Detailed Section
   ================================ */
.why-us-detailed {
    padding: var(--section-padding);
    background: transparent;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.why-us-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
}

.why-us-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(230, 168, 66, 0.3);
}

.why-us-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 10px;
    transition: all var(--transition-fast);
}

.why-us-item:hover .why-us-number {
    opacity: 1;
    transform: scale(1.2);
}

.why-us-item h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.why-us-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* ================================
   Responsive for About Page
   ================================ */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .story-image {
        height: 300px;
    }
}



/* ================================
   Transport Page Styles
   ================================ */
.our-fleet {
    padding: var(--section-padding);
    background: transparent;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 80px auto 0;
    max-width: 900px;
    width: 100%;
    position: relative;
}

/* 3D Model in Fleet Grid */
.fleet-3d-model {
    position: absolute;
    width: 320px;
    height: 320px;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transform: scale(0.5) translateY(50px);
    transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fleet-3d-model.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.fleet-3d-model model-viewer {
    width: 100%;
    height: 100%;
    background: transparent !important;
}

/* Mobile responsive for fleet 3D model */
@media (max-width: 768px) {
    .fleet-3d-model {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 576px) {
    .fleet-3d-model {
        width: 120px;
        height: 120px;
    }
}

/* Fleet card with active state for 3D model - COMPACT */
.fleet-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
    /* Ensure visible on desktop */
    opacity: 1;
    visibility: visible;
}

.fleet-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 40px rgba(230, 168, 66, 0.4);
    border-color: var(--gold);
}

.fleet-image {
    height: 85px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fleet-image svg {
    width: 70px;
    height: 70px;
    color: rgba(255, 255, 255, 0.3);
    transition: all var(--transition-medium);
}

.fleet-card:hover .fleet-image svg {
    transform: scale(1.1) rotateZ(360deg);
    color: rgba(255, 255, 255, 0.5);
}

.fleet-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    background: var(--gold);
    color: var(--navy);
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
}

.fleet-content {
    padding: 14px;
}

.fleet-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.fleet-capacity {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.fleet-features {
    list-style: none;
    margin-bottom: 12px;
}

.fleet-features li {
    padding: 3px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 18px;
    font-size: 0.8rem;
}

.fleet-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.fleet-price {
    margin-bottom: 12px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 8px;
    text-align: center;
}

.price-label {
    display: block;
    color: var(--gray);
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.fleet-content .price-amount {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
}

.fleet-content .btn {
    width: 100%;
    text-align: center;
    padding: 10px 12px;
    font-size: 0.85rem;
}

/* Transport Services Grid */
.transport-services {
    padding: var(--section-padding);
    background: transparent;
}

.transport-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.transport-service-item {
    background: rgba(255, 255, 255, 0.75);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-medium);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.transport-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 168, 66, 0.4);
    border-color: var(--gold);
}

.service-icon-large {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.transport-service-item:hover .service-icon-large {
    transform: scale(1.1) rotateZ(360deg);
    box-shadow: 0 8px 20px rgba(230, 168, 66, 0.4);
}

.service-icon-large svg {
    width: 25px;
    height: 25px;
    color: var(--white);
}

.transport-service-item h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.transport-service-item p {
    color: var(--gray);
    line-height: 1.4;
    font-size: 0.75rem;
}

/* Why Transport Section */
.why-transport {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(35, 64, 88, 0.15), rgba(26, 47, 66, 0.15));
    color: var(--white);
}

.why-transport .section-title {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

.why-transport-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-transport-item {
    background: rgba(255, 255, 255, 0.75);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
}

.why-transport-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(230, 168, 66, 0.3);
}

.why-transport-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.why-transport-item p {
    line-height: 1.8;
    color: var(--gray);
}

/* Responsive for Transport Page */
@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================
   Bus Section Styles
   ================================ */
.bus-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bus-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    margin: 80px auto 0;
    position: relative;
}

.bus-3d-model {
    position: absolute;
    width: 320px;
    height: 320px;
    top: -280px;
    left: 50%;
    transform: translateX(-50%) scale(0.5) translateY(50px);
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bus-3d-model.active {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
}

.bus-3d-model model-viewer {
    width: 100%;
    height: 100%;
    background: transparent !important;
}

.bus-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.bus-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 40px rgba(230, 168, 66, 0.4);
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .bus-grid {
        margin: 40px auto 0;
        max-width: 280px;
    }

    .bus-3d-model {
        width: 200px;
        height: 200px;
        top: -180px;
    }

    .bus-card {
        max-width: 280px;
    }
}

/* ================================
   Villas Page Styles
   ================================ */
.villa-collection {
    padding: var(--section-padding);
    background: transparent;
}

.villas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 100px auto 20px;
    max-width: 900px;
    width: 100%;
}

.villa-card {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
    /* Ensure visible on desktop */
    opacity: 1;
    visibility: visible;
}

.villa-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 40px rgba(230, 168, 66, 0.4);
    border-color: var(--gold);
}

/* Additional styles for Villas and Contact pages */

.villa-image {
    height: 150px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.villa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.villa-image svg {
    width: 70px;
    height: 70px;
    color: rgba(255, 255, 255, 0.2);
}

.villa-badge {
    position: absolute;
    top: 8px;
    right: 10px;
    background: var(--gold);
    color: var(--navy);
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.75rem;
}

.villa-content {
    padding: 14px;
}

.villa-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 3px;
}

.villa-location {
    color: var(--gray);
    margin-bottom: 6px;
    font-size: 0.8rem;
}

.villa-description {
    font-size: 0.75rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.villa-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}

.villa-features span {
    padding: 4px 8px;
    background: var(--light-gray);
    border-radius: 10px;
    font-size: 0.7rem;
}

.villa-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--light-gray);
}

.villa-price-section .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
}

.price-from, .price-per {
    font-size: 0.75rem;
}

/* Villa Amenities */
.villa-amenities {
    padding: var(--section-padding);
    background: transparent;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.amenity-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    transition: all var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.amenity-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(230, 168, 66, 0.3);
}

.amenity-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

/* Why Villas */
.why-villas {
    padding: var(--section-padding);
    background: transparent;
}

.why-villas-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.why-villa-card {
    padding: 35px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
}

.why-villa-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(230, 168, 66, 0.3);
}

.why-villa-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.2;
}

/* Contact Page - Two Card Layout - COMPACT */
.contact-section {
    padding: 80px 0 30px;
    background: transparent;
}

.contact-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 900px;
    margin: 80px auto 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    /* Ensure visible on desktop */
    opacity: 1;
    visibility: visible;
}

.contact-card h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.form-group {
    margin-bottom: 8px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--navy);
    margin-bottom: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.form-group textarea {
    resize: none;
}

.contact-card .btn {
    padding: 8px 15px;
    font-size: 0.8rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(230, 168, 66, 0.1);
}

.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
}

/* Contact Details Card - COMPACT */
.contact-info-list {
    margin-bottom: 10px;
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-info-row:last-child {
    border-bottom: none;
}

.contact-info-row strong {
    display: block;
    font-size: 0.7rem;
    color: var(--navy);
}

.contact-info-row p {
    margin: 0;
    font-size: 0.75rem;
    color: #555;
}

.contact-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all var(--transition-fast);
}

.quick-btn.whatsapp {
    background: #25D366;
    color: white;
}

.quick-btn.whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.quick-btn.phone {
    background: var(--gold);
    color: var(--navy);
}

.quick-btn.phone:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.social-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.social-row span {
    font-size: 0.75rem;
    color: var(--navy);
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 5px;
}

.social-icons a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

/* Details Card Extra Styles - COMPACT */
.details-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
}

.card-logo {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    object-fit: cover;
}

.tagline {
    font-size: 0.7rem;
    color: #555;
    margin: 0;
    line-height: 1.3;
}

.quick-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
    padding: 6px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.quick-links-row a {
    padding: 4px 8px;
    background: rgba(35, 64, 88, 0.1);
    color: var(--navy);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.quick-links-row a:hover {
    background: var(--gold);
    color: var(--navy);
}

.copyright {
    font-size: 0.6rem;
    color: #888;
    text-align: center;
    margin: 8px 0 0;
    padding-top: 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Contact Info - Legacy */
.contact-info-container {
    background: rgba(255, 255, 255, 0.85);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.contact-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    display: block;
    padding: 8px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gold);
    color: var(--white);
}

.contact-info-container h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.contact-info-container h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
    color: var(--navy);
}

.contact-info-container p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.contact-note {
    font-size: 0.8rem !important;
    color: #888 !important;
}

/* Quick Contact */
.quick-contact {
    padding: var(--section-padding);
    background: transparent;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.quick-contact-card {
    background: rgba(255, 255, 255, 0.75);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 168, 66, 0.3);
    border-color: var(--gold);
}

.quick-contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--navy);
}

.quick-contact-card p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #666;
}

.quick-contact-card .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.quick-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* ================================
   Destinations Page Styles
   ================================ */
.destinations-intro {
    padding: var(--section-padding);
    background: transparent;
}

.destinations-intro .section-title {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.destination-category {
    padding: var(--section-padding);
    background: transparent;
}

.destination-category .section-title {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.destination-category .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: none;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.destination-card {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.destination-card:hover {
    transform: translateY(-15px) rotateZ(-1deg);
    box-shadow: 0 25px 60px rgba(230, 168, 66, 0.4);
    border-color: var(--gold);
}

.destination-image {
    height: 200px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.destination-image.hill-bg {
    background: linear-gradient(135deg, #2d5a3d, #1a3d2a);
}

.destination-image.cultural-bg {
    background: linear-gradient(135deg, #8b4513, #654321);
}

.destination-icon {
    font-size: 5rem;
    opacity: 0.4;
    transition: all var(--transition-medium);
}

.destination-card:hover .destination-icon {
    transform: scale(1.2);
    opacity: 0.6;
}

.destination-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destination-content {
    padding: 30px;
}

.destination-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.destination-location {
    color: var(--gold-dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.destination-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.destination-highlights span {
    padding: 6px 14px;
    background: rgba(230, 168, 66, 0.15);
    color: var(--gold-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(230, 168, 66, 0.3);
}

.destination-content .btn {
    width: 100%;
    text-align: center;
}

/* Why Explore Section */
.why-explore {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(35, 64, 88, 0.15), rgba(26, 47, 66, 0.15));
}

.why-explore .section-title {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-explore .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: none;
}

.why-explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-explore-item {
    background: rgba(255, 255, 255, 0.75);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.why-explore-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(230, 168, 66, 0.3);
}

.why-explore-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}

.why-explore-item:hover .why-explore-icon {
    transform: scale(1.2);
}

.why-explore-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.why-explore-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* ================================
   Tour Packages Styles
   ================================ */
.tour-packages {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(35, 64, 88, 0.15), rgba(26, 47, 66, 0.15));
}

.tour-packages .section-title {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-packages .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: none;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.package-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(230, 168, 66, 0.4);
    border-color: var(--gold);
}

.package-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.package-header.adventure-bg {
    background: linear-gradient(135deg, #2d5a3d, #1a3d2a);
}

.package-header.wellness-bg {
    background: linear-gradient(135deg, #5a3d6b, #3d2a4d);
}

.package-header.family-bg {
    background: linear-gradient(135deg, #3d5a8b, #2a4066);
}

.package-header.summer-bg {
    background: linear-gradient(135deg, #d47f4b, #c26a3a);
}

.package-header.wonders-bg {
    background: linear-gradient(135deg, #8b4513, #654321);
}

.package-duration {
    background: var(--white);
    color: var(--navy);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
}

.package-badge {
    background: var(--gold);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-content {
    padding: 30px;
}

.package-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.package-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.package-itinerary {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(230, 168, 66, 0.08);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.package-itinerary h4 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 12px;
}

.package-itinerary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-itinerary li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.package-itinerary li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.package-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.package-includes span {
    padding: 6px 12px;
    background: var(--light-gray);
    color: var(--dark-gray);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.package-content .btn {
    width: 100%;
    text-align: center;
}

/* Custom Package CTA */
.custom-package {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 2px dashed var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.custom-package-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.custom-package-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive for Tour Packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .package-header {
        padding: 20px 25px;
    }

    .package-content {
        padding: 25px;
    }

    .package-content h3 {
        font-size: 1.3rem;
    }

    .package-itinerary {
        padding: 15px;
    }

    .custom-package {
        padding: 35px 25px;
    }

    .custom-package-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .package-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .package-content {
        padding: 20px;
    }

    .package-includes span {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .custom-package {
        padding: 30px 20px;
    }

    .custom-package-content h3 {
        font-size: 1.2rem;
    }

    .custom-package-content p {
        font-size: 1rem;
    }
}

/* Responsive for Destinations */
@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-explore-grid {
        grid-template-columns: 1fr;
    }

    .destination-content {
        padding: 25px;
    }

    .destination-content h3 {
        font-size: 1.4rem;
    }

    .destination-highlights span {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .destination-image {
        height: 160px;
    }

    .destination-icon {
        font-size: 4rem;
    }

    .destination-content {
        padding: 20px;
    }

    .why-explore-item {
        padding: 25px 20px;
    }

    .why-explore-icon {
        font-size: 2.5rem;
    }
}

/* Additional styles for Villas and Contact pages */

.villa-image {
    height: 150px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.villa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.villa-image svg {
    width: 70px;
    height: 70px;
    color: rgba(255, 255, 255, 0.2);
}

.villa-badge {
    position: absolute;
    top: 8px;
    right: 10px;
    background: var(--gold);
    color: var(--navy);
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.75rem;
}

.villa-content {
    padding: 14px;
}

.villa-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 3px;
}

.villa-location {
    color: var(--gray);
    margin-bottom: 6px;
    font-size: 0.8rem;
}

.villa-description {
    font-size: 0.75rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.villa-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}

.villa-features span {
    padding: 4px 8px;
    background: var(--light-gray);
    border-radius: 10px;
    font-size: 0.7rem;
}

.villa-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--light-gray);
}

.villa-price-section .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
}

.price-from, .price-per {
    font-size: 0.75rem;
}

/* Villa Amenities */
.villa-amenities {
    padding: var(--section-padding);
    background: transparent;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.amenity-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    transition: all var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.amenity-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(230, 168, 66, 0.3);
}

.amenity-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

/* Why Villas */
.why-villas {
    padding: var(--section-padding);
    background: transparent;
}

.why-villas-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.why-villa-card {
    padding: 35px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
}

.why-villa-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(230, 168, 66, 0.3);
}

.why-villa-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.2;
}

/* Contact Page - Two Card Layout - COMPACT */
.contact-section {
    padding: 80px 0 30px;
    background: transparent;
}

.contact-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 900px;
    margin: 80px auto 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    /* Ensure visible on desktop */
    opacity: 1;
    visibility: visible;
}

.contact-card h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.form-group {
    margin-bottom: 8px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--navy);
    margin-bottom: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.form-group textarea {
    resize: none;
}

.contact-card .btn {
    padding: 8px 15px;
    font-size: 0.8rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(230, 168, 66, 0.1);
}

.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
}

/* Contact Details Card - COMPACT */
.contact-info-list {
    margin-bottom: 10px;
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-info-row:last-child {
    border-bottom: none;
}

.contact-info-row strong {
    display: block;
    font-size: 0.7rem;
    color: var(--navy);
}

.contact-info-row p {
    margin: 0;
    font-size: 0.75rem;
    color: #555;
}

.contact-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all var(--transition-fast);
}

.quick-btn.whatsapp {
    background: #25D366;
    color: white;
}

.quick-btn.whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.quick-btn.phone {
    background: var(--gold);
    color: var(--navy);
}

.quick-btn.phone:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.social-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.social-row span {
    font-size: 0.75rem;
    color: var(--navy);
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 5px;
}

.social-icons a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

/* Details Card Extra Styles - COMPACT */
.details-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
}

.card-logo {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    object-fit: cover;
}

.tagline {
    font-size: 0.7rem;
    color: #555;
    margin: 0;
    line-height: 1.3;
}

.quick-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
    padding: 6px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.quick-links-row a {
    padding: 4px 8px;
    background: rgba(35, 64, 88, 0.1);
    color: var(--navy);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.quick-links-row a:hover {
    background: var(--gold);
    color: var(--navy);
}

.copyright {
    font-size: 0.6rem;
    color: #888;
    text-align: center;
    margin: 8px 0 0;
    padding-top: 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Contact Info - Legacy */
.contact-info-container {
    background: rgba(255, 255, 255, 0.85);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.contact-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    display: block;
    padding: 8px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gold);
    color: var(--white);
}

.contact-info-container h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.contact-info-container h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
    color: var(--navy);
}

.contact-info-container p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.contact-note {
    font-size: 0.8rem !important;
    color: #888 !important;
}

/* Quick Contact */
.quick-contact {
    padding: var(--section-padding);
    background: transparent;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.quick-contact-card {
    background: rgba(255, 255, 255, 0.75);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(230, 168, 66, 0.3);
    border-color: var(--gold);
}

.quick-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* ================================
   COMPREHENSIVE RESPONSIVE STYLES
   ================================ */

/* Tablet and below - 1024px */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper,
    .contact-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Tablet - 768px */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    /* Navigation */
    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        background: rgba(35, 64, 88, 0.98);
        padding: 100px 40px 40px;
        gap: 25px;
        transition: right var(--transition-fast);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        justify-content: flex-start;
        align-items: center;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 10px 0;
    }

    .nav-link-cta {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    /* Logo responsive */
    .nav-logo {
        left: 15px;
        top: 5px;
    }

    .nav-logo img,
    .nav-logo video {
        height: 80px;
        width: 80px;
    }

    /* Hero Section */
    .hero {
        padding: 80px 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Carousel */
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-dots {
        bottom: 100px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 10px;
    }

    .scroll-indicator span {
        font-size: 0.8rem;
    }

    .mouse {
        width: 20px;
        height: 32px;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    /* Page Header */
    .page-header {
        padding: 120px 20px 60px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    /* Grids */
    .services-grid,
    .features-grid,
    .fleet-grid,
    .transport-services-grid,
    .why-transport-content,
    .villas-grid,
    .amenities-grid,
    .why-villas-content,
    .values-grid,
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Transport section on mobile - full screen */
    #transport {
        padding: 0;
        min-height: 100vh;
    }

    #transport .container {
        padding: 0;
        max-width: 100%;
        height: 100%;
    }

    /* Fleet cards on mobile - each card is a full-screen section */
    .fleet-grid {
        display: block;
        margin-top: 0;
        padding: 0;
        position: relative;
        min-height: 100vh;
        width: 100%;
    }

    .fleet-card {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 20px;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.8s ease, visibility 0.8s ease;
        background: rgba(255, 255, 255, 0.95);
    }

    .fleet-card.active-card {
        opacity: 1;
        visibility: visible;
        position: relative;
    }

    /* 3D models on mobile/tablet - position above card content */
    .fleet-3d-model {
        position: fixed !important;
        top: 10vh !important;
        left: 50% !important;
        transform: translateX(-50%) scale(1) !important;
        width: 35vw !important;
        height: 35vw !important;
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 280px !important;
        max-height: 280px !important;
        z-index: 99999 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        display: block !important;
        pointer-events: none;
    }

    .fleet-3d-model.active {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        transform: translateX(-50%) scale(1) !important;
    }

    /* Villas section on mobile - full screen */
    #villas {
        padding: 0;
        min-height: 100vh;
    }

    #villas .container {
        padding: 0;
        max-width: 100%;
        height: 100%;
    }

    /* Villa cards on mobile - each card is a full-screen section */
    .villas-grid {
        display: block;
        margin-top: 0;
        padding: 0;
        position: relative;
        min-height: 100vh;
        width: 100%;
    }

    .villa-card {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 20px;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.8s ease, visibility 0.8s ease;
        background: rgba(255, 255, 255, 0.95);
    }

    .villa-card.active-card {
        opacity: 1;
        visibility: visible;
        position: relative;
    }

    /* Contact section on mobile - full screen */
    .contact-section {
        padding: 0;
        min-height: 100vh;
    }

    .contact-section .container {
        padding: 0;
        max-width: 100%;
        height: 100%;
    }

    /* Contact cards on mobile - each card is a full-screen section */
    .contact-cards-wrapper {
        display: block;
        margin-top: 0;
        padding: 0;
        position: relative;
        min-height: 100vh;
        width: 100%;
    }

    .contact-card {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 20px;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.8s ease, visibility 0.8s ease;
        background: rgba(255, 255, 255, 0.95);
    }

    .contact-card.active-card {
        opacity: 1;
        visibility: visible;
        position: relative;
    }

    /* Contact Details Card - Mobile Tidy */
    .details-card {
        padding: 20px 25px !important;
        text-align: center;
    }

    .details-top {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .details-top .card-logo {
        width: 60px;
        height: 60px;
    }

    .details-top .tagline {
        font-size: 0.9rem;
        text-align: center;
        max-width: 280px;
    }

    .contact-info-list {
        margin-bottom: 20px;
        background: linear-gradient(135deg, rgba(35, 64, 88, 0.05), rgba(230, 168, 66, 0.08));
        border-radius: 16px;
        padding: 15px;
        border: 1px solid rgba(230, 168, 66, 0.2);
        text-align: left !important;
    }

    .contact-info-row {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center;
        padding: 14px 15px;
        gap: 15px;
        border-bottom: none;
        border-radius: 10px;
        margin-bottom: 8px;
        background: rgba(255, 255, 255, 0.7);
        text-align: left !important;
    }

    .contact-info-row > div:last-child {
        text-align: left !important;
        flex: 1;
    }

    .contact-info-row:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .contact-info-row strong {
        font-size: 0.75rem;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contact-info-row p {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--navy);
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        background: linear-gradient(135deg, var(--gold), var(--orange));
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(230, 168, 66, 0.3);
    }

    .contact-icon svg {
        width: 22px;
        height: 22px;
        stroke: white;
    }

    .quick-actions {
        gap: 12px;
        margin-bottom: 20px;
    }

    .quick-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .quick-links-row {
        justify-content: center;
        gap: 8px;
        padding: 15px 0;
        margin-bottom: 15px;
    }

    .quick-links-row a {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .social-row {
        justify-content: center;
        padding: 15px 0;
        margin-bottom: 10px;
        gap: 12px;
    }

    .social-row span {
        font-size: 0.9rem;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .copyright {
        font-size: 0.8rem;
        margin-top: 10px;
    }

    /* Cards */
    .service-card,
    .feature-item,
    .transport-service-item,
    .why-transport-item,
    .amenity-item,
    .why-villa-card,
    .value-item,
    .why-us-item,
    .mv-card,
    .quick-contact-card {
        padding: 30px 25px;
    }

    .service-card:hover,
    .feature-item:hover,
    .villa-card:hover {
        transform: translateY(-10px);
    }

    /* Story Section */
    .story-text {
        padding: 30px 25px;
    }

    .story-text p {
        font-size: 1rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 80px 20px;
    }

    .cta-content {
        padding: 40px 25px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    /* Contact Form */
    .contact-form,
    .contact-info-container {
        padding: 30px 25px;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-icon {
        margin: 0 auto;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .social-links {
        justify-content: center;
    }

    /* Loading Screen */
    .loading-van {
        width: 60px;
        height: 40px;
    }

    .loading-road {
        width: 280px;
    }

    .loading-text {
        font-size: 1.5rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

/* Mobile - 576px */
@media (max-width: 576px) {
    :root {
        --section-padding: 50px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .nav-logo {
        left: 10px;
        top: 10px;
    }

    .nav-logo img,
    .nav-logo video {
        height: 60px;
        width: 60px;
    }

    .hamburger {
        margin-right: 10px;
    }

    .nav-menu {
        padding: 90px 25px 40px;
    }

    /* Hero */
    .hero {
        padding: 70px 15px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-line {
        display: inline;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .hero-buttons {
        padding: 0 10px;
    }

    .hero-buttons .btn {
        max-width: 100%;
        font-size: 0.9rem;
    }

    /* Carousel */
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .carousel-dots {
        bottom: 80px;
        gap: 8px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    /* Page Header */
    .page-header {
        padding: 100px 15px 50px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    /* Cards and Content */
    .service-card,
    .feature-item,
    .fleet-card,
    .transport-service-item,
    .why-transport-item,
    .villa-card,
    .amenity-item,
    .why-villa-card,
    .value-item,
    .why-us-item,
    .mv-card,
    .quick-contact-card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .service-icon,
    .mv-icon,
    .service-icon-large {
        width: 60px;
        height: 60px;
    }

    .service-icon svg,
    .mv-icon svg,
    .service-icon-large svg {
        width: 30px;
        height: 30px;
    }

    .service-card h3,
    .mv-card h3,
    .transport-service-item h3 {
        font-size: 1.3rem;
    }

    .service-card p,
    .mv-card p {
        font-size: 0.95rem;
    }

    /* Feature Numbers */
    .feature-number,
    .why-us-number,
    .why-villa-number {
        font-size: 2.5rem;
    }

    /* Story Section */
    .story-text {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .story-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Fleet Cards */
    .fleet-image {
        height: 200px;
    }

    .fleet-content {
        padding: 25px 20px;
    }

    .fleet-content h3 {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    /* Villa Cards */
    .villa-image {
        height: 220px;
    }

    .villa-content {
        padding: 25px 20px;
    }

    .villa-content h3 {
        font-size: 1.5rem;
    }

    .villa-features {
        gap: 8px;
    }

    .villa-features span {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .villa-price-section {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .villa-price-section .btn {
        width: 100%;
        text-align: center;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 15px;
    }

    .cta-content {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    /* Contact Form */
    .contact-form,
    .contact-info-container {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    /* Amenities */
    .amenity-icon {
        font-size: 2.5rem;
    }

    /* Value Items */
    .value-icon {
        font-size: 2.5rem;
    }

    /* Quick Contact */
    .quick-icon {
        font-size: 3rem;
    }

    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    /* Loading Screen */
    .loading-road {
        width: 220px;
    }

    .loading-van {
        width: 50px;
        height: 35px;
    }

    .loading-text {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .loading-subtext {
        font-size: 0.9rem;
    }

    .loading-spinner {
        width: 40px;
        height: 40px;
    }

    /* Buttons */
    .btn {
        padding: 11px 24px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 13px 30px;
        font-size: 0.95rem;
    }
}

/* Small Mobile - 400px */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .nav-logo img,
    .nav-logo video {
        height: 50px;
        width: 50px;
    }

    .carousel-arrow {
        display: none;
    }
}

/* Landscape phone orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 20px 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .carousel-dots {
        bottom: 20px;
    }
}

/* Touch devices - disable hover animations that may not work well */
@media (hover: none) {
    .service-card:hover,
    .feature-item:hover,
    .fleet-card:hover,
    .villa-card:hover,
    .mv-card:hover,
    .why-transport-item:hover,
    .why-villa-card:hover,
    .value-item:hover,
    .why-us-item:hover,
    .amenity-item:hover,
    .quick-contact-card:hover {
        transform: none;
    }

    .service-card:active,
    .feature-item:active,
    .fleet-card:active,
    .villa-card:active {
        transform: scale(0.98);
    }
}

/* Small phones - smaller 3D models */
@media (max-width: 480px) {
    .fleet-3d-model {
        top: 8vh !important;
        width: 45vw !important;
        height: 45vw !important;
        min-width: 140px !important;
        min-height: 140px !important;
        max-width: 180px !important;
        max-height: 180px !important;
    }
}

/* ================================
   MOBILE-SPECIFIC STYLES FOR FADE SECTIONS
   ================================ */

/* Tablet - 768px */
@media (max-width: 768px) {
    /* Sections - less padding on mobile */
    section {
        padding: 80px 15px 30px;
        -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
    }

    section.hero {
        padding: 0;
        overflow: hidden;
    }

    /* Hero content adjustments */
    .hero-content-van-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title-inline {
        font-size: 2.2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Section titles */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .category-title {
        font-size: 1.3rem;
        margin: 20px 0 10px;
    }

    /* Grids - single column */
    .fleet-grid,
    .villas-grid,
    .transport-services-grid,
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Cards - smaller on mobile */
    .fleet-image,
    .villa-image {
        height: 120px;
    }

    .fleet-content,
    .villa-content {
        padding: 15px;
    }

    .fleet-content h3,
    .villa-content h3 {
        font-size: 1.3rem;
    }

    /* Contact section */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* 3D Van - reposition for mobile */
    .elephant-3d-fixed.pos-hero {
        top: 28%;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 150px;
    }

    .elephant-3d-fixed.pos-about,
    .elephant-3d-fixed.pos-transport,
    .elephant-3d-fixed.pos-villas,
    .elephant-3d-fixed.pos-contact {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
    }

    /* Story text */
    .story-text {
        font-size: 0.95rem;
    }

    .story-text p {
        margin-bottom: 15px;
    }

    /* Scroll indicator */
    .scroll-indicator {
        bottom: 15px;
    }

    .scroll-indicator p {
        font-size: 0.8rem;
    }
}

/* Small phones - 576px */
@media (max-width: 576px) {
    section {
        padding: 70px 10px 20px;
    }

    .hero-title-inline {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Fleet/Villa features smaller */
    .fleet-features,
    .villa-features {
        font-size: 0.85rem;
    }

    .fleet-features li,
    .villa-features span {
        padding: 3px 0;
    }

    /* Price sections */
    .fleet-price .price-amount,
    .villa-price .price-amount {
        font-size: 1.3rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* 3D Van even smaller */
    .elephant-3d-fixed.pos-hero {
        top: 25%;
        width: 120px;
        height: 120px;
    }

    .elephant-3d-fixed.pos-about,
    .elephant-3d-fixed.pos-transport,
    .elephant-3d-fixed.pos-villas,
    .elephant-3d-fixed.pos-contact {
        width: 80px;
        height: 80px;
        bottom: 15px;
    }

    /* Contact info */
    .contact-info-container {
        padding: 20px;
    }

    .contact-info-item {
        padding: 10px 0;
    }

    /* Quick contact cards */
    .quick-contact-card {
        padding: 20px;
    }

    .quick-icon {
        font-size: 2rem;
    }
}

/* Extra small phones - 400px */
@media (max-width: 400px) {
    section {
        padding: 65px 8px 15px;
    }

    .hero-title-inline {
        font-size: 1.5rem !important;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .fleet-image,
    .villa-image {
        height: 100px;
    }

    .elephant-3d-fixed.pos-hero {
        width: 100px;
        height: 100px;
    }

    .elephant-3d-fixed.pos-about,
    .elephant-3d-fixed.pos-transport,
    .elephant-3d-fixed.pos-villas,
    .elephant-3d-fixed.pos-contact {
        width: 70px;
        height: 70px;
    }
}
