/* ==========================================================================
   AERONEST INN - DESIGN SYSTEM & STYLESHEET
   A Unit of Wyt Retreat - Madurai
   ========================================================================== */

/* 1. CSS VARIABLES & SYSTEM DESIGN TOKENS */
:root {
    /* Brand Colors */
    --color-primary-navy: #001b3d;
    --color-primary-navy-rgb: 0, 27, 61;
    --color-primary-gold: #FDCB0A;
    --color-primary-gold-hover: #e0b000;
    --color-primary-gold-rgb: 255, 200, 10;

    /* Neutral Colors */
    --color-bg: #f8f9fa;
    --color-bg-alt: #ffffff;
    --color-white: #ffffff;
    --color-text-dark: #1e293b;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;

    /* Support Colors */
    --color-success: #10b981;
    --color-error: #ef4444;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-title: 'Outfit', sans-serif;

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

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 27, 61, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 27, 61, 0.12);
    --shadow-premium: 0 20px 40px rgba(0, 27, 61, 0.15);

    /* Container Width */
    --container-width: 1200px;
    --header-height: 100px;
}

/* 2. BASE RESET & INITIALIZATION */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

input,
select,
textarea,
button {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* 3. LAYOUT UTILITIES */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

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

.section-tagline {
    font-family: var(--font-title);
    color: var(--color-primary-navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.section-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-primary-gold);
    border-radius: 50%;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary-navy);
    line-height: 1.2;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-top: 15px;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: var(--color-primary-gold);
    margin: 20px auto 0 auto;
    border-radius: 20px;
}

/* 4. BUTTONS & CTA INTERACTIVES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-title);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 60px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--color-primary-gold);
    color: var(--color-primary-navy);
    box-shadow: 0 4px 14px rgba(255, 200, 10, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 200, 10, 0.4);
}

.btn-secondary {
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(0, 27, 61, 0.2);
}

.btn-secondary:hover {
    background-color: #0b2d54;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 27, 61, 0.3);
}

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

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* 5. HEADER & RESPONSIVE NAVBAR */
.runway-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary-gold), #ffeb3b);
    z-index: 1001;
    transition: width 0.1s ease-out;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-white);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    height: 80px;
    /* adjusted scrolled height to comfortably fit logo */
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.header.scrolled .brand-name {
    color: var(--color-primary-navy);
}

.header.scrolled .brand-sub {
    color: rgba(0, 27, 61, 0.75);
}

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

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

.header.scrolled .nav-link:hover {
    color: #0c3666;
}

.header.scrolled .mobile-toggle {
    color: var(--color-primary-navy);
}

.header.scrolled .nav-cta {
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(0, 27, 61, 0.15);
}

.header.scrolled .nav-cta:hover {
    background-color: #0b2d54;
    color: var(--color-white);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: width var(--transition-normal), height var(--transition-normal), transform var(--transition-fast);
}

.header.scrolled .logo-img {
    width: 70px;
    height: 70px;
}

.logo-container:hover .logo-img {
    transform: scale(1.05);
}

.logo-img.small {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

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

.brand-name {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--color-primary-navy);
    letter-spacing: 0.5px;
    line-height: 1.1;
    transition: color var(--transition-normal);
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    transition: color var(--transition-normal);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-primary-navy);
    transition: color var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

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

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

.nav-cta {
    padding: 8px 20px;
    font-size: 0.95rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    color: var(--color-primary-navy);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

/* 6. MOBILE DRAWER */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: var(--color-primary-navy);
    z-index: 1003;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    transition: right var(--transition-normal);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.drawer-header .brand-name {
    color: var(--color-white);
}

.drawer-close {
    background: transparent;
    color: var(--color-white);
    cursor: pointer;
    font-size: 1.5rem;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: auto;
}

.drawer-link {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-link:hover {
    color: var(--color-primary-gold);
}

.drawer-cta {
    margin-top: 15px;
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.drawer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* 7. SKY ANIMATION LAYER (REMOVED GLOBALS) */


/* 8. HERO BANNER SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 720px;
    background-color: var(--color-primary-navy);
    background-image: linear-gradient(rgba(0, 27, 61, 0.35), rgba(0, 27, 61, 0.35)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 140px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 27, 61, 0.15);
    z-index: 1;
}

.about-person-img {
    position: absolute;
    bottom: 0;
    right: -130px;
    height: 420px;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(-5px 5px 15px rgba(0, 27, 61, 0.15));
    transform: scaleX(-1);
    /* Flips character pointing to the left towards text */
    opacity: 0.95;
    transition: transform var(--transition-normal);
}

.about-section:hover .about-person-img {
    transform: scaleX(-1) translateY(-5px);
}

@media (max-width: 1200px) {
    .about-person-img {
        height: 350px;
        right: -90px;
    }
}

@media (max-width: 992px) {
    .about-person-img {
        height: 280px;
        right: -60px;
    }

    .about-section {
        padding-bottom: 160px !important;
    }
}

@media (max-width: 576px) {
    .about-person-img {
        height: 200px;
        right: -50px;
    }

    .about-section {
        padding-bottom: 140px !important;
    }
}

.hero-container-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.badge-transit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 200, 10, 0.15);
    color: var(--color-primary-gold);
    border: 1px solid rgba(255, 200, 10, 0.3);
    padding: 6px 16px;
    border-radius: 40px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 200, 10, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(255, 200, 10, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 200, 10, 0);
    }
}

