@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --ink: #0f172a;
    --muted: #475569;
    --line: rgba(226, 232, 240, 0.8);
    --blue: #0284c7;
    --blue-hover: #0369a1;
    --blue-2: #0369a1;
    --blue-light: #f0f9ff;
    --teal: #0d9488;
    --teal-hover: #0f766e;
    --teal-light: #f0fdfa;
    --gold: #eab308;
    --gold-light: #fef9c3;
    --paper: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.03), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
    --shadow-xl: 0 20px 40px -15px rgba(15, 23, 42, 0.06), 0 15px 15px -10px rgba(15, 23, 42, 0.02);
    --shadow-premium: 0 20px 50px -12px rgba(2, 132, 199, 0.1);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
    width: 100%;
}
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
    width: 100%;
    position: relative;
}
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
.wrap {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}
.skip {
    position: absolute;
    top: -100px;
    left: 8px;
    padding: 10px 12px;
    background: var(--white);
    color: var(--blue);
    z-index: 9999;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: top 0.2s ease;
}
.skip:focus {
    top: 8px;
}

/* Layout Sections */
section {
    position: relative;
    padding: 100px 0;
}
.section-head {
    margin-bottom: 60px;
}
.section-head h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}
.section-head p {
    font-size: clamp(16px, 2.2vw, 18px);
    color: var(--muted);
    max-width: 680px;
    line-height: 1.6;
}

/* Background Ambient Glows */
.glow-blob {
    position: absolute;
    width: min(600px, 80vw);
    height: min(600px, 80vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.06) 0%, rgba(13, 148, 136, 0.02) 50%, transparent 70%);
    filter: blur(95px);
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.glow-blob-1 { top: 5%; left: 0; }
.glow-blob-2 { top: 35%; right: 0; }
.glow-blob-3 { bottom: 10%; left: 5%; }

/* Header & Nav */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: var(--transition);
}
.nav {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}
.nav-toggle {
    display: none;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    min-width: 0;
    flex-shrink: 1;
}
.brand img {
    height: 44px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
}
.brand > span {
    min-width: 0;
}
.brand strong {
    display: block;
    font-size: 15px;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.01em;
    white-space: nowrap;
}
.brand span span {
    display: block;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
    white-space: nowrap;
}
.menu {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
}
.menu a {
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--ink);
    position: relative;
}
.menu a:hover, .menu a.active {
    background: var(--blue-light);
    color: var(--blue-hover);
}
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    place-items: center;
    cursor: pointer;
    transition: var(--transition);
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--blue);
    transition: transform .2s ease, opacity .2s ease;
}
.hamburger span::before { transform: translateY(-6px); }
.hamburger span::after { transform: translateY(4px); }
.nav-toggle:checked + .hamburger span { transform: rotate(45deg); }
.nav-toggle:checked + .hamburger span::before { transform: rotate(90deg); }
.nav-toggle:checked + .hamburger span::after { opacity: 0; }

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 26px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}
.btn-primary {
    color: var(--white);
    background: var(--teal);
    box-shadow: 0 10px 25px -5px rgba(13, 148, 136, 0.35);
}
.btn-primary:hover {
    background: var(--teal-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -5px rgba(13, 148, 136, 0.5);
}
.btn-secondary {
    color: var(--blue);
    background: var(--white);
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    border-color: var(--blue);
    background: var(--blue-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.08);
}
.btn-dark {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.35);
}
.btn-dark:hover {
    background: var(--blue-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -5px rgba(2, 132, 199, 0.5);
}

/* Header Active Link Badge dot */
.menu a.active::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue);
}

/* Text Gradient Effect */
.text-gradient {
    background: linear-gradient(135deg, var(--blue) 20%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-light {
    background: linear-gradient(135deg, #38bdf8 0%, #2dd4bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero - Homepage (Full Background) */
.hero-home {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(9, 55, 85, 0.92) 50%, rgba(13, 148, 136, 0.45) 100%),
        url("amel-trans-hero.webp") center / cover no-repeat;
    color: var(--white);
    overflow: hidden;
    padding: 120px 0 135px;
}
.hero-home .wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}
.hero-home h1 {
    font-size: clamp(40px, 5.5vw, 64px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--white);
    margin: 24px 0;
}
.hero-home .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(17px, 2.2vw, 20px);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}
.hero-home .badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    display: inline-block;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}
.hero-actions .btn-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Glassmorphic Feature Bullet Card */
.hero-feature-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--white);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    max-width: 420px;
    margin-left: auto;
    position: relative;
    animation: float 6s ease-in-out infinite;
}
.hero-feature-card .stars {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 12px;
}
.hero-feature-card h3 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.hero-feature-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.feature-bullets {
    list-style: none;
    display: grid;
    gap: 12px;
}
.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
}
.feature-bullets li svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
    flex-shrink: 0;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(-0.5deg); }
    50% { transform: translateY(-10px) rotate(-0.5deg); }
    100% { transform: translateY(0px) rotate(-0.5deg); }
}

