/* ================================================================
   GANGULY CABS — Responsive Stylesheet (FIXED)
   Mobile-First Responsive Design
   ================================================================ */

/* ================================================================
   BASE MOBILE STYLES (Default - applies to all screens)
   ================================================================ */

/* Fix for iOS input zoom */
@supports (-webkit-touch-callout: none) {
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* ================================================================
   UNIFIED MOBILE & TABLET NAVIGATION (up to 1023px)
   ================================================================ */

@media (max-width: 1023px) {
    /* 1. Hide Desktop Elements */
    .navbar__actions,
    .navbar__language {
        display: none !important;
    }

    /* 2. Style the Hamburger Toggle */
    .navbar__toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px; /* Larger for better thumb tapping */
        height: 44px;
        padding: 8px;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
        background: transparent;
        border: none;
    }

    .navbar__toggle-bar {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--color-charcoal);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Hamburger "X" Animation */
    .navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* 3. The Slide-Out Menu Overlay */
    .navbar__menu {
        position: fixed;
        top: calc(var(--header-height) + var(--announcement-height));
        left: 0;
        right: 0;
        /* Uses dynamic viewport height to prevent iOS Safari cut-offs */
        height: calc(100dvh - (var(--header-height) + var(--announcement-height)));
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 0;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0,0,0,0.05);
    }

    .navbar__menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar__item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar__link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 1.25rem 0;
        font-size: 1.125rem;
        font-weight: 500;
        color: var(--color-charcoal);
    }

    .navbar__link::after {
        display: none; /* Disables the desktop gold underline animation on mobile */
    }

    /* 4. Mobile Actions (CTA & Phone styling) */
    .navbar__menu .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        border-bottom: none;
    }

    .navbar__menu .mobile-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .navbar__menu .mobile-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem;
        background: var(--bg-cream);
        border-radius: var(--radius-md);
        font-weight: 600;
        color: var(--color-emerald);
        transition: background 0.3s;
    }

    .navbar__menu .mobile-phone:hover {
        background: var(--color-emerald);
        color: var(--color-white);
    }
}

/* ================================================================
   MOBILE DEVICES (up to 767px)
   ================================================================ */