.hero-title {
    font-family: var(--font-title);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--color-primary-gold);
    position: relative;
}

.airport-highlight-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(0, 27, 61, 0.5);
    border: 1.5px dashed var(--color-primary-gold);
    padding: 12px 24px;
    border-radius: 8px;
    margin: 10px auto 25px auto;
    font-size: 1.1rem;
    max-width: 650px;
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(5px);
}

.pin-gold {
    color: var(--color-primary-gold);
    animation: pinBounce 2s infinite ease-in-out;
}

@keyframes pinBounce {

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

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

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-booking-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary-gold);
    color: var(--color-primary-navy);
    z-index: 3;
    padding: 14px 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
}

.qb-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.qb-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
}

.qb-icon {
    width: 18px;
    height: 18px;
    animation: spinSlow 4s linear infinite;
}

@keyframes spinSlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.qb-btn {
    padding: 6px 18px;
    font-size: 0.85rem;
    box-shadow: none;
    border: 2px solid var(--color-primary-navy);
}

.qb-btn:hover {
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    transform: none;
    box-shadow: none;
}

/* 9. ABOUT US SECTION */
.about-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-alt);
    /* #ffffff */
}

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

.about-img-box {
    position: relative;
    padding-right: 25px;
    padding-bottom: 25px;
}

.about-main-image-placeholder {
    height: 380px;
    background-image: url('../images/hotel_exterior.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.about-main-image-placeholder .visual-fallback {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background-color: rgba(0, 27, 61, 0.25);
    text-align: center;
    gap: 12px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.15rem;
    transition: background-color var(--transition-normal);
}

.about-main-image-placeholder:hover .visual-fallback {
    background-color: rgba(0, 27, 61, 0.75);
}

.fallback-icon {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
    color: var(--color-primary-gold);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    left: -20px;
    background-color: var(--color-primary-gold);
    color: var(--color-primary-navy);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: floatBadge 3s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
        box-shadow: var(--shadow-md);
    }

    100% {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(255, 200, 10, 0.25);
    }
}

.experience-badge .number {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.about-text-box h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--color-primary-navy);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.about-highlights {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 16px;
}

.highlight-item .icon-wrap {
    width: 46px;
    height: 46px;
    background-color: rgba(0, 27, 61, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-navy);
    flex-shrink: 0;
}

.highlight-item .icon-wrap i {
    width: 20px;
    height: 20px;
}

.highlight-item h4 {
    font-family: var(--font-title);
    color: var(--color-primary-navy);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight-item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* 10. ROOMS SECTION */
.rooms-section {
    background-color: var(--color-bg);
    /* #f8f9fa */
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.room-card {
    background-color: var(--color-bg-alt);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 200, 10, 0.3);
}

.room-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.room-img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform var(--transition-slow);
}

.room-card:hover .room-img-placeholder {
    transform: scale(1.06);
}

.double-room-placeholder {
    background-image: url('../images/standard_double.jpg');
}

.twin-room-placeholder {
    background-image: url('../images/standard_twin.jpg');
}

.triple-room-placeholder {
    background-image: url('../images/standard_triple.jpg');
}