/* Hero - Subpages (Sleek Dark Navy Banner) */
.hero {
    position: relative;
    color: var(--white);
    background: linear-gradient(135deg, #093755 0%, #062337 100%);
    overflow: hidden;
    padding: 90px 0 100px;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.hero .wrap {
    max-width: 800px;
    text-align: center;
}
.hero h1 {
    font-size: clamp(36px, 5.5vw, 56px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 20px 0;
}
.hero .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(16px, 2.2vw, 19px);
    line-height: 1.6;
    margin-bottom: 28px;
}
.hero .hero-actions {
    justify-content: center;
    margin-bottom: 0;
}

/* Trust Widget Items on Homepage */
.trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.trust-item {
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
    color: var(--white);
}
.trust-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}
.trust-item strong {
    display: block;
    color: var(--teal);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}
.trust-item span {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 600;
}

/* Grids & Cards */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }

.card {
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.015);
    transition: var(--transition);
    overflow: hidden;
}
.card:hover {
    transform: translateY(-6px);
    border-color: rgba(2, 132, 199, 0.2);
    box-shadow: 0 20px 30px -5px rgba(2, 132, 199, 0.08), 0 10px 10px -5px rgba(2, 132, 199, 0.03);
}

/* Route Cards & Connection Timelines */
.route-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.route-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue-light);
    transition: var(--transition);
}
.route-card:hover::after {
    background: linear-gradient(90deg, var(--blue), var(--teal));
}
.route-card h3 {
    font-size: 24px;
    color: var(--ink);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.route-card p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 28px;
    flex-grow: 1;
}
.route-list {
    display: grid;
    gap: 16px;
}

/* Premium Visual Timeline */
.route-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: var(--paper);
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.03);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.route-card:hover .route-timeline {
    background: var(--blue-light);
    border-color: rgba(2, 132, 199, 0.15);
}
.route-station {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 2;
}
.route-station-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 3.5px solid var(--blue);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
    transition: var(--transition);
}
.route-timeline:hover .route-station-dot {
    background: var(--blue);
    box-shadow: 0 0 0 6px rgba(2, 132, 199, 0.25);
}
.route-station strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
}
.route-line-connector {
    flex-grow: 1;
    height: 2px;
    background-image: linear-gradient(to right, #cbd5e1 50%, transparent 50%);
    background-size: 8px 2px;
    background-repeat: repeat-x;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin: 0 -8px;
}
.route-car-icon {
    width: 34px;
    height: 34px;
    background: var(--white);
    border: 1.5px solid rgba(226, 232, 240, 0.8);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--teal);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 2;
}
.route-car-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.route-timeline:hover .route-car-icon {
    transform: translateX(8px);
    color: var(--blue);
    border-color: rgba(2, 132, 199, 0.3);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

/* Price Cards */
.price-card {
    padding: 40px;
    position: relative;
}
.price-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold));
}
.price-card h3 {
    font-size: 24px;
    color: var(--ink);
    font-weight: 800;
    margin-bottom: 16px;
}
.price {
    margin: 18px 0 14px;
    color: var(--teal);
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
}
.price small {
    font-size: 16px;
    color: var(--muted);
    font-weight: 600;
}
.price-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Schedule Section */
.schedule-section {
    background: var(--blue-light);
}
.time-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    padding: 28px 36px;
}
.time-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 110px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
    color: var(--white);
    font-size: 30px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(2, 132, 199, 0.15);
}
.time-row h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.time-row p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Quick Nav Cards */
.quick-nav-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    height: 100%;
}
.quick-nav-card .nav-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--blue-light);
    color: var(--blue);
    display: grid;
    place-items: center;
    transition: var(--transition);
}
.quick-nav-card:hover .nav-icon {
    background: var(--teal);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
}
.quick-nav-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
}
.quick-nav-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Service Info Card */
.info-card {
    padding: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
    color: var(--white);
}
.info-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}
.info-card h3 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.info-card h3 .icon {
    color: var(--gold);
}
.info-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}
.service-band {
    color: var(--white);
    background: linear-gradient(135deg, #093755 0%, #0d5f66 100%);
}
.service-band .section-head h2 {
    color: var(--white);
}
.service-band .section-head p {
    color: rgba(255, 255, 255, 0.85);
}

/* Booking Layout & Form */
.booking-section {
    background: var(--white);
}
.booking-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: start;
}
.booking-form-card {
    padding: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    background: var(--white);
}
.booking-form-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 28px;
    border-bottom: 2px solid var(--blue-light);
    padding-bottom: 14px;
    letter-spacing: -0.02em;
}
.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.form-group.full-width {
    grid-column: span 2;
}
.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    min-height: 50px;
    padding: 14px 18px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    color: var(--ink);
    background: var(--paper);
    transition: var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.08);
}
.form-group textarea {
    min-height: 100px;
    resize: vertical;
}
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 6px;
}
.radio-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
}
.radio-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--blue);
    min-height: auto;
    cursor: pointer;
}