@media (max-width: 767px) {
    /* -------- Root Variables -------- */
    :root {
        --header-height: 60px;
        --announcement-height: 40px;
        --container-padding: 1rem;
    }

    /* -------- Typography -------- */
    h1 {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.5rem !important;
        line-height: 1.25;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }

    /* -------- Container -------- */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* -------- Sections -------- */
    .section {
        padding: 3rem 0;
    }

    .section__header {
        margin-bottom: 2rem;
    }

    .section__title {
        font-size: 1.5rem !important;
    }

    .section__subtitle {
        font-size: 0.938rem;
    }

    /* -------- Announcement Bar -------- */
    .header__announcement-bar {
        padding: 0.5rem 1rem;
    }

    .header__announcement-bar p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    /* -------- Navbar -------- */
    .navbar__container {
        height: var(--header-height);
        padding: 0 1rem;
    }

    .navbar__logo-img {
        height: 36px;
        width: auto;
    }

    /* Hide desktop elements */
    .navbar__actions {
        display: none !important;
    }

    .navbar__language {
        display: none !important;
    }

    /* Fix iOS select appearance for mobile lang selector */
    .lang-select {
        -webkit-appearance: none;
        appearance: none;
        border-radius: var(--radius-sm);
    }
    .navbar__toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        padding: 8px;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .navbar__toggle-bar {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--color-charcoal);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Hamburger Animation */
    .navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* -------- Mobile Menu -------- */
    .navbar__menu {
        position: fixed;
        top: calc(var(--header-height) + var(--announcement-height));
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .navbar__menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar__item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .navbar__link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.125rem;
        font-weight: 500;
    }

    .navbar__link::after {
        display: none;
    }

    /* Mobile Menu Actions */
    .navbar__menu .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .navbar__menu .mobile-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .navbar__menu .mobile-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.875rem;
        background: var(--bg-cream);
        border-radius: 8px;
        font-weight: 500;
        color: var(--color-emerald);
    }

    /* -------- Hero Section -------- */
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        max-height: none;
    }

    .hero__content {
        padding: 0 1rem;
        padding-top: calc(var(--header-height) + var(--announcement-height) + 2rem);
        padding-bottom: 4rem;
    }

    .hero__tagline {
        font-size: 0.875rem;
    }

    .hero__title {
        font-size: 2rem !important;
        line-height: 1.15;
        margin-bottom: 0.75rem;
    }

    .hero__subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero__divider {
        margin-bottom: 1.5rem;
    }

    .hero__actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero__scroll {
        display: none;
    }

    /* -------- Heritage Section -------- */
    .heritage__title {
        font-size: 1.5rem !important;
    }

    .heritage__text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .timeline {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .timeline__item {
        text-align: center;
    }

    .timeline__year {
        font-size: 1.5rem;
    }

    .timeline__line {
        width: 2px;
        height: 50px;
    }

    .timeline__line-inner {
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, var(--color-gold), var(--color-emerald));
    }

    /* -------- Services Grid -------- */
    .services__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card__icon {
        width: 60px;
        height: 60px;
    }

    .service-card__icon svg {
        width: 32px;
        height: 32px;
    }

    .service-card__title {
        font-size: 1.125rem;
    }

    .service-card__desc {
        font-size: 0.875rem;
    }

    .services__footer {
        margin-top: 2rem;
    }

    /* -------- Destinations Grid -------- */
    .destinations__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .destination-card {
        aspect-ratio: 16/12;
    }

    .destination-card__content {
        padding: 1.25rem;
    }

    .destination-card__title {
        font-size: 1.375rem;
    }

    .destination-card__btn {
        opacity: 1;
        transform: translateY(0);
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .destinations__footer {
        margin-top: 2rem;
    }

    /* -------- Why Us Grid -------- */
    .why-us__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-us__icon {
        width: 56px;
        height: 56px;
    }

    .why-us__title {
        font-size: 1rem;
    }

    .why-us__text {
        font-size: 0.875rem;
    }

    /* -------- Testimonials Grid -------- */
    .testimonials__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .testimonial::before {
        font-size: 48px;
        top: 0.5rem;
        left: 1rem;
    }

    .testimonial__text {
        font-size: 0.938rem;
    }

    /* -------- Quick Booking Section -------- */
    .quick-booking__wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quick-booking__title {
        font-size: 1.5rem !important;
    }

    .quick-booking__text {
        font-size: 1rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .booking-form__row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* -------- CTA Banner -------- */
    .cta-banner {
        padding: 3rem 0;
    }

    .cta-banner__title {
        font-size: 1.5rem !important;
    }

    .cta-banner__text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-banner__actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-banner__actions .btn {
        width: 100%;
    }

    /* -------- Footer -------- */
    .footer {
        padding-top: 3rem;
    }

    .footer__top {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer__brand {
        text-align: center;
        max-width: none;
    }

    .footer__logo img {
        margin: 0 auto;
    }

    .footer__emergency {
        margin: 0 auto;
        max-width: 280px;
    }

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

    .footer__column {
        text-align: center;
    }

    .footer__heading {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .footer__list li {
        margin-bottom: 0.625rem;
    }

    .footer__list a {
        font-size: 0.875rem;
    }

    .footer__address {
        text-align: left;
    }

    .footer__address p {
        justify-content: flex-start;
        text-align: left;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 0;
    }

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer__social {
        justify-content: center;
    }

    /* -------- Buttons -------- */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.813rem;
    }

    .btn--large {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .btn--small {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* -------- Modals -------- */
    .modal__content {
        margin: 0.5rem;
        max-height: calc(100vh - 1rem);
        max-height: calc(100dvh - 1rem);
        border-radius: 12px;
    }

    .modal__header {
        padding: 1rem 1.25rem;
    }

    .modal__body {
        padding: 1.25rem;
    }

    .modal__footer {
        padding: 1rem 1.25rem;
    }

    .modal__close {
        width: 32px;
        height: 32px;
        top: 0.75rem;
        right: 0.75rem;
    }

    /* -------- WhatsApp Float -------- */
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-float__btn {
        width: 50px;
        height: 50px;
    }

    /* -------- Forms -------- */
    .form-group {
        margin-bottom: 1rem;
    }

    .form-label {
        font-size: 0.813rem;
        margin-bottom: 0.375rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.75rem 1rem;
        font-size: 16px; /* Prevents iOS zoom */
    }

    .form-textarea {
        min-height: 80px;
    }

    /* -------- Gold Divider -------- */
    .gold-divider {
        width: 50px;
        margin: 1rem auto;
    }

    /* -------- PAGE SPECIFIC: About -------- */
    .about-hero {
        padding: calc(var(--header-height) + var(--announcement-height) + 2rem) 0 2rem !important;
    }

    .about-hero__title {
        font-size: 1.75rem !important;
    }

    .about-hero__subtitle {
        font-size: 1rem;
    }

    .story-section {
        display: block !important;
    }

    .story-section .story-image {
        margin-bottom: 2rem;
    }

    .story-content h2 {
        font-size: 1.5rem !important;
    }

    .milestone-timeline {
        padding-left: 1.5rem;
    }

    .milestone::before {
        left: calc(-1.5rem - 5px);
        width: 10px;
        height: 10px;
    }

    .milestone__year {
        font-size: 1rem;
    }

    .values-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-card__icon {
        width: 56px;
        height: 56px;
    }

    .stats-section {
        padding: 2.5rem 0;
    }

    .stats-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }

    .stat-item__number {
        font-size: 2.25rem !important;
    }

    .stat-item__label {
        font-size: 0.688rem;
    }

    .commitment-list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .commitment-item {
        padding: 1rem;
    }

    .commitment-item__icon {
        width: 36px;
        height: 36px;
    }

    /* -------- PAGE SPECIFIC: Contact -------- */
    .contact-hero {
        padding: calc(var(--header-height) + var(--announcement-height) + 2rem) 0 2rem !important;
    }

    .contact-hero h1 {
        font-size: 1.75rem !important;
    }

    .contact-methods {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
        margin-top: -1.5rem !important;
    }

    .contact-method {
        padding: 1rem;
    }

    .contact-method__icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.75rem;
    }

    .contact-method__icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-method__title {
        font-size: 0.625rem;
        margin-bottom: 0.25rem;
    }

    .contact-method__value {
        font-size: 0.813rem;
    }

    .booking-section {
        display: block !important;
    }

    .booking-info {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .booking-info h2 {
        font-size: 1.375rem !important;
    }

    .booking-form-full {
        padding: 1.5rem;
    }

    .booking-form-full h2 {
        font-size: 1.375rem !important;
    }

    .form-row {
        display: block !important;
    }

    .form-row .form-group {
        margin-bottom: 1rem;
    }

    .info-list__item {
        padding: 0.875rem 0;
        gap: 0.75rem;
    }

    .info-list__icon {
        width: 36px;
        height: 36px;
    }

    .info-list__content h4 {
        font-size: 0.875rem;
    }

    .info-list__content p {
        font-size: 0.75rem;
    }

    .corporate-section {
        padding: 3rem 0;
    }

    .corporate-grid {
        display: block !important;
    }

    .corporate-content {
        margin-bottom: 2rem;
    }

    .corporate-content h2 {
        font-size: 1.5rem !important;
    }

    .corporate-benefits {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .corporate-benefit {
        font-size: 0.813rem;
    }

    .corporate-form {
        padding: 1.5rem;
    }

    .corporate-form h3 {
        font-size: 1.125rem !important;
    }

    .map-container {
        height: 280px;
        border-radius: 12px;
    }

    .payment-methods {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .payment-methods img {
        height: 18px;
    }

    /* -------- PAGE SPECIFIC: Destinations -------- */
    .destinations-hero {
        padding: calc(var(--header-height) + var(--announcement-height) + 2rem) 0 2rem !important;
    }

    .destinations-hero h1 {
        font-size: 1.75rem !important;
    }

    .destinations-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .destination-card-large {
        aspect-ratio: 4/5;
    }

    .destination-card-large__title {
        font-size: 1.5rem !important;
    }

    .destination-card-large__actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .destination-card-large__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .routes-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .route-card__content {
        padding: 1.25rem;
    }

    .route-card__title {
        font-size: 1.125rem;
    }

    .tips-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    .tip-card {
        padding: 1rem;
    }

    .tip-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }

    .tip-card__title {
        font-size: 0.813rem;
    }

    .tip-card__text {
        font-size: 0.75rem;
    }

    .download-card {
        flex-direction: column !important;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem !important;
    }

    .download-card__icon {
        width: 60px;
        height: 60px;
    }

    .download-card__title {
        font-size: 1.125rem !important;
    }

    /* -------- PAGE SPECIFIC: Services -------- */
    .service-section__grid {
        display: block !important;
    }

    .service-section__image {
        margin-bottom: 1.5rem;
        aspect-ratio: 16/10 !important;
    }

    .service-section__content h2 {
        font-size: 1.375rem !important;
    }

    .service-features ul {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }

    .service-pricing {
        padding: 1rem;
    }

    /* Fleet Grid on Services Page */
    .fleet .container > div {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    /* FAQ Section */
    .accordion__trigger {
        padding: 1rem !important;
        font-size: 0.875rem;
    }

    .accordion__content {
        padding: 0 1rem 1rem !important;
    }
}

/* ================================================================
   VERY SMALL DEVICES (up to 374px)
   ================================================================ */

@media (max-width: 374px) {
    :root {
        --container-padding: 0.75rem;
    }

    .hero__title {
        font-size: 1.625rem !important;
    }

    .hero__subtitle {
        font-size: 0.938rem;
    }

    .section__title {
        font-size: 1.375rem !important;
    }

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

    .contact-methods {
        grid-template-columns: 1fr !important;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .tips-grid {
        grid-template-columns: 1fr !important;
    }

    .fleet .container > div {
        grid-template-columns: 1fr !important;
    }
}

/* ================================================================
   TABLET DEVICES (768px to 1023px)
   ================================================================ */

@media (min-width: 768px) and (max-width: 1023px) {
    :root {
        --header-height: 70px;
        --announcement-height: 36px;
        --container-padding: 2rem;
    }

    .section {
        padding: 4rem 0;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    /* Hero */
    .hero__title {
        font-size: 2.75rem !important;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

    .hero__actions {
        flex-direction: row;
        justify-content: center;
    }

    .hero__actions .btn {
        width: auto;
    }

    /* Grids - 2 columns */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

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

    /* Footer */
    .footer__top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer__brand {
        text-align: center;
    }

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

    .footer__column {
        text-align: center;
    }

    /* Page Specific */
    .contact-methods {
        grid-template-columns: repeat(4, 1fr) !important;
    }

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

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

    .commitment-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }

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

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

    .booking-section {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }

    .corporate-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }

    .service-section__grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
        align-items: center !important;
    }
}

/* ================================================================
   DESKTOP DEVICES (1024px and up)
   ================================================================ */

@media (min-width: 1024px) {
    :root {
        --header-height: 80px;
        --announcement-height: 36px;
        --container-padding: 2rem;
    }

    .section {
        padding: 5rem 0;
    }

    /* Hide mobile menu toggle */
    .navbar__toggle {
        display: none !important;
    }

    /* Show desktop menu */
    .navbar__menu {
        position: static;
        flex-direction: row;
        background: transparent;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        gap: 0.25rem;
        overflow: visible;
    }

    .navbar__item {
        width: auto;
        border-bottom: none;
    }

    .navbar__link {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .navbar__link::after {
        display: block;
    }

    /* Show desktop actions */
    .navbar__actions {
        display: flex !important;
        align-items: center;
        gap: 1rem;
    }

    .navbar__language {
        display: block !important;
    }

    /* Hero */
    .hero__title {
        font-size: 3.5rem !important;
    }

    .hero__actions {
        flex-direction: row;
        justify-content: center;
    }

    .hero__actions .btn {
        width: auto;
    }

    .hero__scroll {
        display: block;
    }

    /* Grids - 3 columns */
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .destinations__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

    .testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    /* Quick Booking */
    .quick-booking__wrapper {
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
    }

    .booking-form__row {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer__top {
        grid-template-columns: 1.5fr 2fr;
        gap: 4rem;
    }

    .footer__brand {
        text-align: left;
    }

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

    .footer__column {
        text-align: left;
    }

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

    /* Page Specific */
    .contact-methods {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .booking-section {
        grid-template-columns: 1fr 1fr !important;
    }

    .corporate-grid {
        grid-template-columns: 1fr 1fr !important;
    }

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

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

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

    .story-section {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }

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

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

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

    .service-section__grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }

    .fleet .container > div {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* ================================================================
   LARGE DESKTOP (1280px and up)
   ================================================================ */

@media (min-width: 1280px) {
    :root {
        --container-padding: 2.5rem;
    }

    .hero__title {
        font-size: 4rem !important;
    }

    .section__header {
        max-width: 800px;
    }
}

/* ================================================================
   LANDSCAPE MOBILE
   ================================================================ */

@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .hero__content {
        padding-top: calc(var(--header-height) + var(--announcement-height) + 1rem);
    }

    .hero__scroll {
        display: none;
    }

    .about-hero,
    .contact-hero,
    .destinations-hero {
        padding: calc(var(--header-height) + var(--announcement-height) + 1.5rem) 0 1.5rem !important;
    }
}

/* ================================================================
   TOUCH DEVICE OPTIMIZATIONS
   ================================================================ */

@media (hover: none) and (pointer: coarse) {
    /* Larger tap targets */
    .btn {
        min-height: 48px;
    }

    .navbar__link {
        min-height: 44px;
    }

    /* Show explore buttons always */
    .destination-card__btn {
        opacity: 1;
        transform: translateY(0);
    }

    /* Remove hover effects that don't work on touch */
    .service-card:hover {
        transform: none;
    }

    .value-card:hover {
        transform: none;
    }

    .contact-method:hover {
        transform: none;
    }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ================================================================
   PRINT STYLES
   ================================================================ */

@media print {
    .header,
    .navbar,
    .hero__video,
    .whatsapp-float,
    .cta-banner,
    .quick-booking,
    .footer__social,
    .btn {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
}