.room-img-placeholder .visual-fallback {
    background-color: rgba(0, 27, 61, 0.7);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.room-card:hover .room-img-placeholder .visual-fallback {
    opacity: 1;
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 40px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.room-badge.yellow {
    background-color: var(--color-primary-gold);
    color: var(--color-primary-navy);
}

.room-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 12px;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-meta i {
    width: 14px;
    height: 14px;
}

.room-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: var(--color-primary-navy);
    font-weight: 700;
    margin-bottom: 10px;
}

.room-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.room-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    margin-top: auto;
}

.room-features li {
    font-size: 0.85rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--color-success);
}

.room-footer {
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.select-room-btn {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
}

.animate-twin {
    animation: floatTwin 3s ease-in-out infinite alternate;
}

@keyframes floatTwin {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

/* 11. AMENITIES SECTION */
.amenities-section {
    background-color: #fefcf0;
    color: var(--color-primary-navy);
    border-top: 1px solid rgba(255, 200, 10, 0.2);
    border-bottom: 1px solid rgba(255, 200, 10, 0.2);
}

.amenities-section .section-title {
    color: var(--color-primary-navy);
}

.amenities-section .section-tagline {
    color: var(--color-primary-navy);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.amenity-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 30px;
    border-radius: 16px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.amenity-card:hover {
    background-color: var(--color-white);
    transform: translateY(-5px);
    border-color: var(--color-primary-gold);
    box-shadow: var(--shadow-md);
}

.amenity-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 200, 10, 0.15);
    color: var(--color-primary-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.amenity-icon-box i {
    width: 24px;
    height: 24px;
    color: var(--color-primary-navy);
}

.amenity-card h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-primary-navy);
}

.amenity-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.additional-services-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary-navy);
}

.service-item i {
    width: 18px;
    height: 18px;
    color: var(--color-primary-gold-hover);
}

/* 12. NEARBY LOCATIONS (Leaflet Map) */
.nearby-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-alt);
    /* #ffffff */
}

.nearby-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    height: 520px;
}

.nearby-list-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Custom Scrollbar for NearBy list */
.nearby-list-panel::-webkit-scrollbar {
    width: 6px;
}

.nearby-list-panel::-webkit-scrollbar-thumb {
    background-color: var(--color-border);
    border-radius: 10px;
}

.nearby-card {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.nearby-card:hover {
    border-color: var(--color-primary-gold);
    background-color: rgba(255, 200, 10, 0.02);
}

.nearby-card.active {
    border-color: var(--color-primary-navy);
    background-color: rgba(0, 27, 61, 0.02);
    box-shadow: var(--shadow-sm);
}

.nearby-card.active::before {
    content: '';
    width: 4px;
    background-color: var(--color-primary-gold);
    margin-left: -16px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.nearby-img-mini {
    width: 46px;
    height: 46px;
    background-color: rgba(0, 27, 61, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-navy);
    flex-shrink: 0;
}

.nearby-card.active .nearby-img-mini {
    background-color: var(--color-primary-gold);
    color: var(--color-primary-navy);
}

.nearby-img-mini i {
    width: 20px;
    height: 20px;
}

.nearby-details h3 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin-bottom: 2px;
}

.nearby-details .distance {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary-gold-hover);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.nearby-details .desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.nearby-map-panel {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
}

#leaflet-map {
    width: 100%;
    flex-grow: 1;
    z-index: 10;
}

.map-loading {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    z-index: 20;
}

.spinner {
    animation: rotate 1s linear infinite;
    color: var(--color-primary-navy);
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.map-instruction {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #f1f5f9;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    z-index: 11;
}

.map-instruction i {
    width: 14px;
    height: 14px;
    color: var(--color-primary-navy);
}

/* Leaflet map popup formatting override */
.leaflet-popup-content-wrapper {
    border-radius: 8px !important;
    font-family: var(--font-primary);
    padding: 4px;
}

.leaflet-popup-content h4 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-primary-navy);
    margin-bottom: 4px;
}

.leaflet-popup-content p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* 13. GALLERY SECTION */
.gallery-section {
    background-color: var(--color-bg);
    /* #f8f9fa */
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.06);
}

.gallery-item:nth-child(1) .gallery-placeholder {
    background-image: url('../images/standard_double.jpg');
}

.gallery-item:nth-child(2) .gallery-placeholder {
    background-image: url('../images/reception.jpg');
}

.gallery-item:nth-child(3) .gallery-placeholder {
    background-image: url('../images/standard_twin.jpg');
}

.gallery-item:nth-child(4) .gallery-placeholder {
    background-image: url('../images/hotel_exterior.jpg');
}