/* Booking Details Info (Right side) */
.booking-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.booking-visual {
    position: relative;
    border-radius: var(--radius-lg);
    min-height: 300px;
    padding: 36px;
    display: grid;
    align-content: end;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(8, 43, 66, 0.1) 0%, rgba(8, 43, 66, 0.95) 100%),
        url("amel-trans-hero.webp") center / cover no-repeat;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.booking-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 148, 136, 0.15);
    mix-blend-mode: overlay;
}
.booking-visual-content {
    position: relative;
    z-index: 2;
}
.booking-visual h4 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.booking-visual p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}
.contact-card {
    padding: 36px;
}
.contact-card h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 24px;
}
.contact-list {
    display: grid;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.contact-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    display: grid;
    place-items: center;
}
.contact-item.wa-item .contact-icon {
    background: var(--teal-light);
    color: var(--teal);
}
.contact-details span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
}
.contact-details strong {
    display: block;
    font-size: 16px;
    color: var(--ink);
}

/* Map Card */
.map-section {
    background: var(--blue-light);
}
.map-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(15, 23, 42, 0.05);
}
.map-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.map-copy h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.map-copy p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}
.map-frame {
    min-height: 380px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block;
}

/* FAQ Accordion Styling */
.faq-section {
    background: var(--white);
}
.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius);
    background: var(--paper);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item[open] {
    background: var(--white);
    border-color: rgba(2, 132, 199, 0.3);
    box-shadow: var(--shadow-md);
}
.faq-item summary {
    padding: 22px 28px;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    outline: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.faq-item[open] summary::after {
    transform: rotate(180deg);
}
.faq-content {
    padding: 0 28px 28px 28px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    position: relative;
    padding: 80px 48px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(8, 59, 93, 0.98) 0%, rgba(17, 133, 111, 0.96) 100%),
        url("amel-trans-hero.webp") center / cover no-repeat;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    text-align: center;
}
.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 40%);
}
.final-cta-content {
    position: relative;
    z-index: 2;
}
.final-cta h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.final-cta p {
    max-width: 720px;
    margin: 0 auto 36px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 2vw, 18px);
}
.final-cta .hero-actions {
    justify-content: center;
    margin-bottom: 0;
}

/* Page Links Section (Subpages Navigation) */
.page-links {
    background: var(--blue-light);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.page-links .card {
    padding: 28px;
}
.page-links h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 8px;
}

