@charset "utf-8";
/* CSS Document */
        body {
            font-family: "Trebuchet MS", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
        }
        p{color: black!important;}
        /* Main Content Container */ 
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px; 
        }

        /* Hero Section */
   .hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 20px 20px; /* Reduced from 60px to 30px */
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-section h1 {
    font-size: 2em; /* Reduced from 2.5em */
    margin-bottom: 10px; /* Slightly less margin */
    font-weight: 700;
}

.hero-section p {
    font-size: 1em; /* Reduced from 1.2em */
    opacity: 0.95;
}


        /* Language Selector */
        .language-selector {
            text-align: center;
            margin: 30px 0;
        }

        .language-selector .dropdown-toggle {
            background: white;
            border: 2px solid #0d6efd;
            border-radius: 15px;
            padding: 12px 30px;
            color: #0d6efd;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
        }

        .language-selector .dropdown-toggle:hover {
            background: #0d6efd;
            color: white;
        }

        /* Step Cards */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .step-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: bold;
            font-size: 1.2em;
            margin-bottom: 15px;
        }

        .step-card h3 {
            color: #0d6efd;
            margin-bottom: 15px;
            font-size: 1.4em;
        }

        /* Alert Boxes */
        .alert-box {
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid;
        }

        .alert-danger {
            background: #fff5f5;
            border-color: #e53e3e;
        }

        .alert-warning {
            background: #fffaf0;
            border-color: #dd6b20;
        }

        .alert-info {
            background: #ebf8ff;
            border-color: #3182ce;
        }

        .alert-box h4 {
            margin-top: 0;
            font-size: 1.5em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .alert-box .icon {
            font-size: 1.8em;
        }

        /* Terminal Locations */
        .terminal-locations {
            margin: 50px 0;
        }

        .terminal-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .terminal-header {
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
            color: white;
            padding: 20px 30px;
            font-size: 1.3em;
            font-weight: 600;
        }

        .terminal-content {
            padding: 30px;
        }

        .terminal-content img {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        /* Quick Tips */
        .quick-tips {
            background: #f7fafc;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }

        .quick-tips h3 {
            color: #0d6efd;
            margin-bottom: 20px;
            font-size: 1.6em;
        }

        .quick-tips ul {
            list-style: none;
            padding: 0;
        }

        .quick-tips li {
            padding: 12px 0 12px 35px;
            position: relative;
            border-bottom: 1px solid #e2e8f0;
        }

        .quick-tips li:last-child {
            border-bottom: none;
        }

        .quick-tips li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #48bb78;
            font-weight: bold;
            font-size: 1.3em;
        }

        /* Image with Text */
        .image-text-section {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .image-text-section img {
            flex: 0 0 auto;
            max-width: 200px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .image-text-section .text-content {
            flex: 1;
            min-width: 300px;
        }

        /* Video Section */
        .video-section {
            text-align: center;
            padding: 50px 0;
            background: #f7fafc;
            border-radius: 12px;
            margin: 40px 0;
        }

        .video-section h3 {
            color: #0d6efd;
            margin-bottom: 30px;
            font-size: 1.8em;
        }

        .video-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .video-wrapper iframe {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        /* Highlight Text */
        .highlight {
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
        }

        .text-red {
            color: #e53e3e;
            font-weight: 700;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 1.8em;
            }

            .steps-container {
                grid-template-columns: 1fr;
            }

            .image-text-section {
                flex-direction: column;
            }

            .image-text-section img {
                flex: 0 0 100%;
            }
        }

        /* Additional Spacing */
        section {
            margin: 50px 0;
        }

        .section-title {
            color: #0d6efd;
            font-size: 2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
        }

        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #0d6efd, transparent);
            margin: 40px 0;
        }

        /* Image Modal/Lightbox */
        .clickable-image {
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .clickable-image:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .image-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            cursor: pointer;
        }

        .image-modal img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 90%;
            max-height: 90%;
            box-shadow: 0 0 50px rgba(0,0,0,0.5);
        }

        .image-modal .close-modal {
            position: absolute;
            top: 20px;
            right: 40px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10000;
        }

        .image-modal .close-modal:hover {
            color: #0d6efd;
        }
.language-selector .dropdown-menu {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px;
    min-width: 200px;
    margin-top: 10px;
}

.language-selector .dropdown-item {
    padding: 10px 15px;
    color: #495057;
    text-decoration: none;
    display: block;
    border-radius: 5px;
    transition: background-color 0.2s;
}
        
.language-selector .dropdown-menu {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px;
    min-width: 200px;
    margin-top: 10px;
}

.language-selector .dropdown-item {
    padding: 10px 15px;
    color: #495057;
    text-decoration: none;
    display: block;
    border-radius: 5px;
    transition: background-color 0.2s;
}        

.large-emoji {
  font-size: 1.2em; 
    color: dodgerblue;
}
   .footer {
            background: #0b2022;
            color: rgba(255,255,255,.6);
            font-size: 13px;
            margin: 0;
            padding: 32px 0;
        }
        .footer .copyright { align-items: center; display: flex; }
        .social-icons {
            display: flex;
            gap: 14px;
            justify-content: flex-end;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .social-icons a { color: rgba(255,255,255,.75); transition: color .2s ease; }
        .social-icons a:hover { color: #7fd8cf; }

 .navbar {
            background: rgba(255,255,255,.96);
            border-bottom: 1px solid rgba(16,42,44,.08);
            box-shadow: 0 8px 30px rgba(16,42,44,.06);
            min-height: 82px;
            padding: 10px 0;
            position: relative;
            z-index: 1100;
        }
        .navbar-brand img { height: 55px; object-fit: contain; width: auto; }
        .navbar .nav-link {
            color: var(--ink);
            font-size: 13px;
            font-weight: 700;
            padding: 12px 10px !important;
        }
        .navbar .nav-link:hover,
        .navbar .nav-link:focus,
        .navbar .nav-link.active { color: var(--ocean); }
        .navbar-toggler { border: 1px solid var(--line); box-shadow: none !important; }
        .dropdown-menu {
            border: 0;
            border-radius: 14px;
            box-shadow: 0 18px 45px rgba(16,42,44,.14);
            padding: 10px;
        }
        .dropdown-item {
            border-radius: 8px;
            color: var(--ink);
            font-size: 13px;
            padding: 9px 12px;
        }
        .dropdown-item:hover { background: var(--mist); color: var(--ocean-dark); }

/* Modern airport guide — scoped so the shared header and footer remain unchanged */
.airport-guide {
    --guide-navy: #0d2f3f;
    --guide-ocean: #087f8c;
    --guide-ocean-dark: #05626c;
    --guide-aqua: #dff6f4;
    --guide-sand: #f6f2e9;
    --guide-coral: #e85d4a;
    --guide-amber: #f2a541;
    --guide-ink: #17313d;
    --guide-muted: #5d717a;
    --guide-line: #dce8e9;
    --guide-white: #ffffff;
    box-sizing: border-box;
    color: var(--guide-ink);
    font-family: "Montserrat", sans-serif;
    max-width: 1240px;
    min-width: 0;
    padding: clamp(18px, 4vw, 48px) clamp(16px, 3vw, 36px) 72px;
    width: 100% !important;
}

.airport-guide *,
.airport-guide *::before,
.airport-guide *::after {
    box-sizing: border-box;
}

.airport-guide section {
    margin: clamp(56px, 8vw, 96px) 0;
    min-width: 0;
}

.airport-guide p {
    color: var(--guide-muted) !important;
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 16px;
}

.airport-guide .guide-hero {
    background:
        radial-gradient(circle at 85% 15%, rgba(255,255,255,.18) 0 1px, transparent 2px) 0 0 / 18px 18px,
        linear-gradient(120deg, var(--guide-navy) 0%, var(--guide-ocean) 100%);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(13,47,63,.18);
    color: var(--guide-white);
    margin: 0;
    overflow: hidden;
    padding: clamp(48px, 8vw, 86px) clamp(24px, 7vw, 78px);
    position: relative;
}

.airport-guide .guide-hero::after {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    content: "";
    height: 340px;
    position: absolute;
    right: -120px;
    top: -145px;
    width: 340px;
}

.airport-guide .guide-hero__content {
    max-width: 850px;
    position: relative;
    z-index: 1;
}

.airport-guide .guide-eyebrow,
.airport-guide .section-kicker {
    align-items: center;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    gap: 8px;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.airport-guide .guide-eyebrow {
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    padding: 9px 14px;
}

.airport-guide .guide-hero h1 {
    color: var(--guide-white);
    font-size: clamp(34px, 5.6vw, 64px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.03;
    margin: 24px 0 20px;
    max-width: 850px;
    overflow-wrap: anywhere;
}

.airport-guide .guide-hero p {
    color: rgba(255,255,255,.82) !important;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    max-width: 700px;
}

.airport-guide .guide-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.airport-guide .guide-hero__facts span {
    align-items: center;
    background: rgba(0,0,0,.13);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    padding: 10px 13px;
}

.airport-guide .language-selector {
    display: flex;
    justify-content: flex-end;
    margin: 18px 0 0;
}

.airport-guide .language-selector .dropdown-toggle {
    align-items: center;
    background: var(--guide-white);
    border: 1px solid var(--guide-line);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(13,47,63,.08);
    color: var(--guide-navy);
    display: inline-flex;
    font-size: 13px;
    gap: 9px;
    padding: 11px 16px;
}

.airport-guide .language-selector .dropdown-toggle:hover,
.airport-guide .language-selector .dropdown-toggle:focus,
.airport-guide .language-selector .dropdown-toggle.show {
    background: var(--guide-aqua);
    border-color: rgba(8,127,140,.25);
    color: var(--guide-ocean-dark);
}

.airport-guide .language-selector .dropdown-menu {
    border: 1px solid var(--guide-line);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(13,47,63,.16);
    margin-top: 8px !important;
    padding: 8px;
}

.airport-guide .language-selector .dropdown-item {
    align-items: center;
    border-radius: 9px;
    display: flex;
    font-size: 13px;
    gap: 10px;
    padding: 10px 12px;
}

.airport-guide .section-title,
.airport-guide .section-intro h2 {
    color: var(--guide-navy);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.airport-guide .section-title {
    margin: 0 auto 34px;
    max-width: 760px;
}

.airport-guide .section-intro {
    margin: 0 auto 34px;
    max-width: 720px;
    text-align: center;
}

.airport-guide .section-intro h2 {
    margin: 10px 0 12px;
}

.airport-guide .section-intro p {
    margin: 0;
}

.airport-guide .section-kicker {
    color: var(--guide-ocean);
}

.airport-guide .overview-section {
    align-items: stretch;
    display: grid;
    gap: clamp(28px, 5vw, 56px);
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
}

.airport-guide .overview-section .section-title {
    display: none;
}

.airport-guide .image-text-section {
    display: contents;
    margin: 0;
}

.airport-guide .image-text-section > img {
    align-self: stretch;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(13,47,63,.15);
    height: 100%;
    max-height: 460px;
    max-width: none !important;
    min-height: 350px;
    object-fit: cover;
    width: 100%;
}

.airport-guide .image-text-section .text-content {
    align-self: center;
    min-width: 0;
}

.airport-guide .image-text-section .text-content::before {
    color: var(--guide-ocean);
    content: attr(data-kicker);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
    margin-bottom: 12px;
}

.airport-guide .image-text-section .text-content > p:first-child {
    color: var(--guide-ink) !important;
    font-size: clamp(18px, 2.2vw, 23px) !important;
    font-weight: 600;
    letter-spacing: -.015em;
    line-height: 1.55;
}

.airport-guide .image-text-section .text-content > div {
    background: var(--guide-aqua) !important;
    border: 1px solid rgba(8,127,140,.14);
    border-radius: 18px !important;
    margin-top: 26px !important;
    padding: 20px 22px !important;
}

.airport-guide .image-text-section .text-content > div strong {
    color: var(--guide-ocean-dark) !important;
}

.airport-guide .image-text-section ul {
    display: grid;
    gap: 9px;
    list-style: none;
    margin: 14px 0 0 !important;
    padding: 0;
}

.airport-guide .image-text-section li {
    background: rgba(255,255,255,.7);
    border-radius: 10px;
    padding: 10px 12px;
}

.airport-guide .divider {
    display: none;
}

.airport-guide .arrival-section {
    background: #f5f9f9;
    border: 1px solid var(--guide-line);
    border-radius: 28px;
    padding: clamp(30px, 5vw, 54px);
}

.airport-guide .steps-container {
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
}

.airport-guide .step-card {
    border: 1px solid var(--guide-line);
    border-radius: 18px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    padding: 26px;
    position: relative;
}

.airport-guide .step-card:hover {
    border-color: rgba(8,127,140,.35);
    box-shadow: 0 16px 35px rgba(13,47,63,.1);
    transform: translateY(-4px);
}

.airport-guide .step-number {
    background: var(--guide-navy);
    border-radius: 12px;
    font-size: 14px;
    height: 42px;
    line-height: 42px;
    margin-bottom: 20px;
    width: 42px;
}

.airport-guide .step-card h3 {
    color: var(--guide-navy);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}

.airport-guide .step-card p {
    font-size: 14px;
}

.airport-guide .step-card img {
    border-radius: 12px !important;
    box-shadow: none !important;
    margin-top: auto;
    max-height: 155px;
    max-width: none !important;
    object-fit: cover;
    width: 100% !important;
}

.airport-guide .highlight {
    background: var(--guide-navy);
}

.airport-guide .text-red {
    color: var(--guide-coral);
}

.airport-guide .safety-section {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.airport-guide .safety-section .section-intro {
    grid-column: 1 / -1;
}

.airport-guide .alert-box {
    border: 1px solid;
    border-left-width: 1px;
    border-radius: 20px;
    margin: 0;
    padding: 26px;
}

.airport-guide .alert-danger {
    background: #fff7f5;
    border-color: #f2d5cf;
}

.airport-guide .alert-warning {
    background: #fffaf1;
    border-color: #f2dfb8;
}

.airport-guide .alert-box h4 {
    align-items: flex-start;
    color: var(--guide-navy);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 16px;
}

.airport-guide .alert-box .icon {
    align-items: center;
    background: var(--guide-white);
    border-radius: 10px;
    display: inline-flex;
    flex: 0 0 38px;
    font-size: 19px;
    height: 38px;
    justify-content: center;
}

.airport-guide .alert-box p,
.airport-guide .alert-box li {
    font-size: 13px;
}

.airport-guide .alert-box ul {
    margin: 15px 0 15px 18px !important;
    padding: 0;
}

.airport-guide .alert-box > div,
.airport-guide .alert-box > p[style] {
    background: rgba(255,255,255,.75) !important;
    border: 1px solid rgba(13,47,63,.07);
    border-radius: 12px !important;
    padding: 14px !important;
}

.airport-guide .help-section {
    margin-bottom: 38px;
}

.airport-guide .help-section .alert-info {
    align-items: center;
    background: linear-gradient(120deg, var(--guide-navy), var(--guide-ocean));
    border: 0;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(13,47,63,.16);
    display: grid;
    grid-template-columns: auto 1fr;
    padding: clamp(26px, 5vw, 46px);
}

.airport-guide .help-section .alert-info h4 {
    color: var(--guide-white);
    font-size: clamp(22px, 3vw, 32px);
}
 
.airport-guide .help-section .alert-info p {
    background: rgba(255,255,255,.92) !important;
    border: 1px solid rgba(255,255,255,.45) !important;
    border-radius: 12px !important;
    color: var(--guide-navy) !important;
    grid-column: 2;
    padding: 14px 16px !important;
}

.airport-guide .help-section .alert-info p strong {
    color: var(--guide-navy);
}

.airport-guide .help-section .alert-info .icon {
    background: rgba(255,255,255,.14);
    color: var(--guide-white);
}

.airport-guide .help-section > div:last-child {
    margin: 24px 0 0 !important;
}

.airport-guide .help-section > div:last-child a {
    background: var(--guide-white) !important;
    border: 1px solid var(--guide-line);
    border-radius: 12px !important;
    box-shadow: 0 10px 24px rgba(13,47,63,.09) !important;
    color: var(--guide-navy) !important;
    font-size: 14px !important;
    padding: 13px 22px !important;
}

.airport-guide .help-section > div:last-child a:hover {
    background: var(--guide-aqua) !important;
    transform: translateY(-2px);
}

.airport-guide .video-section {
    align-items: center;
    background: var(--guide-sand);
    border: 1px solid #ebe3d4;
    border-radius: 28px;
    display: grid;
    gap: clamp(28px, 5vw, 56px);
    grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
    padding: clamp(28px, 5vw, 54px);
    text-align: left;
}

.airport-guide .video-section__intro h2 {
    color: var(--guide-navy);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.12;
    margin: 12px 0 16px;
}

.airport-guide .video-section__tip {
    align-items: flex-start;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(13,47,63,.08);
    border-radius: 14px;
    color: var(--guide-ink);
    display: flex;
    font-size: 13px;
    font-weight: 600;
    gap: 10px;
    line-height: 1.55;
    margin-top: 24px;
    padding: 14px;
}

.airport-guide .video-section__tip i {
    color: var(--guide-amber);
    font-size: 18px;
}

.airport-guide .video-wrapper {
    aspect-ratio: 16 / 9;
    background: var(--guide-navy);
    border: 7px solid var(--guide-white);
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(13,47,63,.18);
    margin: 0;
    max-width: none;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.airport-guide .video-wrapper iframe {
    border: 0;
    border-radius: 13px;
    box-shadow: none;
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.airport-guide .terminal-locations {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.airport-guide .terminal-locations > .section-title {
    grid-column: 1 / -1;
}

.airport-guide .terminal-card {
    border: 1px solid var(--guide-line);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(13,47,63,.08);
    margin: 0;
    transition: transform .25s ease, box-shadow .25s ease;
}

.airport-guide .terminal-card:hover {
    box-shadow: 0 20px 45px rgba(13,47,63,.13);
    transform: translateY(-4px);
}

.airport-guide .terminal-header {
    align-items: center;
    background: var(--guide-navy);
    display: flex;
    font-size: 17px;
    gap: 10px;
    padding: 16px 20px;
}

.airport-guide .terminal-header i {
    align-items: center;
    background: rgba(255,255,255,.12);
    border-radius: 9px;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.airport-guide .terminal-content {
    display: flex;
    flex-direction: column;
    padding: 0 22px 22px;
}

.airport-guide .terminal-content img {
    aspect-ratio: 16 / 10;
    border-radius: 0;
    box-shadow: none;
    margin: 0 -22px 22px;
    max-width: calc(100% + 44px);
    object-fit: cover;
    order: -1;
    width: calc(100% + 44px);
}

.airport-guide .terminal-content p:last-child {
    margin-bottom: 0;
}

.airport-guide .clickable-image {
    transition: filter .25s ease, transform .25s ease;
}

.airport-guide .clickable-image:hover {
    filter: brightness(.94);
    transform: none;
}

.image-modal {
    backdrop-filter: blur(10px);
    background-color: rgba(4,20,27,.93);
}

.image-modal img {
    border-radius: 16px;
    max-height: 84%;
    max-width: min(92%, 1100px);
}

@media (max-width: 900px) {
    .airport-guide .steps-container,
    .airport-guide .safety-section {
        grid-template-columns: 1fr;
    }

    .airport-guide .overview-section {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .airport-guide {
        padding-left: 14px;
        padding-right: 14px;
    }

    .airport-guide .guide-hero {
        border-radius: 20px;
        padding: 40px 22px;
    }

    .airport-guide .guide-hero__facts {
        align-items: stretch;
        flex-direction: column;
    }

    .airport-guide .guide-hero__facts span {
        width: 100%;
    }

    .airport-guide .language-selector {
        justify-content: stretch;
    }

    .airport-guide .language-selector .dropdown,
    .airport-guide .language-selector .dropdown-toggle {
        width: 100%;
    }

    .airport-guide .language-selector .dropdown-toggle {
        justify-content: center;
    }

    .airport-guide .language-selector .dropdown-menu {
        width: 100%;
    }

    .airport-guide .overview-section,
    .airport-guide .video-section,
    .airport-guide .terminal-locations {
        grid-template-columns: 1fr;
    }

    .airport-guide .image-text-section > img {
        max-height: 330px;
        min-height: 280px;
    }

    .airport-guide .arrival-section {
        border-radius: 20px;
        padding: 24px 16px;
    }

    .airport-guide .step-card,
    .airport-guide .alert-box {
        padding: 22px;
    }

    .airport-guide .help-section .alert-info {
        display: block;
    }

    .airport-guide .help-section .alert-info .icon {
        margin-bottom: 14px;
    }

    .airport-guide .terminal-locations > .section-title {
        grid-column: auto;
    }

    .image-modal .close-modal {
        right: 18px;
        top: 10px;
    }
}