.gallery-item:nth-child(5) .gallery-placeholder {
    background-image: url('../images/standard_triple.jpg');
}

.gallery-item:nth-child(6) .gallery-placeholder {
    background-image: url('../images/amenities.jpg');
}

.gallery-item:nth-child(7) .gallery-placeholder {
    background-image: url('../images/restroom.jpg');
}

.gallery-item:nth-child(8) .gallery-placeholder {
    background-image: url('../images/amenities1.jpg');
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 10, 30, 0.82));
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px 16px 14px 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
    color: var(--color-white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary-gold);
    margin-bottom: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
}

.gallery-overlay p {
    display: none;
}

/* 14. BOOKING FORM & DIRECT SUPPORT */
.booking-section {
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.booking-form-wrapper {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 30px;
}

.form-header .tag {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary-gold-hover);
    margin-bottom: 6px;
    display: inline-block;
}

.form-header h2 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--color-primary-navy);
    font-weight: 800;
    margin-bottom: 8px;
}

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

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label .required {
    color: var(--color-error);
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper i,
.input-icon-wrapper svg {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    pointer-events: none;
}

.input-icon-wrapper input,
.input-icon-wrapper select {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: var(--color-bg);
    color: var(--color-text-dark);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.input-icon-wrapper input:focus,
.input-icon-wrapper select:focus {
    border-color: var(--color-primary-navy);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(0, 27, 61, 0.05);
}

/* Textarea Custom Styling */
.input-icon-wrapper.textarea-wrapper {
    align-items: flex-start;
}

.input-icon-wrapper.textarea-wrapper i,
.input-icon-wrapper.textarea-wrapper svg {
    top: 14px;
}

.input-icon-wrapper textarea {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: var(--color-bg);
    color: var(--color-text-dark);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    resize: vertical;
    min-height: 110px;
}

.input-icon-wrapper textarea:focus {
    border-color: var(--color-primary-navy);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(0, 27, 61, 0.05);
}

.form-group.invalid textarea {
    border-color: var(--color-error);
}

/* Custom error message */
.error-msg {
    display: none;
    font-size: 0.75rem;
    color: var(--color-error);
    margin-top: 4px;
}

.form-group.invalid input,
.form-group.invalid select {
    border-color: var(--color-error);
}

.form-group.invalid .error-msg {
    display: block;
}

/* Custom Checkbox */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--color-text-dark);
    user-select: none;
}

.checkbox-label input {
    display: none;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--color-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
    flex-shrink: 0;
    transition: all var(--transition-fast);
    margin-top: 2px;
}

.checkbox-label input:checked+.custom-checkbox {
    background-color: var(--color-primary-navy);
    border-color: var(--color-primary-navy);
}

.checkbox-label input:checked+.custom-checkbox::before {
    content: '\e144';
    /* Lucide icon font code for check or simply styled pseudo element */
    content: '';
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(-45deg) translateY(-1px);
}

.checkbox-text {
    line-height: 1.4;
}

.link-inline {
    color: var(--color-primary-navy);
    text-decoration: underline;
    font-weight: 600;
}

/* Direct Contact columns */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-card-premium {
    background: linear-gradient(135deg, var(--color-primary-gold) 0%, #e0a300 100%);
    color: var(--color-primary-navy);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 27, 61, 0.1);
}



.contact-card-premium::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 27, 61, 0.03);
    top: -50px;
    right: -50px;
}