/* Footer */
footer {
    padding: 48px 0;
    color: #cbd5e1;
    background: #041421;
    border-top: 5px solid var(--blue);
}
.foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}
.foot a {
    color: var(--white);
    font-weight: 700;
}
.foot a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Floating WA Badge Widget */
.floating-wa {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: var(--white);
    background: #25d366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    animation: wa-pulse 2s infinite;
}
.floating-wa:hover {
    transform: translateY(-4px) scale(1.08);
    background: #20ba59;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}
.floating-wa svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* WA Chat Tooltip Prompt */
.wa-prompt {
    position: fixed;
    right: 92px;
    bottom: 32px;
    z-index: 999;
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    animation: wa-slide-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.wa-prompt::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.wa-notify-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    display: inline-block;
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes wa-slide-in {
    from { transform: translateX(20px) scale(0.9); opacity: 0; }
    to { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.15), 0 0 0 10px rgba(37, 211, 102, 0.25);
    }
    100% {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    }
}

/* Responsive Styles */
@media (max-width: 940px) {
    section {
        padding: 60px 0;
    }
    .glow-blob {
        display: none;
    }
    .nav {
        min-height: 72px;
        gap: 10px;
    }
    .hamburger {
        display: grid;
        order: 3;
    }
    
    /* Make quick actions compact circular buttons with only icons */
    .quick {
        margin-left: auto;
        order: 2;
        gap: 8px;
    }
    .quick .btn {
        min-height: 42px;
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%;
        font-size: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .quick .btn svg {
        width: 20px;
        height: 20px;
        margin: 0;
    }

    /* Smooth CSS slide-down drawer mobile menu with opacity/visibility */
    .menu {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        padding: 20px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: var(--shadow-xl);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        z-index: 101;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
    }
    .nav-toggle:checked ~ .menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .menu a {
        padding: 12px 18px;
    }
    .menu a.active::after {
        display: none;
    }
    
    /* Hero layout on mobile */
    .hero-home {
        padding: 32px 0 48px;
    }
    .hero {
        padding: 40px 0 48px;
    }
    .hero-home .wrap {
        grid-template-columns: 1fr;
        padding-top: 0;
        padding-bottom: 0;
        text-align: center;
        gap: 28px;
    }
    .hero-home h1 {
        font-size: clamp(30px, 5.5vw, 38px);
        margin: 16px 0;
    }
    .hero-home .lead {
        margin: 0 auto 24px;
    }
    .hero-actions {
        justify-content: center;
        gap: 12px;
        margin-bottom: 32px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .trust {
        max-width: 600px;
        margin: 0 auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
    .trust-item {
        padding: 16px;
    }
    .trust-item strong {
        font-size: 20px;
    }
    .trust-item span {
        font-size: 11px;
    }
    
    /* Grid adjustments */
    .grid-2, .grid-3, .grid-4, .booking-container, .map-card {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .form-group-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    
    /* Route cards optimization */
    .route-card {
        padding: 24px;
    }
    .route-timeline {
        padding: 16px;
        gap: 12px;
    }
    .route-station strong {
        font-size: 13px;
    }
    .route-car-icon {
        width: 30px;
        height: 30px;
    }
    .route-car-icon svg {
        width: 16px;
        height: 16px;
    }
    
    /* Booking sidebar optimization */
    .booking-visual {
        min-height: 240px;
        padding: 28px;
    }
    .booking-form-card {
        padding: 28px 20px;
    }
    
    /* Floating elements centering */
    .hero-feature-card {
        margin: 0 auto;
        width: 100%;
        max-width: 380px;
        padding: 30px 24px;
        animation: float-mobile 6s ease-in-out infinite;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }
}

@keyframes float-mobile {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 640px) {
    .trust {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .time-row {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px;
    }
    .time-badge {
        margin: 0 auto;
        min-width: 90px;
        height: 90px;
        font-size: 26px;
    }
    .time-row h3 {
        justify-content: center;
    }
    .map-card {
        padding: 24px;
    }
    .map-frame {
        min-height: 280px;
    }
    .map-frame iframe {
        min-height: 280px;
    }
    .final-cta {
        padding: 50px 20px;
    }
    .foot {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .wa-prompt {
        display: none;
    }
    .floating-wa {
        bottom: 18px;
        right: 18px;
        width: 50px;
        height: 50px;
    }
    .floating-wa svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .wrap {
        width: min(1140px, calc(100% - 24px));
    }
    .nav {
        min-height: 64px;
        gap: 6px;
    }
    .brand {
        gap: 8px;
    }
    .brand img {
        height: 36px;
    }
    .brand strong {
        font-size: 13px;
        letter-spacing: -0.02em;
    }
    .brand span {
        font-size: 8px;
        letter-spacing: 0.02em;
    }
    .quick {
        gap: 6px;
    }
    .quick .btn {
        min-height: 38px;
        width: 38px;
        height: 38px;
    }
    .quick .btn svg {
        width: 18px;
        height: 18px;
    }
    .hamburger {
        width: 40px;
        height: 40px;
    }
    .menu {
        top: 64px;
        padding: 16px;
    }
    .hero-home {
        padding: 24px 0 36px;
    }
    .hero-feature-card {
        padding: 24px 18px;
    }
    .btn {
        min-height: 46px;
        padding: 10px 18px;
        font-size: 14px;
    }
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}