.badge-active {
    display: inline-block;
    background-color: var(--color-success);
    color: var(--color-white);
    font-size: 0.7rem;
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.contact-card-premium h3 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-sub {
    color: rgba(0, 27, 61, 0.8);
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.direct-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-method-item {
    background-color: rgba(0, 27, 61, 0.05);
    border: 1px solid rgba(0, 27, 61, 0.1);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition-fast);
    color: var(--color-primary-navy);
}

.contact-method-item:hover {
    background-color: rgba(0, 27, 61, 0.1);
    border-color: var(--color-primary-navy);
    transform: translateX(4px);
}

.method-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.method-icon-wrap.phone {
    background-color: rgba(0, 27, 61, 0.1);
    color: var(--color-primary-navy);
}

.method-icon-wrap.whatsapp {
    background-color: rgba(16, 185, 129, 0.15);
    color: #047857;
}

.method-icon-wrap.email {
    background-color: rgba(0, 27, 61, 0.1);
    color: var(--color-primary-navy);
}

.method-icon-wrap i {
    width: 18px;
    height: 18px;
}

.method-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.method-details span {
    font-size: 0.75rem;
    color: rgba(0, 27, 61, 0.75);
}

.method-details strong {
    font-size: 0.95rem;
    font-weight: 700;
    word-break: break-all;
    overflow-wrap: break-word;
    font-family: var(--font-title);
}

.arrow-method {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

.location-brief {
    border-top: 1px solid rgba(0, 27, 61, 0.15);
    padding-top: 25px;
    display: flex;
    gap: 12px;
}

.location-brief i {
    width: 20px;
    height: 20px;
    color: var(--color-primary-navy);
    flex-shrink: 0;
}

.location-brief h4 {
    font-family: var(--font-title);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.location-brief p {
    font-size: 0.75rem;
    color: rgba(0, 27, 61, 0.85);
    line-height: 1.4;
}

/* 15. FOOTER */
.footer {
    background-color: var(--color-primary-navy);
    color: rgba(255, 255, 255, 0.7);
    border-top: 4px solid var(--color-primary-gold);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-col h3 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--color-white);
}

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

.footer-pitch {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 15px;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    color: var(--color-white);
}

.social-links a:hover {
    background-color: var(--color-primary-gold);
    color: var(--color-primary-navy);
    transform: translateY(-3px);
}

.social-links i {
    width: 16px;
    height: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary-gold);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list li i,
.footer-contact-list li svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary-gold);
    flex-shrink: 0;
}

.footer-contact-list a {
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.terms-link-corner {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.terms-link-corner:hover {
    color: var(--color-primary-gold);
}

.footer .brand-name {
    color: var(--color-white);
}

/* 16. MODAL & CONFIRMATION UX */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 27, 61, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.booking-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.booking-modal-content {
    background-color: var(--color-white);
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    transform: translateY(30px);
    transition: transform var(--transition-normal);
}

.booking-modal-overlay.open .booking-modal-content {
    transform: translateY(0);
}

.success-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.success-icon-wrapper i {
    width: 30px;
    height: 30px;
    stroke-width: 2.5;
}

.booking-modal-content h2 {
    font-family: var(--font-title);
    color: var(--color-primary-navy);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.booking-modal-content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.modal-booking-summary {
    background-color: var(--color-bg);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--color-border);
}

.sum-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.sum-row span {
    color: var(--color-text-muted);
}

.sum-row strong {
    color: var(--color-primary-navy);
    font-weight: 700;
}

.modal-notice {
    font-size: 0.75rem !important;
    background-color: rgba(255, 200, 10, 0.1);
    color: var(--color-primary-navy) !important;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 200, 10, 0.2);
}

#close-modal-btn {
    width: 100%;
}

/* 17. RESPONSIVE DESIGN MEDIA QUERIES */

/* Large screens and desktop scaling */
@media (max-width: 1200px) {
    .container {
        padding-right: 30px;
        padding-left: 30px;
    }
}

/* Tablet Screens (992px & below) */
@media (max-width: 992px) {
    .hero-container-inner {
        padding-top: 20px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3.2rem;
        letter-spacing: -0.5px;
    }

    .airport-highlight-box {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-box {
        padding-right: 0;
        padding-bottom: 0;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .experience-badge {
        left: 20px;
    }

    .nearby-grid-layout {
        grid-template-columns: 1fr;
        height: auto;
    }

    .nearby-list-panel {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }

    .nearby-map-panel {
        height: 350px;
    }

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

    .booking-form-wrapper,
    .contact-card-premium {
        max-width: 580px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .brand-col {
        grid-column: span 2;
    }

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

/* Medium Devices (768px & below) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .airport-highlight-box {
        font-size: 0.95rem;
        padding: 8px 16px;
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-form-wrapper,
    .contact-card-premium {
        padding: 24px;
    }

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

    .brand-col {
        grid-column: span 1;
    }

    .qb-container {
        justify-content: center;
        text-align: center;
    }

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

    .gallery-item {
        height: 170px;
    }

    .nearby-list-panel {
        max-height: none;
    }

    /* Hide some decorative planes on mobile for performance */
    .plane-5,
    .plane-7 {
        display: none;
    }
}

/* Small devices (480px & below) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .experience-badge {
        padding: 10px 16px;
    }

    .experience-badge .number {
        font-size: 1.8rem;
    }

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

    .gallery-item {
        height: 200px;
    }

    .nearby-list-panel {
        max-height: none;
    }

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

    .airport-highlight-box {
        font-size: 0.88rem;
    }

    .booking-form-wrapper,
    .contact-card-premium {
        padding: 20px 16px;
    }

    .method-details strong {
        font-size: 0.85rem;
    }
}

/* Additional scattered aeroplane path animations — section decorative */

/* Drifting/Flying planes inside sections */
/* Custom Floating animations for PNG Airplane images inside specific sections */
.about-airplane-container {
    position: absolute;
    /*top: -40px;*/
    left: 10px;
    width: 300px;
    z-index: 3;
    pointer-events: none;
}

.about-airplane {
    width: 100%;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    animation: floatAboutPlane 8s ease-in-out infinite alternate;
}

@keyframes floatAboutPlane {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    100% {
        transform: translateY(-15px) rotate(-5deg) scale(1.05);
    }
}


.nearby-airplane-container {
    position: absolute;
    width: 300px;
    z-index: 3;
    pointer-events: none;
}

.nearby-airplane {
    width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
    animation: floatNearbyPlane 10s ease-in-out infinite alternate;
}

@keyframes floatNearbyPlane {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    100% {
        transform: translateY(-20px) rotate(4deg) scale(1.08);
    }
}

@media (max-width: 992px) {
    .nearby-airplane-container {
        width: 160px;
        top: -30px;
        left: -20px;
        opacity: 0.7;
    }
}

@media (max-width: 576px) {
    .nearby-airplane-container {
        width: 150px;
        top: 20px;
        left: 5px;

    }
}

@media (max-width: 992px) {
    /* Responsive overrides */
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary-navy);
    color: var(--color-primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 999;
    border: 2px solid var(--color-primary-gold);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-primary-gold);
    color: var(--color-primary-navy);
    border-color: var(--color-primary-navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

/* Scroll Reveal Animation System */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--color-white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 999;
    font-size: 28px;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-sticky:hover {
    background-color: #128c7e;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 24px rgba(18, 140, 126, 0.4);
}

.whatsapp-sticky svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    animation: whatsappIconPulse 4s infinite ease-in-out;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), var(--shadow-lg);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), var(--shadow-lg);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), var(--shadow-lg);
    }
}

@keyframes whatsappIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    10%, 20% {
        transform: scale(1.15) rotate(-5deg);
    }
    15% {
        transform: scale(1.15) rotate(5deg);
    }
    30% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .whatsapp-sticky {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
    }
    .whatsapp-sticky svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 576px) {
    .whatsapp-sticky {
        bottom: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
    }
    .whatsapp-sticky svg {
        width: 20px;
        height: 20px;
    }
}

/* Call Sticky Button */
.call-sticky {
    position: fixed;
    bottom: 105px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary-navy);
    color: var(--color-primary-gold) !important;
    border: 2px solid var(--color-primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 999;
    font-size: 24px;
    animation: callPulse 2.5s infinite;
}

.call-sticky:hover {
    background-color: var(--color-primary-gold);
    color: var(--color-primary-navy) !important;
    border-color: var(--color-primary-navy);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 27, 61, 0.4);
}

.call-sticky svg, .call-sticky i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: callIconPulse 3s infinite ease-in-out;
}

@keyframes callPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 203, 10, 0.6), var(--shadow-lg);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(253, 203, 10, 0), var(--shadow-lg);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(253, 203, 10, 0), var(--shadow-lg);
    }
}

@keyframes callIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.2) rotate(-10deg);
    }
    25% {
        transform: scale(1.2) rotate(10deg);
    }
    35% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .call-sticky {
        bottom: 80px;
        left: 20px;
        width: 48px;
        height: 48px;
    }
    .call-sticky svg, .call-sticky i {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 576px) {
    .call-sticky {
        bottom: 65px;
        left: 15px;
        width: 40px;
        height: 40px;
    }
    .call-sticky svg, .call-sticky i {
        width: 20px;
        height: 20px;
    }
}

/* FORM SCHEDULING EXPIRED BANNER */
.schedule-expired-banner {
    background-color: #fef3c7;
    border-left: 4px solid #d97706;
    color: #92400e;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.schedule-expired-banner i,
.schedule-expired-banner svg {
    width: 20px;
    height: 20px;
    color: #d97706;
    flex-shrink: 0;
}