* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f8;
    color: #1f2937;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.site-header {
    background: #ffffff;
    color: #10233f;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(16, 35, 63, 0.12);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 72px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.navbar a {
    color: #10233f;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    position: relative;
    transition: 0.25s ease;
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: #c49a3a;
    transition: 0.25s ease;
}

.navbar a:hover {
    color: #c49a3a;
}

.navbar a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    padding: 90px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e5e7eb;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #facc15;
    color: #111827;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.hero-card {
    background: #ffffff;
    color: #111827;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-card h3 {
    margin-bottom: 15px;
}

.hero-card ul {
    padding-left: 20px;
}

.hero-card li {
    margin-bottom: 10px;
}

.features {
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #0f172a;
}

.about-section {
    background: #ffffff;
    padding: 70px 0;
}

.about-section h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #0f172a;
}

.about-section p {
    max-width: 800px;
    font-size: 18px;
}

.site-footer {
    background: #0f172a;
    color: #ffffff;
    text-align: center;
    padding: 25px 0;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .navbar a {
        margin: 0 8px;
        font-size: 14px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
.page-hero {
    background: #1e3a8a;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 18px;
    color: #e5e7eb;
}

.booking-section {
    padding: 70px 0;
}

.booking-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #0f172a;
}

.form-group input,
.form-group select {
    padding: 13px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #1e3a8a;
}

.booking-summary {
    margin-top: 30px;
    background: #f8fafc;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
}

.booking-summary h3 {
    margin-bottom: 15px;
    color: #0f172a;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.summary-row.total {
    font-size: 20px;
    color: #0f172a;
    border-bottom: none;
}

.btn-submit {
    margin-top: 25px;
    width: 100%;
    padding: 15px;
    background: #facc15;
    color: #111827;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

.btn-submit:hover {
    background: #eab308;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .booking-form {
        padding: 25px;
    }
}
.confirmation-section {
    padding: 70px 0;
    background: #f4f6f8;
}

.confirmation-card {
    background: #ffffff;
    max-width: 850px;
    margin: auto;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
    text-align: center;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: #22c55e;
    color: #ffffff;
    border-radius: 50%;
    font-size: 42px;
    line-height: 70px;
    margin: 0 auto 20px auto;
    font-weight: bold;
}

.confirmation-card h1 {
    color: #0f172a;
    margin-bottom: 10px;
}

.confirmation-text {
    color: #475569;
    margin-bottom: 25px;
}

.booking-number-box {
    background: #0f172a;
    color: #ffffff;
    padding: 22px;
    border-radius: 14px;
    margin-bottom: 30px;
}

.booking-number-box span {
    display: block;
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 5px;
}

.booking-number-box strong {
    font-size: 28px;
    letter-spacing: 1px;
}

.confirmation-details {
    text-align: left;
    margin-top: 20px;
}

.confirmation-details h3 {
    margin-bottom: 15px;
    color: #0f172a;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-row span {
    color: #64748b;
}

.detail-row strong {
    color: #0f172a;
    text-align: right;
}

.total-detail strong {
    color: #1e3a8a;
    font-size: 18px;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn-secondary.dark {
    color: #0f172a;
    border: 1px solid #0f172a;
}

@media (max-width: 768px) {
    .confirmation-card {
        padding: 25px;
    }

    .detail-row {
        flex-direction: column;
        gap: 3px;
    }

    .detail-row strong {
        text-align: left;
    }

    .confirmation-actions {
        flex-direction: column;
    }
}
.ticket-page {
    min-height: 100vh;
    background: #e5e7eb;
    padding: 50px 15px;
}

.ticket-container {
    background: #ffffff;
    max-width: 900px;
    margin: auto;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.18);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.ticket-header h1 {
    color: #0f172a;
    font-size: 30px;
}

.ticket-header p {
    color: #64748b;
}

.ticket-status {
    background: #22c55e;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 14px;
}

.ticket-title {
    text-align: center;
    margin-bottom: 25px;
}

.ticket-title h2 {
    color: #0f172a;
    font-size: 28px;
}

.ticket-title p {
    color: #64748b;
}

.ticket-booking-number {
    background: #0f172a;
    color: #ffffff;
    padding: 22px;
    border-radius: 14px;
    text-align: center;
    margin-bottom: 25px;
}

.ticket-booking-number span {
    display: block;
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 5px;
}

.ticket-booking-number strong {
    font-size: 30px;
    letter-spacing: 1px;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 22px;
}

.ticket-box {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px;
    background: #f8fafc;
}

.ticket-box.full {
    margin-bottom: 22px;
}

.ticket-box h3 {
    color: #0f172a;
    margin-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.ticket-row:last-child {
    border-bottom: none;
}

.ticket-row span {
    color: #64748b;
}

.ticket-row strong {
    color: #0f172a;
    text-align: right;
}

.ticket-row.total strong {
    color: #1e3a8a;
    font-size: 20px;
}

.ticket-note {
    background: #fef9c3;
    border: 1px solid #fde047;
    color: #713f12;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.ticket-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-print,
.btn-back {
    border: none;
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
}

.btn-print {
    background: #facc15;
    color: #111827;
}

.btn-back {
    background: #0f172a;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ticket-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .ticket-row {
        flex-direction: column;
        gap: 4px;
    }

    .ticket-row strong {
        text-align: left;
    }

    .ticket-actions {
        flex-direction: column;
    }
}

@media print {
    body {
        background: #ffffff;
    }

    .ticket-page {
        background: #ffffff;
        padding: 0;
    }

    .ticket-container {
        box-shadow: none;
        border-radius: 0;
        max-width: 100%;
    }

    .ticket-actions {
        display: none;
    }
}
.ticket-codes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 22px;
}

.code-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px;
    text-align: center;
}

.code-box h3 {
    color: #0f172a;
    margin-bottom: 15px;
}

#qrcode {
    display: flex;
    justify-content: center;
    align-items: center;
}

#barcode {
    max-width: 100%;
}

@media (max-width: 768px) {
    .ticket-codes {
        grid-template-columns: 1fr;
    }
}

@media print {
    .ticket-codes {
        page-break-inside: avoid;
    }
}
.admin-login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.admin-login-card h1 {
    text-align: center;
    color: #0f172a;
    margin-bottom: 5px;
}

.admin-login-card h2 {
    text-align: center;
    color: #64748b;
    margin-bottom: 25px;
}

.error-message {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
    background: #f4f6f8;
}

.admin-sidebar {
    width: 250px;
    background: #0f172a;
    color: #ffffff;
    padding: 25px;
}

.admin-sidebar h2 {
    margin-bottom: 30px;
}

.admin-sidebar a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-sidebar a:hover {
    color: #facc15;
}

.admin-main {
    flex: 1;
    padding: 30px;
}

.admin-topbar {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(15,23,42,0.08);
}

.admin-topbar h1 {
    color: #0f172a;
}

.admin-topbar p {
    color: #64748b;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.dashboard-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(15,23,42,0.08);
}

.dashboard-card span {
    display: block;
    color: #64748b;
    margin-bottom: 10px;
}

.dashboard-card strong {
    font-size: 28px;
    color: #0f172a;
}

@media (max-width: 900px) {
    .admin-layout {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}
.admin-panel {
    background: #ffffff;
    padding: 24px;
    border-radius: 14px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(15,23,42,0.08);
}

.admin-panel h2 {
    color: #0f172a;
    margin-bottom: 18px;
}

.admin-search-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.admin-search-form input {
    flex: 1;
    padding: 13px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
}

.admin-search-form button {
    padding: 13px 22px;
    background: #facc15;
    color: #111827;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.reset-link {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: bold;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1100px;
}

.admin-table th {
    background: #0f172a;
    color: #ffffff;
    text-align: left;
    padding: 14px;
    font-size: 14px;
}

.admin-table td {
    padding: 14px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
    font-size: 14px;
}

.admin-table small {
    color: #64748b;
}

.empty-table {
    text-align: center;
    color: #64748b;
    padding: 25px;
}

.status-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.payment-pending {
    background: #fef9c3;
    color: #713f12;
}

.payment-paid {
    background: #dcfce7;
    color: #166534;
}

.payment-failed {
    background: #fee2e2;
    color: #991b1b;
}

.payment-refunded {
    background: #e0e7ff;
    color: #3730a3;
}

.booking-pending {
    background: #fef9c3;
    color: #713f12;
}

.booking-confirmed {
    background: #dcfce7;
    color: #166534;
}

.booking-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.booking-completed {
    background: #e0f2fe;
    color: #075985;
}

.table-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.table-actions a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: bold;
}

.table-actions .danger-link {
    color: #dc2626;
}

@media (max-width: 768px) {
    .admin-search-form {
        flex-direction: column;
        align-items: stretch;
    }
}
.edit-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-back-admin {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .edit-actions {
        flex-direction: column;
    }
}
.payment-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-filters a {
    text-decoration: none;
    background: #f1f5f9;
    color: #0f172a;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: bold;
    border: 1px solid #e2e8f0;
}

.payment-filters a:hover,
.payment-filters .active-filter {
    background: #0f172a;
    color: #ffffff;
}
.success-message {
    background: #dcfce7;
    color: #166534;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}
.color-preview {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
}

.language-switcher {
    color: #10233f;
    font-weight: bold;
}

.language-switcher a {
    color: #c49a3a;
    text-decoration: none;
    margin: 0 4px;
    font-weight: bold;
}

.language-switcher a:hover {
    color: #9f7a2b;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-top: 8px;
    }
}
.admin-topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.export-btn {
    background: #22c55e;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: bold;
    white-space: nowrap;
}

.export-btn:hover {
    background: #16a34a;
}

@media (max-width: 768px) {
    .admin-topbar-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}
.btn-email {
    background: #1e3a8a;
    color: #ffffff;
}

.btn-email:hover {
    background: #172554;
}
.btn-pay {
    background: #22c55e;
    color: #ffffff;
}

.btn-pay:hover {
    background: #16a34a;
}
/* =========================
   HOME PAGE FINAL DESIGN
========================= */

.home-hero {
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(196, 154, 58, 0.18), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f6f8fb 48%, #edf2f7 100%);
    padding: 90px 0;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.5;
    pointer-events: none;
}

.shape-1 {
    width: 280px;
    height: 280px;
    right: -90px;
    top: -80px;
    background: rgba(196, 154, 58, 0.18);
    animation: floatShape 7s ease-in-out infinite;
}

.shape-2 {
    width: 220px;
    height: 220px;
    left: -70px;
    bottom: -80px;
    background: rgba(16, 35, 63, 0.12);
    animation: floatShape 9s ease-in-out infinite reverse;
}

.home-hero .hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
}

.home-hero .hero-text {
    color: #10233f;
}

.home-hero .hero-badge {
    display: inline-block;
    background: rgba(196, 154, 58, 0.12);
    color: #9f7a2b;
    border: 1px solid rgba(196, 154, 58, 0.35);
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 18px;
    font-size: 0.88rem;
}

.home-hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 4.3rem);
    line-height: 1.08;
    margin: 0 0 20px;
    color: #10233f;
    letter-spacing: -1.5px;
}

.home-hero p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #526274;
    margin-bottom: 30px;
    max-width: 650px;
}

.hero-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-stats div {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 16px;
    padding: 16px 20px;
    min-width: 120px;
    box-shadow: 0 10px 25px rgba(16, 35, 63, 0.08);
    transition: 0.25s ease;
}

.hero-stats div:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(16, 35, 63, 0.13);
}

.hero-stats strong {
    display: block;
    color: #10233f;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.hero-stats span {
    color: #526274;
    font-size: 0.9rem;
}

.hero-card {
    background: #10233f;
    border-radius: 30px;
    padding: 18px;
    box-shadow: 0 28px 60px rgba(16, 35, 63, 0.25);
    transform: perspective(900px) rotateY(-5deg);
    transition: 0.35s ease;
}

.hero-card:hover {
    transform: perspective(900px) rotateY(0deg) translateY(-6px);
}

.hero-card-top {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
}

.hero-car-box {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
}

.hero-car-box img {
    width: 100%;
    min-height: 330px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.hero-card:hover .hero-car-box img {
    transform: scale(1.05);
}

.hero-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    color: #ffffff;
}

.hero-card-bottom small {
    display: block;
    color: #cbd5e1;
    margin-bottom: 4px;
}

.hero-card-bottom strong {
    color: #c49a3a;
}

.hero-card-bottom a {
    background: #c49a3a;
    color: #10233f;
    text-decoration: none;
    font-weight: 800;
    border-radius: 12px;
    padding: 12px 18px;
    transition: 0.25s ease;
}

.hero-card-bottom a:hover {
    background: #ffffff;
}

/* SERVICES */
.premium-services {
    padding: 85px 0;
    background: #ffffff;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.section-heading span {
    color: #c49a3a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 0.85rem;
}

.section-heading h2 {
    color: #10233f;
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 12px 0 14px;
    letter-spacing: -0.8px;
}

.section-heading p {
    color: #526274;
    line-height: 1.8;
    margin: 0;
}

.services-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-card,
.step-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(16, 35, 63, 0.07);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before,
.step-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 154, 58, 0.12), transparent 40%);
    opacity: 0;
    transition: 0.3s ease;
}

.service-card:hover,
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(16, 35, 63, 0.13);
}

.service-card:hover::before,
.step-card:hover::before {
    opacity: 1;
}

.service-card > *,
.step-card > * {
    position: relative;
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #f6f0df;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 22px;
}

.service-card h3,
.step-card h3 {
    color: #10233f;
    margin: 0 0 12px;
    font-size: 1.25rem;
}

.service-card p,
.step-card p {
    color: #526274;
    line-height: 1.75;
    margin: 0;
}

/* HOW IT WORKS */
.how-it-works {
    padding: 85px 0;
    background: #f6f8fb;
}

.step-card strong {
    display: inline-flex;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #10233f;
    color: #c49a3a;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 1rem;
}

/* CTA */
.home-cta {
    padding: 80px 0;
    background: #ffffff;
}

.cta-box {
    background:
        radial-gradient(circle at right top, rgba(196, 154, 58, 0.28), transparent 30%),
        linear-gradient(135deg, #10233f 0%, #17385f 100%);
    color: #ffffff;
    border-radius: 30px;
    padding: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 24px 55px rgba(16, 35, 63, 0.22);
}

.cta-box span {
    color: #c49a3a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin: 10px 0;
}

.cta-box p {
    color: #dbe4ee;
    margin: 0;
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: 0.7s ease;
}

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

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(20px) translateX(-12px);
    }
}

/* RESPONSIVE HOME */
@media (max-width: 992px) {
    .home-hero .hero-content,
    .services-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        transform: none;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .navbar {
        gap: 18px;
    }

    .home-hero {
        padding: 60px 0;
    }

    .hero-stats {
        flex-direction: column;
    }

    .hero-car-box img {
        min-height: 240px;
    }

    .premium-services,
    .how-it-works,
    .home-cta {
        padding: 60px 0;
    }

    .service-card,
    .step-card,
    .cta-box {
        padding: 24px;
    }
}
/* =========================
   BOOKING PAGE PREMIUM DESIGN
========================= */

.booking-hero {
    background:
        radial-gradient(circle at 20% 20%, rgba(196, 154, 58, 0.18), transparent 30%),
        linear-gradient(135deg, #10233f 0%, #17385f 100%);
    padding: 75px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(196, 154, 58, 0.18);
}

.booking-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.booking-hero-content span {
    display: inline-block;
    color: #c49a3a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 12px;
}

.booking-hero-content h1 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    margin: 0 0 14px;
    letter-spacing: -0.8px;
}

.booking-hero-content p {
    color: #dbe4ee;
    line-height: 1.8;
    margin: 0;
}

.premium-booking-section {
    background: #f6f8fb;
    padding: 70px 0;
}

.booking-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    align-items: start;
}

.booking-info-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 14px 35px rgba(16, 35, 63, 0.08);
    position: sticky;
    top: 120px;
}

.booking-info-card h2 {
    color: #10233f;
    margin: 0 0 12px;
    font-size: 1.6rem;
}

.booking-info-card p {
    color: #526274;
    line-height: 1.75;
    margin-bottom: 24px;
}

.booking-info-list {
    display: grid;
    gap: 16px;
}

.booking-info-list div {
    background: #f6f8fb;
    border: 1px solid #d9e1ea;
    border-radius: 16px;
    padding: 18px;
    transition: 0.25s ease;
}

.booking-info-list div:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(16, 35, 63, 0.08);
}

.booking-info-list strong {
    display: block;
    color: #10233f;
    margin-bottom: 8px;
}

.booking-info-list span {
    color: #526274;
    font-size: 0.92rem;
    line-height: 1.6;
}

.premium-booking-form {
    border-radius: 26px;
    padding: 34px;
    border: 1px solid #d9e1ea;
    box-shadow: 0 18px 45px rgba(16, 35, 63, 0.09);
}

.premium-booking-form .form-grid {
    gap: 22px;
}

.premium-booking-form .form-group label {
    color: #10233f;
    font-size: 0.92rem;
    margin-bottom: 9px;
}

.premium-booking-form input,
.premium-booking-form select {
    background: #ffffff;
    border: 1px solid #cfd8e3;
    border-radius: 14px;
    padding: 14px 15px;
    transition: 0.25s ease;
}

.premium-booking-form input:hover,
.premium-booking-form select:hover {
    border-color: #c49a3a;
}

.premium-booking-form input:focus,
.premium-booking-form select:focus {
    border-color: #c49a3a;
    box-shadow: 0 0 0 4px rgba(196, 154, 58, 0.16);
}

.premium-booking-form .booking-summary {
    background:
        radial-gradient(circle at right top, rgba(196, 154, 58, 0.18), transparent 28%),
        #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    padding: 24px;
    margin: 28px 0;
    box-shadow: 0 10px 25px rgba(16, 35, 63, 0.06);
}

.premium-booking-form .booking-summary h3 {
    color: #10233f;
    margin-top: 0;
}

.premium-booking-form .summary-row {
    font-size: 1rem;
}

.premium-booking-form .summary-row.total {
    color: #10233f;
    font-size: 1.15rem;
    font-weight: 800;
}

.premium-booking-form .btn-submit {
    width: 100%;
    font-size: 1rem;
    padding: 16px 24px;
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(196, 154, 58, 0.24);
}

.premium-booking-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(196, 154, 58, 0.32);
}

/* RESPONSIVE BOOKING */
@media (max-width: 992px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-info-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        padding: 55px 0;
    }

    .premium-booking-section {
        padding: 50px 0;
    }

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

/* =========================
   CONFIRMATION PAGE PREMIUM
========================= */

.premium-confirmation-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(196, 154, 58, 0.12), transparent 30%),
        linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
    padding: 75px 0;
}

.premium-confirmation-card {
    max-width: 980px;
    border-radius: 30px;
    padding: 42px;
    border: 1px solid #d9e1ea;
    box-shadow: 0 24px 60px rgba(16, 35, 63, 0.12);
    overflow: hidden;
    position: relative;
}

.premium-confirmation-card::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -120px;
    top: -120px;
    background: rgba(196, 154, 58, 0.14);
    border-radius: 50%;
}

.confirmation-header {
    position: relative;
    text-align: center;
    z-index: 2;
}

.confirmation-badge {
    display: inline-block;
    background: rgba(22, 163, 74, 0.12);
    color: #166534;
    border: 1px solid rgba(22, 163, 74, 0.25);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.premium-confirmation-card h1 {
    color: #10233f;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 8px 0 12px;
}

.premium-booking-number {
    background:
        radial-gradient(circle at right, rgba(196, 154, 58, 0.35), transparent 30%),
        linear-gradient(135deg, #10233f 0%, #17385f 100%);
    border-radius: 24px;
    margin: 34px 0;
    box-shadow: 0 18px 40px rgba(16, 35, 63, 0.2);
}

.premium-booking-number strong {
    color: #c49a3a;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.confirmation-status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}

.status-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(16, 35, 63, 0.06);
    transition: 0.25s ease;
}

.status-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(16, 35, 63, 0.1);
}

.status-card span {
    display: block;
    color: #526274;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.status-card strong {
    color: #10233f;
    font-size: 1.1rem;
}

.status-paid {
    color: #15803d !important;
}

.status-pending {
    color: #c49a3a !important;
}

.status-failed,
.status-cancelled {
    color: #dc2626 !important;
}

.confirmation-details {
    position: relative;
    z-index: 2;
}

.confirmation-details h2 {
    color: #10233f;
    margin-bottom: 20px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.details-grid .detail-row {
    background: #f6f8fb;
    border: 1px solid #d9e1ea;
    border-radius: 14px;
    padding: 15px 16px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.details-grid .detail-row span {
    color: #526274;
    font-size: 0.92rem;
}

.details-grid .detail-row strong {
    color: #10233f;
    text-align: right;
}

.premium-confirmation-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.premium-confirmation-actions .btn {
    min-width: 145px;
}

/* RESPONSIVE CONFIRMATION */
@media (max-width: 850px) {
    .confirmation-status-grid,
    .details-grid {
        grid-template-columns: 1fr;
    }

    .premium-confirmation-card {
        padding: 26px;
    }

    .details-grid .detail-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .details-grid .detail-row strong {
        text-align: left;
    }
}

/* INTERNATIONAL PHONE INPUT */
.iti {
    width: 100%;
    display: block;
}

.iti__flag-container {
    z-index: 5;
}

.iti input {
    width: 100%;
    height: 56px;
    border: 1px solid #cfd8e3;
    border-radius: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 1rem;
}

.iti input:focus {
    border-color: #c49a3a;
    box-shadow: 0 0 0 4px rgba(196, 154, 58, 0.16);
}

.iti__country-list {
    z-index: 99999;
}

/* =========================
   PREMIUM TICKET DESIGN
========================= */

.ticket-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 15%, rgba(196, 154, 58, 0.12), transparent 30%),
        linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
    padding: 50px 15px;
}

.ticket-container {
    background: #ffffff;
    max-width: 980px;
    margin: auto;
    padding: 0;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(16, 35, 63, 0.16);
    border: 1px solid #d9e1ea;
    overflow: hidden;
}

.ticket-header {
    background:
        radial-gradient(circle at right top, rgba(196, 154, 58, 0.28), transparent 32%),
        linear-gradient(135deg, #10233f 0%, #17385f 100%);
    color: #ffffff;
    padding: 28px 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-bottom: none;
    margin-bottom: 0;
}

.ticket-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ticket-brand img {
    width: 86px;
    height: auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 8px;
}

.ticket-brand h1 {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0;
}

.ticket-brand p {
    color: #dbe4ee;
    margin: 4px 0 0;
}

.ticket-status {
    background: rgba(196, 154, 58, 0.16);
    color: #c49a3a;
    border: 1px solid rgba(196, 154, 58, 0.4);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ticket-title {
    text-align: center;
    padding: 34px 34px 0;
    margin-bottom: 25px;
}

.ticket-title h2 {
    color: #10233f;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 8px;
}

.ticket-title p {
    color: #526274;
}

.ticket-booking-number {
    background:
        radial-gradient(circle at right, rgba(196, 154, 58, 0.34), transparent 30%),
        linear-gradient(135deg, #10233f 0%, #17385f 100%);
    color: #ffffff;
    padding: 24px;
    border-radius: 22px;
    text-align: center;
    margin: 0 34px 28px;
    box-shadow: 0 16px 35px rgba(16, 35, 63, 0.2);
}

.ticket-booking-number span {
    display: block;
    color: #dbe4ee;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.ticket-booking-number strong {
    color: #c49a3a;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    letter-spacing: 1px;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: 0 34px;
    margin-bottom: 22px;
}

.ticket-box {
    border: 1px solid #d9e1ea;
    border-radius: 20px;
    padding: 24px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(16, 35, 63, 0.06);
}

.ticket-box.full {
    margin: 0 34px 22px;
}

.ticket-box h3 {
    color: #10233f;
    margin-bottom: 16px;
    border-bottom: 1px solid #d9e1ea;
    padding-bottom: 10px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    border-bottom: 1px solid #edf2f7;
}

.ticket-row:last-child {
    border-bottom: none;
}

.ticket-row span {
    color: #526274;
}

.ticket-row strong {
    color: #10233f;
    text-align: right;
}

.ticket-row.total strong {
    color: #c49a3a;
    font-size: 1.2rem;
}

.ticket-codes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: 0 34px;
    margin-bottom: 22px;
}

.code-box {
    background: #f6f8fb;
    border: 1px solid #d9e1ea;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}

.code-box h3 {
    color: #10233f;
    margin-bottom: 18px;
}

#qrcode {
    display: flex;
    justify-content: center;
    align-items: center;
}

#barcode {
    max-width: 100%;
}

.ticket-note {
    background: #fff8df;
    border: 1px solid rgba(196, 154, 58, 0.35);
    color: #7a5a17;
    padding: 18px;
    border-radius: 16px;
    margin: 0 34px 25px;
}

.ticket-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 34px 34px;
}

.btn-print,
.btn-back {
    border: none;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    font-size: 15px;
}

.btn-print {
    background: #c49a3a;
    color: #10233f;
}

.btn-print:hover {
    background: #9f7a2b;
}

.btn-back {
    background: #10233f;
    color: #ffffff;
}

.btn-back:hover {
    background: #17385f;
}

/* RESPONSIVE TICKET */
@media (max-width: 768px) {
    .ticket-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ticket-grid,
    .ticket-codes {
        grid-template-columns: 1fr;
        padding: 0 22px;
    }

    .ticket-booking-number,
    .ticket-box.full,
    .ticket-note {
        margin-left: 22px;
        margin-right: 22px;
    }

    .ticket-actions {
        flex-direction: column;
        padding: 0 22px 26px;
    }

    .ticket-brand img {
        width: 70px;
    }

    .ticket-row {
        flex-direction: column;
        gap: 4px;
    }

    .ticket-row strong {
        text-align: left;
    }
}

/* PRINT TICKET */
@media print {
    body {
        background: #ffffff !important;
    }

    .ticket-page {
        background: #ffffff !important;
        padding: 0;
    }

    .ticket-container {
        box-shadow: none;
        border-radius: 0;
        max-width: 100%;
        border: none;
    }

    .ticket-actions {
        display: none;
    }

    .ticket-header {
        background: #10233f !important;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .ticket-booking-number {
        background: #10233f !important;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}

/* =========================
   PAYMENT PAGE PREMIUM
========================= */

.premium-payment-section {
    background:
        radial-gradient(circle at 18% 18%, rgba(196, 154, 58, 0.12), transparent 30%),
        linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
    padding: 75px 0;
}

.payment-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: start;
}

.premium-payment-card,
.payment-security-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 22px 55px rgba(16, 35, 63, 0.1);
}

.payment-header {
    text-align: center;
    margin-bottom: 28px;
}

.payment-header span {
    color: #c49a3a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 0.85rem;
}

.payment-header h1 {
    color: #10233f;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 10px 0;
}

.payment-header p {
    color: #526274;
    line-height: 1.7;
}

.payment-amount-box {
    background:
        radial-gradient(circle at right top, rgba(196, 154, 58, 0.34), transparent 32%),
        linear-gradient(135deg, #10233f 0%, #17385f 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    margin-bottom: 28px;
    box-shadow: 0 18px 40px rgba(16, 35, 63, 0.2);
}

.payment-amount-box span {
    display: block;
    color: #dbe4ee;
    margin-bottom: 8px;
    font-weight: 700;
}

.payment-amount-box strong {
    color: #c49a3a;
    font-size: clamp(2rem, 5vw, 3.3rem);
}

.payment-details h2 {
    color: #10233f;
    margin-bottom: 16px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid #edf2f7;
}

.payment-row span {
    color: #526274;
}

.payment-row strong {
    color: #10233f;
    text-align: right;
}

.payment-form {
    margin-top: 28px;
}

.btn-payment {
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 17px 24px;
    background: #c49a3a;
    color: #10233f;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(196, 154, 58, 0.28);
    transition: 0.25s ease;
}

.btn-payment:hover {
    background: #9f7a2b;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(196, 154, 58, 0.35);
}

.payment-actions {
    margin-top: 18px;
    text-align: center;
}

.payment-security-card {
    position: sticky;
    top: 130px;
}

.security-icon {
    width: 68px;
    height: 68px;
    background: #f6f0df;
    color: #10233f;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 20px;
}

.payment-security-card h2 {
    color: #10233f;
    margin-bottom: 12px;
}

.payment-security-card p {
    color: #526274;
    line-height: 1.75;
    margin-bottom: 22px;
}

.security-list {
    display: grid;
    gap: 14px;
}

.security-list div {
    background: #f6f8fb;
    border: 1px solid #d9e1ea;
    border-radius: 16px;
    padding: 16px;
}

.security-list strong {
    display: block;
    color: #10233f;
    margin-bottom: 6px;
}

.security-list span {
    color: #526274;
    font-size: 0.92rem;
    line-height: 1.55;
}

/* RESPONSIVE PAYMENT */
@media (max-width: 900px) {
    .payment-layout {
        grid-template-columns: 1fr;
    }

    .payment-security-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .premium-payment-section {
        padding: 50px 0;
    }

    .premium-payment-card,
    .payment-security-card {
        padding: 24px;
    }

    .payment-row {
        flex-direction: column;
        gap: 4px;
    }

    .payment-row strong {
        text-align: left;
    }
}

/* =========================
   FIND BOOKING PAGE PREMIUM
========================= */

.premium-find-section {
    background:
        radial-gradient(circle at 15% 15%, rgba(196, 154, 58, 0.13), transparent 30%),
        linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
    padding: 75px 0;
}

.find-booking-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: start;
}

.find-booking-card,
.find-info-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 22px 55px rgba(16, 35, 63, 0.1);
}

.find-header {
    text-align: center;
    margin-bottom: 30px;
}

.find-header span {
    color: #c49a3a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 0.85rem;
}

.find-header h1 {
    color: #10233f;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 10px 0;
}

.find-header p {
    color: #526274;
    line-height: 1.7;
    margin: 0;
}

.find-booking-form {
    display: grid;
    gap: 22px;
}

.find-booking-form input {
    background: #ffffff;
    border: 1px solid #cfd8e3;
    border-radius: 14px;
    padding: 14px 15px;
    font-size: 1rem;
    transition: 0.25s ease;
}

.find-booking-form input:hover {
    border-color: #c49a3a;
}

.find-booking-form input:focus {
    border-color: #c49a3a;
    box-shadow: 0 0 0 4px rgba(196, 154, 58, 0.16);
}

.find-submit {
    margin-top: 6px;
    border-radius: 15px;
    background: #c49a3a;
    color: #10233f;
    box-shadow: 0 12px 25px rgba(196, 154, 58, 0.24);
}

.find-submit:hover {
    background: #9f7a2b;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(196, 154, 58, 0.32);
}

.find-help-box {
    background: #f6f8fb;
    border: 1px solid #d9e1ea;
    border-radius: 18px;
    padding: 18px;
    margin-top: 24px;
}

.find-help-box strong {
    display: block;
    color: #10233f;
    margin-bottom: 6px;
}

.find-help-box p {
    color: #526274;
    margin: 0;
    line-height: 1.6;
}

.find-info-card {
    position: sticky;
    top: 130px;
}

.find-info-icon {
    width: 68px;
    height: 68px;
    background: #f6f0df;
    color: #10233f;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 20px;
}

.find-info-card h2 {
    color: #10233f;
    margin-bottom: 12px;
}

.find-info-card p {
    color: #526274;
    line-height: 1.75;
    margin-bottom: 22px;
}

.find-info-list {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.find-info-list div {
    background: #f6f8fb;
    border: 1px solid #d9e1ea;
    border-radius: 16px;
    padding: 16px;
}

.find-info-list strong {
    display: block;
    color: #10233f;
    margin-bottom: 6px;
}

.find-info-list span {
    color: #526274;
    font-size: 0.92rem;
    line-height: 1.55;
}

/* RESPONSIVE FIND BOOKING */
@media (max-width: 900px) {
    .find-booking-layout {
        grid-template-columns: 1fr;
    }

    .find-info-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .premium-find-section {
        padding: 50px 0;
    }

    .find-booking-card,
    .find-info-card {
        padding: 24px;
    }
}

/* DATE + TIME SELECT */
.datetime-row {
    display: grid;
    grid-template-columns: 1fr 130px;
    gap: 12px;
}

.datetime-row input,
.datetime-row select {
    width: 100%;
}

@media (max-width: 768px) {
    .datetime-row {
        grid-template-columns: 1fr;
    }
}

/* ARRIVAL + DEPARTURE SIDE BY SIDE */
.datetime-pair {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.datetime-row {
    display: grid;
    grid-template-columns: 1fr 130px;
    gap: 12px;
}

.datetime-row input,
.datetime-row select {
    width: 100%;
}

@media (max-width: 768px) {
    .datetime-pair {
        grid-template-columns: 1fr;
    }

    .datetime-row {
        grid-template-columns: 1fr;
    }
}

/* FIX BOOKING DATE TIME LAYOUT */
.premium-booking-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.premium-booking-form .form-group input,
.premium-booking-form .form-group select {
    width: 100%;
}

.datetime-pair {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.datetime-row {
    display: grid;
    grid-template-columns: 1fr 130px;
    gap: 12px;
}

.datetime-row input,
.datetime-row select {
    width: 100%;
}

.booking-summary {
    width: 100%;
    margin-top: 28px;
}

.btn-submit {
    display: block;
    width: 100%;
    height: auto;
    min-height: 56px;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .premium-booking-form .form-grid,
    .datetime-pair {
        grid-template-columns: 1fr;
    }

    .datetime-row {
        grid-template-columns: 1fr;
    }
}

/* =========================
   CONTACT PAGE PREMIUM
========================= */

.contact-hero {
    background:
        radial-gradient(circle at 20% 20%, rgba(196, 154, 58, 0.18), transparent 30%),
        linear-gradient(135deg, #10233f 0%, #17385f 100%);
    padding: 75px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    max-width: 780px;
    margin: 0 auto;
}

.contact-hero-content span {
    display: inline-block;
    color: #c49a3a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 12px;
}

.contact-hero-content h1 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    margin: 0 0 14px;
}

.contact-hero-content p {
    color: #dbe4ee;
    line-height: 1.8;
    margin: 0;
}

.premium-contact-section {
    background:
        radial-gradient(circle at 15% 15%, rgba(196, 154, 58, 0.13), transparent 30%),
        linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
    padding: 75px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: start;
}

.contact-card,
.contact-info-card,
.map-box {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 22px 55px rgba(16, 35, 63, 0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header span {
    color: #c49a3a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 0.85rem;
}

.contact-header h2 {
    color: #10233f;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 10px 0;
}

.contact-header p {
    color: #526274;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 22px;
}

.contact-form textarea {
    resize: vertical;
    border: 1px solid #cfd8e3;
    border-radius: 14px;
    padding: 14px 15px;
    font-size: 1rem;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-form textarea:focus {
    border-color: #c49a3a;
    box-shadow: 0 0 0 4px rgba(196, 154, 58, 0.16);
}

.contact-note {
    background: #fff8df;
    border: 1px solid rgba(196, 154, 58, 0.35);
    color: #7a5a17;
    padding: 18px;
    border-radius: 16px;
    margin-top: 24px;
}

.contact-note p {
    margin: 5px 0 0;
}

.contact-info-card {
    position: sticky;
    top: 130px;
}

.contact-info-icon {
    width: 68px;
    height: 68px;
    background: #f6f0df;
    color: #10233f;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 20px;
}

.contact-info-card h2 {
    color: #10233f;
    margin-bottom: 12px;
}

.contact-info-card p {
    color: #526274;
    line-height: 1.75;
    margin-bottom: 22px;
}

.contact-info-list {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-info-list div {
    background: #f6f8fb;
    border: 1px solid #d9e1ea;
    border-radius: 16px;
    padding: 16px;
}

.contact-info-list strong {
    display: block;
    color: #10233f;
    margin-bottom: 6px;
}

.contact-info-list span {
    color: #526274;
    font-size: 0.92rem;
    line-height: 1.55;
}

.map-box {
    margin-top: 30px;
}

.map-box h2 {
    color: #10233f;
    margin-bottom: 18px;
}

.map-placeholder {
    min-height: 280px;
    background:
        radial-gradient(circle at center, rgba(196, 154, 58, 0.18), transparent 30%),
        linear-gradient(135deg, #10233f 0%, #17385f 100%);
    color: #ffffff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.map-placeholder p {
    max-width: 520px;
    color: #dbe4ee;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 55px 0;
    }

    .premium-contact-section {
        padding: 50px 0;
    }

    .contact-card,
    .contact-info-card,
    .map-box {
        padding: 24px;
    }
}

/* CONTACT REAL PHOTOS */
.contact-photos {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-photo-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(16, 35, 63, 0.1);
}

.contact-photo-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.contact-photo-card div {
    padding: 24px;
}

.contact-photo-card h3 {
    color: #10233f;
    margin-bottom: 10px;
}

.contact-photo-card p {
    color: #526274;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .contact-photos {
        grid-template-columns: 1fr;
    }

    .contact-photo-card img {
        height: 260px;
    }
}

/* =========================
   CONTACT REAL PHOTOS
========================= */

.contact-photos {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.contact-photo-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(16, 35, 63, 0.08);
}

.compact-photo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.contact-photo-content {
    padding: 18px 20px;
}

.contact-photo-card h3 {
    color: #10233f;
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.contact-photo-card p {
    color: #526274;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* =========================
   CONTACT MAP IMPROVED
========================= */

.map-box {
    margin-top: 30px;
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 22px 55px rgba(16, 35, 63, 0.1);
}

.map-box-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 22px;
}

.map-label {
    display: inline-block;
    color: #c49a3a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.82rem;
    margin-bottom: 8px;
}

.map-box-header h2 {
    color: #10233f;
    margin: 0 0 10px;
    font-size: 1.8rem;
}

.map-box-header p {
    color: #526274;
    line-height: 1.7;
    margin: 0;
    max-width: 720px;
}

.map-frame-wrapper {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #d9e1ea;
    box-shadow: 0 16px 35px rgba(16, 35, 63, 0.08);
}

.map-frame-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 380px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .map-box-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .contact-photos {
        grid-template-columns: 1fr;
    }

    .compact-photo-card img {
        height: 200px;
    }

    .map-box {
        padding: 20px;
    }

    .map-box-header h2 {
        font-size: 1.5rem;
    }

    .map-frame-wrapper iframe {
        min-height: 300px;
    }
}

/* FORCE CONTACT PHOTOS SMALL SIDE BY SIDE */
.contact-photos {
    margin-top: 28px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 22px !important;
    width: 100% !important;
}

.contact-photo-card {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 18px !important;
    overflow: hidden !important;
}

.contact-photo-card img,
.compact-photo-card img {
    width: 100% !important;
    height: 190px !important;
    object-fit: cover !important;
    display: block !important;
}

.contact-photo-content {
    padding: 14px 16px !important;
}

.contact-photo-content h3 {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
}

.contact-photo-content p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}

@media (max-width: 768px) {
    .contact-photos {
        grid-template-columns: 1fr !important;
    }

    .contact-photo-card img,
    .compact-photo-card img {
        height: 180px !important;
    }
}

/* ADMIN ROLE BADGES */
.admin-user-box {
    margin: 18px 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: grid;
    gap: 6px;
}

.admin-user-box strong {
    color: #ffffff;
    font-size: 0.95rem;
}

.admin-role {
    display: inline-block;
    width: fit-content;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.super-admin-role {
    background: rgba(196, 154, 58, 0.18);
    color: #f7d36b;
    border: 1px solid rgba(196, 154, 58, 0.45);
}

.employee-role {
    background: rgba(80, 160, 255, 0.16);
    color: #9dccff;
    border: 1px solid rgba(80, 160, 255, 0.35);
}

/* ADMIN ACCESS ALERT */
.admin-alert-error {
    background: #fff1f1;
    color: #b42318;
    border: 1px solid #f5b5b5;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 22px;
    font-weight: 700;
}

.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.admin-panel-header p {
    margin: 5px 0 0;
    color: #667085;
}

.admin-btn {
    background: #10233f;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.admin-btn:hover {
    background: #c49a3a;
    color: #10233f;
}

/* BOOKING RETURN FLIGHT TOOLTIP */
.tooltip-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tooltip-icon {
    position: relative;
    width: 20px;
    height: 20px;
    background: #10233f;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    cursor: help;
}

.tooltip-text {
    position: absolute;
    left: 50%;
    bottom: 145%;
    transform: translateX(-50%);
    width: 280px;
    background: #10233f;
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.5;
    font-weight: 500;
    box-shadow: 0 14px 35px rgba(16, 35, 63, 0.22);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    z-index: 100;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: #10233f transparent transparent transparent;
}

.tooltip-icon:hover .tooltip-text,
.tooltip-icon:focus .tooltip-text {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .tooltip-label {
        align-items: flex-start;
    }

    .tooltip-text {
        left: auto;
        right: 0;
        transform: none;
        width: 240px;
    }
}

/* ADMIN SEARCH FORM */
.admin-search-form {
    display: grid;
    grid-template-columns: 1fr 220px auto auto;
    gap: 14px;
    align-items: center;
}

.admin-search-form input,
.admin-search-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfd8e3;
    border-radius: 12px;
    font-size: 0.95rem;
}

.admin-search-form button {
    background: #10233f;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 800;
    cursor: pointer;
}

.admin-clear-btn {
    background: #ffffff;
    color: #10233f;
    border: 1px solid #10233f;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
}

.danger-link {
    color: #b42318 !important;
    font-weight: 800;
}

@media (max-width: 900px) {
    .admin-search-form {
        grid-template-columns: 1fr;
    }
}

/* ADMIN DAILY SCHEDULE */
.daily-date-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    flex-wrap: wrap;
}

.daily-date-form {
    display: flex;
    align-items: end;
    gap: 12px;
    flex-wrap: wrap;
}

.daily-date-form label {
    display: block;
    font-weight: 800;
    color: #10233f;
    margin-bottom: 6px;
}

.daily-date-form input {
    padding: 12px 14px;
    border: 1px solid #cfd8e3;
    border-radius: 12px;
    font-size: 0.95rem;
}

.daily-date-form button {
    background: #10233f;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 800;
    cursor: pointer;
}

.daily-date-form button:hover {
    background: #c49a3a;
    color: #10233f;
}

.daily-schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.daily-count-badge {
    background: #10233f;
    color: #ffffff;
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .daily-date-header,
    .daily-date-form {
        flex-direction: column;
        align-items: stretch;
    }

    .daily-date-form input,
    .daily-date-form button,
    .daily-date-header a {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   SERVICES PAGE
========================= */

.services-hero {
    background:
        radial-gradient(circle at 20% 20%, rgba(196, 154, 58, 0.2), transparent 30%),
        linear-gradient(135deg, #10233f 0%, #17385f 100%);
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-content span {
    display: inline-block;
    color: #c49a3a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
}

.services-hero-content h1 {
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    margin: 0 0 14px;
}

.services-hero-content p {
    color: #dbe4ee;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.services-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(196, 154, 58, 0.12), transparent 28%),
        linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
    padding: 80px 0;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.services-intro span {
    color: #c49a3a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 0.85rem;
}

.services-intro h2 {
    color: #10233f;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 10px 0 14px;
}

.services-intro p {
    color: #526274;
    line-height: 1.8;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 22px 55px rgba(16, 35, 63, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: rgba(196, 154, 58, 0.12);
    border-radius: 50%;
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: #f6f0df;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 22px;
}

.service-badge {
    display: inline-block;
    background: #10233f;
    color: #ffffff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.service-card h2 {
    color: #10233f;
    font-size: 1.8rem;
    margin: 0 0 14px;
}

.service-card p {
    color: #526274;
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 10px;
}

.service-list li {
    color: #10233f;
    font-weight: 700;
    position: relative;
    padding-left: 26px;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #c49a3a;
    font-weight: 900;
}

.services-cta {
    margin-top: 40px;
    background: linear-gradient(135deg, #10233f 0%, #17385f 100%);
    color: #ffffff;
    border-radius: 28px;
    padding: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    box-shadow: 0 22px 55px rgba(16, 35, 63, 0.16);
}

.services-cta span {
    color: #c49a3a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.85rem;
}

.services-cta h2 {
    margin: 8px 0 10px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.services-cta p {
    color: #dbe4ee;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 60px 0;
    }

    .services-section {
        padding: 55px 0;
    }

    .service-card,
    .services-cta {
        padding: 24px;
    }
}

/* FIX HOME HERO SERVICES BUTTON */
.hero-buttons a[href*="services.php"],
.hero-actions a[href*="services.php"],
.hero-cta a[href*="services.php"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    background: #ffffff;
    color: #10233f !important;
    border: 1px solid #10233f;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: 800;
    transition: 0.25s ease;
}

.hero-buttons a[href*="services.php"]:hover,
.hero-actions a[href*="services.php"]:hover,
.hero-cta a[href*="services.php"]:hover {
    background: #10233f;
    color: #ffffff !important;
}

/* HOME HERO BUTTONS SAME PREMIUM ANIMATION */
.hero-buttons a,
.hero-actions a,
.hero-cta a {
    position: relative;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none !important;
    transition: 0.28s ease;
    box-shadow: 0 10px 25px rgba(16, 35, 63, 0.08);
}

/* LIGHT SWIPE EFFECT */
.hero-buttons a::before,
.hero-actions a::before,
.hero-cta a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.55),
        transparent
    );
    transition: 0.45s ease;
}

.hero-buttons a:hover::before,
.hero-actions a:hover::before,
.hero-cta a:hover::before {
    left: 130%;
}

/* BOOK NOW BUTTON */
.hero-buttons a[href*="booking.php"],
.hero-actions a[href*="booking.php"],
.hero-cta a[href*="booking.php"] {
    background: #f9c900 !important;
    color: #10233f !important;
    border: 1px solid #f9c900 !important;
}

/* SERVICES + FIND BOOKING BUTTONS */
.hero-buttons a[href*="services.php"],
.hero-buttons a[href*="find-booking.php"],
.hero-actions a[href*="services.php"],
.hero-actions a[href*="find-booking.php"],
.hero-cta a[href*="services.php"],
.hero-cta a[href*="find-booking.php"] {
    background: #ffffff !important;
    color: #10233f !important;
    border: 1px solid #10233f !important;
}

/* HOVER ANIMATION FOR ALL */
.hero-buttons a:hover,
.hero-actions a:hover,
.hero-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(16, 35, 63, 0.18);
}

/* HOVER COLORS */
.hero-buttons a[href*="booking.php"]:hover,
.hero-actions a[href*="booking.php"]:hover,
.hero-cta a[href*="booking.php"]:hover {
    background: #10233f !important;
    color: #ffffff !important;
    border-color: #10233f !important;
}

.hero-buttons a[href*="services.php"]:hover,
.hero-buttons a[href*="find-booking.php"]:hover,
.hero-actions a[href*="services.php"]:hover,
.hero-actions a[href*="find-booking.php"]:hover,
.hero-cta a[href*="services.php"]:hover,
.hero-cta a[href*="find-booking.php"]:hover {
    background: #10233f !important;
    color: #ffffff !important;
}

/* =========================
   HOME KEY SAFETY + SERVICES
========================= */

.key-safety-section {
    background: #f6f8fb;
    padding: 45px 0;
}

.key-safety-card {
    background: linear-gradient(135deg, #10233f 0%, #17385f 100%);
    color: #ffffff;
    border-radius: 28px;
    padding: 34px;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 26px;
    align-items: center;
    box-shadow: 0 22px 55px rgba(16, 35, 63, 0.16);
}

.key-safety-icon {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: rgba(196, 154, 58, 0.18);
    border: 1px solid rgba(196, 154, 58, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
}

.key-safety-card span,
.home-services-card span,
.home-cta-card span {
    display: inline-block;
    color: #c49a3a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.key-safety-card h2 {
    color: #ffffff;
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.key-safety-card p {
    color: #dbe4ee;
    line-height: 1.8;
    margin: 0;
}

.home-services-preview {
    background: #f6f8fb;
    padding: 60px 0;
}

.home-services-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 22px 55px rgba(16, 35, 63, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.home-services-card h2 {
    color: #10233f;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 0 0 10px;
}

.home-services-card p {
    color: #526274;
    line-height: 1.8;
    margin: 0;
}

.home-cta-section {
    background: linear-gradient(135deg, #10233f 0%, #17385f 100%);
    padding: 70px 0;
}

.home-cta-card {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.home-cta-card h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 8px 0 12px;
}

.home-cta-card p {
    color: #dbe4ee;
    line-height: 1.8;
    margin: 0 auto 24px;
    max-width: 650px;
}

@media (max-width: 768px) {
    .key-safety-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .key-safety-icon {
        margin: 0 auto;
    }

    .home-services-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* SECURE KEY BLOCK - HOME ONLY */
.secure-key-home-block {
    background: #f6f8fb;
    padding: 42px 0;
}

.secure-key-home-card {
    background: linear-gradient(135deg, #10233f 0%, #17385f 100%);
    color: #ffffff;
    border-radius: 28px;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 24px;
    align-items: center;
    box-shadow: 0 22px 55px rgba(16, 35, 63, 0.16);
    border: 1px solid rgba(196, 154, 58, 0.25);
}

.secure-key-home-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: rgba(196, 154, 58, 0.18);
    border: 1px solid rgba(196, 154, 58, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.secure-key-home-content span {
    display: inline-block;
    color: #c49a3a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.secure-key-home-content h2 {
    color: #ffffff;
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.secure-key-home-content p {
    color: #dbe4ee;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .secure-key-home-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 26px;
    }

    .secure-key-home-icon {
        margin: 0 auto;
    }
}

/* FIX BOOKING DATE FIELDS ALIGNMENT */
.premium-booking-form .form-grid > .form-group:nth-child(9) {
    grid-column: 1 / -1;
}

.premium-booking-form .form-grid > .form-group:nth-child(10),
.premium-booking-form .form-grid > .form-group:nth-child(11) {
    grid-column: auto;
}

.premium-booking-form .datetime-row {
    display: grid;
    grid-template-columns: 1fr 130px;
    gap: 12px;
    align-items: center;
}

@media (max-width: 768px) {
    .premium-booking-form .form-grid > .form-group:nth-child(9),
    .premium-booking-form .form-grid > .form-group:nth-child(10),
    .premium-booking-form .form-grid > .form-group:nth-child(11) {
        grid-column: 1 / -1;
    }

    .premium-booking-form .datetime-row {
        grid-template-columns: 1fr;
    }
}

/* FORCE ARRIVAL + FLIGHT RETURN SAME LINE */
.premium-booking-form .form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

/* Flight Number prend toute la ligne */
.premium-booking-form .form-group:has(input[name="flight_number"]) {
    grid-column: 1 / -1 !important;
}

/* Arrival à gauche */
.premium-booking-form .form-group:has(#arrival_date) {
    grid-column: 1 / 2 !important;
}

/* Flight Return à droite */
.premium-booking-form .form-group:has(#departure_date) {
    grid-column: 2 / 3 !important;
}

/* Date + Time dans chaque bloc */
.premium-booking-form .datetime-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 120px !important;
    gap: 12px !important;
    width: 100% !important;
}

.premium-booking-form .datetime-row input,
.premium-booking-form .datetime-row select {
    width: 100% !important;
    min-width: 0 !important;
}

@media (max-width: 768px) {
    .premium-booking-form .form-grid {
        grid-template-columns: 1fr !important;
    }

    .premium-booking-form .form-group:has(input[name="flight_number"]),
    .premium-booking-form .form-group:has(#arrival_date),
    .premium-booking-form .form-group:has(#departure_date) {
        grid-column: 1 / -1 !important;
    }

    .premium-booking-form .datetime-row {
        grid-template-columns: 1fr !important;
    }
}

/* =========================
   GLOBAL PREMIUM BUTTON FIX
   Services / Confirmation / Ticket
========================= */

/* Boutons dans les cartes Services */
.service-card a.btn,
.services-cta a.btn,
.car-wash-submit-btn,
.contact-info-card a.btn,
.map-box a.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 24px;
    border-radius: 12px;
    font-weight: 900;
    text-decoration: none !important;
    transition: 0.28s ease;
    box-shadow: 0 10px 25px rgba(16, 35, 63, 0.08);
}

/* Effet lumière */
.service-card a.btn::before,
.services-cta a.btn::before,
.car-wash-submit-btn::before,
.contact-info-card a.btn::before,
.map-box a.btn::before,
.confirmation-actions a::before,
.confirmation-buttons a::before,
.ticket-actions a::before,
.ticket-buttons a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.55),
        transparent
    );
    transition: 0.45s ease;
}

.service-card a.btn:hover::before,
.services-cta a.btn:hover::before,
.car-wash-submit-btn:hover::before,
.contact-info-card a.btn:hover::before,
.map-box a.btn:hover::before,
.confirmation-actions a:hover::before,
.confirmation-buttons a:hover::before,
.ticket-actions a:hover::before,
.ticket-buttons a:hover::before {
    left: 130%;
}

/* Bouton outline */
.service-card a.btn-outline,
.services-cta a.btn-outline,
.contact-info-card a.btn-outline,
.map-box a.btn-outline {
    background: #ffffff !important;
    color: #10233f !important;
    border: 1px solid #10233f !important;
}

/* Bouton primary */
.service-card a.btn-primary,
.services-cta a.btn-primary,
.car-wash-submit-btn,
.contact-info-card a.btn-primary,
.map-box a.btn-primary {
    background: #f9c900 !important;
    color: #10233f !important;
    border: 1px solid #f9c900 !important;
}

/* Hover général */
.service-card a.btn:hover,
.services-cta a.btn:hover,
.car-wash-submit-btn:hover,
.contact-info-card a.btn:hover,
.map-box a.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(16, 35, 63, 0.18);
}

/* Hover couleurs */
.service-card a.btn-outline:hover,
.services-cta a.btn-outline:hover,
.contact-info-card a.btn-outline:hover,
.map-box a.btn-outline:hover,
.service-card a.btn-primary:hover,
.services-cta a.btn-primary:hover,
.car-wash-submit-btn:hover,
.contact-info-card a.btn-primary:hover,
.map-box a.btn-primary:hover {
    background: #10233f !important;
    color: #ffffff !important;
    border-color: #10233f !important;
}

/* Confirmation / Ticket bottom buttons */
.confirmation-actions,
.confirmation-buttons,
.ticket-actions,
.ticket-buttons,
.confirmation-card .action-buttons,
.ticket-card .action-buttons {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.confirmation-actions a,
.confirmation-buttons a,
.ticket-actions a,
.ticket-buttons a,
.confirmation-card .action-buttons a,
.ticket-card .action-buttons a,
.confirmation-card a[href*="ticket.php"],
.confirmation-card a[href*="booking.php"],
.confirmation-card a[href*="find-booking.php"],
.ticket-card a[href*="booking.php"],
.ticket-card a[href*="find-booking.php"] {
    position: relative;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 24px;
    border-radius: 12px;
    background: #ffffff !important;
    color: #10233f !important;
    border: 1px solid #10233f !important;
    font-weight: 900;
    text-decoration: none !important;
    transition: 0.28s ease;
    box-shadow: 0 10px 25px rgba(16, 35, 63, 0.08);
}

/* View Ticket reste jaune */
.confirmation-card a[href*="ticket.php"] {
    background: #f9c900 !important;
    color: #10233f !important;
    border-color: #f9c900 !important;
}

.confirmation-actions a:hover,
.confirmation-buttons a:hover,
.ticket-actions a:hover,
.ticket-buttons a:hover,
.confirmation-card .action-buttons a:hover,
.ticket-card .action-buttons a:hover,
.confirmation-card a[href*="ticket.php"]:hover,
.confirmation-card a[href*="booking.php"]:hover,
.confirmation-card a[href*="find-booking.php"]:hover,
.ticket-card a[href*="booking.php"]:hover,
.ticket-card a[href*="find-booking.php"]:hover {
    transform: translateY(-3px);
    background: #10233f !important;
    color: #ffffff !important;
    border-color: #10233f !important;
    box-shadow: 0 16px 35px rgba(16, 35, 63, 0.18);
}

@media (max-width: 768px) {
    .confirmation-actions a,
    .confirmation-buttons a,
    .ticket-actions a,
    .ticket-buttons a,
    .confirmation-card .action-buttons a,
    .ticket-card .action-buttons a {
        width: 100%;
    }
}

/* =====================================================
   FORCE FIX BUTTONS - NY MD PARK
   Services / Confirmation / Ticket
===================================================== */

/* SERVICES PAGE BUTTONS */
body a[href="#reserve-car-wash"],
body a[href*="contact.php"],
body .services-section a[href*="booking.php"] {
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 52px !important;
    padding: 14px 26px !important;

    border-radius: 12px !important;
    border: 1px solid #10233f !important;

    background: #ffffff !important;
    color: #10233f !important;

    font-weight: 900 !important;
    font-size: 0.95rem !important;
    line-height: 1 !important;
    text-decoration: none !important;

    box-shadow: 0 10px 25px rgba(16, 35, 63, 0.08) !important;
    transition: all 0.28s ease !important;
}

/* Book Parking / Primary buttons */
body .services-section a[href*="booking.php"],
body .services-cta a[href*="booking.php"] {
    background: #f9c900 !important;
    color: #10233f !important;
    border-color: #f9c900 !important;
}

/* Shine effect */
body a[href="#reserve-car-wash"]::before,
body a[href*="contact.php"]::before,
body .services-section a[href*="booking.php"]::before,
body .services-cta a[href*="booking.php"]::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -120% !important;
    width: 70% !important;
    height: 100% !important;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    ) !important;
    transition: 0.45s ease !important;
}

/* Hover shine */
body a[href="#reserve-car-wash"]:hover::before,
body a[href*="contact.php"]:hover::before,
body .services-section a[href*="booking.php"]:hover::before,
body .services-cta a[href*="booking.php"]:hover::before {
    left: 130% !important;
}

/* Hover animation */
body a[href="#reserve-car-wash"]:hover,
body a[href*="contact.php"]:hover,
body .services-section a[href*="booking.php"]:hover,
body .services-cta a[href*="booking.php"]:hover {
    transform: translateY(-3px) !important;
    background: #10233f !important;
    color: #ffffff !important;
    border-color: #10233f !important;
    box-shadow: 0 16px 35px rgba(16, 35, 63, 0.18) !important;
}

/* CONFIRMATION / CLIENT TICKET BUTTONS */
body a[href*="ticket.php"],
body a[href*="booking.php"],
body a[href*="find-booking.php"] {
    text-decoration: none !important;
}

/* Only buttons inside confirmation/ticket cards */
.confirmation-card a[href*="ticket.php"],
.confirmation-card a[href*="booking.php"],
.confirmation-card a[href*="find-booking.php"],
.ticket-card-clean a[href*="booking.php"],
.ticket-card-clean a[href*="find-booking.php"],
.ticket-card a[href*="booking.php"],
.ticket-card a[href*="find-booking.php"] {
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 52px !important;
    padding: 14px 26px !important;

    border-radius: 12px !important;
    border: 1px solid #10233f !important;

    background: #ffffff !important;
    color: #10233f !important;

    font-weight: 900 !important;
    text-decoration: none !important;

    box-shadow: 0 10px 25px rgba(16, 35, 63, 0.08) !important;
    transition: all 0.28s ease !important;
}

/* View Ticket stays yellow */
.confirmation-card a[href*="ticket.php"] {
    background: #f9c900 !important;
    color: #10233f !important;
    border-color: #f9c900 !important;
}

/* Confirmation/Ticket hover */
.confirmation-card a[href*="ticket.php"]:hover,
.confirmation-card a[href*="booking.php"]:hover,
.confirmation-card a[href*="find-booking.php"]:hover,
.ticket-card-clean a[href*="booking.php"]:hover,
.ticket-card-clean a[href*="find-booking.php"]:hover,
.ticket-card a[href*="booking.php"]:hover,
.ticket-card a[href*="find-booking.php"]:hover {
    transform: translateY(-3px) !important;
    background: #10233f !important;
    color: #ffffff !important;
    border-color: #10233f !important;
    box-shadow: 0 16px 35px rgba(16, 35, 63, 0.18) !important;
}

/* Force action rows alignment */
.confirmation-card .action-buttons,
.ticket-card-clean .ticket-actions-clean,
.ticket-card .ticket-actions,
.confirmation-actions,
.ticket-actions {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
    margin-top: 28px !important;
}

/* FIX NAVBAR CONTACT LINK - RESTORE NORMAL MENU STYLE */
.site-header .navbar a[href*="contact.php"] {
    position: static !important;
    overflow: visible !important;

    display: inline-flex !important;
    align-items: center !important;

    min-height: auto !important;
    padding: 0 !important;

    background: transparent !important;
    color: #10233f !important;
    border: none !important;
    border-radius: 0 !important;

    box-shadow: none !important;
    transform: none !important;

    font-weight: 800 !important;
    text-decoration: none !important;
}

/* Remove shine effect from navbar contact */
.site-header .navbar a[href*="contact.php"]::before {
    display: none !important;
    content: none !important;
}

/* Navbar contact hover normal */
.site-header .navbar a[href*="contact.php"]:hover {
    background: transparent !important;
    color: #c49a3a !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

/* FORCE SAME NAVBAR STYLE FOR ALL MENU LINKS */
.site-header .navbar a,
.site-header .navbar a[href*="contact.php"] {
    position: relative !important;
    overflow: visible !important;

    display: inline-flex !important;
    align-items: center !important;

    min-height: auto !important;
    padding: 0 !important;

    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;

    color: #10233f !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    line-height: normal !important;
    text-decoration: none !important;
    text-shadow: none !important;
}

/* Remove button shine from navbar links */
.site-header .navbar a::before,
.site-header .navbar a[href*="contact.php"]::before {
    display: none !important;
    content: none !important;
}

/* Same hover for all navbar links */
.site-header .navbar a:hover,
.site-header .navbar a[href*="contact.php"]:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;

    color: #c49a3a !important;
}

/* =====================================================
   FIND BOOKING PAGE - PREMIUM BUTTON STYLE FIX
===================================================== */

/* Ne pas transformer le lien Find Booking du menu */
.site-header .navbar a[href*="find-booking.php"] {
    position: relative !important;
    overflow: visible !important;
    display: inline-flex !important;
    align-items: center !important;

    min-height: auto !important;
    padding: 0 !important;

    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;

    color: #10233f !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
}

.site-header .navbar a[href*="find-booking.php"]::before {
    display: none !important;
    content: none !important;
}

.site-header .navbar a[href*="find-booking.php"]:hover {
    background: transparent !important;
    color: #c49a3a !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Boutons à l'intérieur de la page Find Booking */
.find-booking-section button,
.find-booking-section .btn,
.find-booking-section .btn-submit,
.find-booking-section a.btn,
.find-booking-card button,
.find-booking-card .btn,
.find-booking-card .btn-submit,
.find-booking-card a.btn,
.find-booking-result a,
.booking-result-card a,
form[action*="find-booking-action.php"] button {
    position: relative !important;
    overflow: hidden !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 52px !important;
    padding: 14px 26px !important;

    border-radius: 12px !important;
    border: 1px solid #f9c900 !important;

    background: #f9c900 !important;
    color: #10233f !important;

    font-weight: 900 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;

    cursor: pointer !important;
    box-shadow: 0 10px 25px rgba(16, 35, 63, 0.08) !important;
    transition: all 0.28s ease !important;
}

/* Effet lumière */
.find-booking-section button::before,
.find-booking-section .btn::before,
.find-booking-section .btn-submit::before,
.find-booking-section a.btn::before,
.find-booking-card button::before,
.find-booking-card .btn::before,
.find-booking-card .btn-submit::before,
.find-booking-card a.btn::before,
.find-booking-result a::before,
.booking-result-card a::before,
form[action*="find-booking-action.php"] button::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -120% !important;
    width: 70% !important;
    height: 100% !important;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    ) !important;
    transition: 0.45s ease !important;
}

/* Hover lumière */
.find-booking-section button:hover::before,
.find-booking-section .btn:hover::before,
.find-booking-section .btn-submit:hover::before,
.find-booking-section a.btn:hover::before,
.find-booking-card button:hover::before,
.find-booking-card .btn:hover::before,
.find-booking-card .btn-submit:hover::before,
.find-booking-card a.btn:hover::before,
.find-booking-result a:hover::before,
.booking-result-card a:hover::before,
form[action*="find-booking-action.php"] button:hover::before {
    left: 130% !important;
}

/* Hover animation */
.find-booking-section button:hover,
.find-booking-section .btn:hover,
.find-booking-section .btn-submit:hover,
.find-booking-section a.btn:hover,
.find-booking-card button:hover,
.find-booking-card .btn:hover,
.find-booking-card .btn-submit:hover,
.find-booking-card a.btn:hover,
.find-booking-result a:hover,
.booking-result-card a:hover,
form[action*="find-booking-action.php"] button:hover {
    transform: translateY(-3px) !important;
    background: #10233f !important;
    color: #ffffff !important;
    border-color: #10233f !important;
    box-shadow: 0 16px 35px rgba(16, 35, 63, 0.18) !important;
}

/* =====================================================
   FIND BOOKING HERO - PREMIUM COLOR + ANIMATION
===================================================== */

.find-booking-hero,
.find-booking-page-hero,
.page-hero.find-booking-hero {
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #10233f 0%, #17385f 55%, #1f4b7a 100%) !important;
    padding: 78px 0 !important;
}

/* Animated light layer */
.find-booking-hero::before,
.find-booking-page-hero::before,
.page-hero.find-booking-hero::before {
    content: "" !important;
    position: absolute !important;
    top: -80px !important;
    left: -20% !important;
    width: 55% !important;
    height: 260% !important;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.12),
        transparent
    ) !important;
    transform: rotate(18deg) !important;
    animation: findBookingHeroShine 6s ease-in-out infinite !important;
    pointer-events: none !important;
}

/* Soft gold glow */
.find-booking-hero::after,
.find-booking-page-hero::after,
.page-hero.find-booking-hero::after {
    content: "" !important;
    position: absolute !important;
    right: -120px !important;
    bottom: -140px !important;
    width: 320px !important;
    height: 320px !important;
    border-radius: 50% !important;
    background: rgba(196, 154, 58, 0.18) !important;
    filter: blur(8px) !important;
    pointer-events: none !important;
}

/* Text above animation */
.find-booking-hero .container,
.find-booking-page-hero .container,
.page-hero.find-booking-hero .container,
.find-booking-hero-content,
.find-booking-page-hero-content {
    position: relative !important;
    z-index: 2 !important;
}

.find-booking-hero h1,
.find-booking-page-hero h1,
.page-hero.find-booking-hero h1 {
    color: #ffffff !important;
    font-weight: 900 !important;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18) !important;
}

.find-booking-hero p,
.find-booking-page-hero p,
.page-hero.find-booking-hero p {
    color: #dbe4ee !important;
}

@keyframes findBookingHeroShine {
    0% {
        left: -65%;
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    70% {
        left: 120%;
        opacity: 0.8;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}

/* FORCE FIND BOOKING HERO ANIMATION */
.find-premium-hero {
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(
        135deg,
        #10233f 0%,
        #17385f 35%,
        #1f4b7a 65%,
        #10233f 100%
    ) !important;
    background-size: 220% 220% !important;
    animation: findBookingGradientMove 7s ease-in-out infinite !important;
}

.find-premium-hero::before {
    content: "" !important;
    position: absolute !important;
    top: -120px !important;
    left: -80% !important;
    width: 45% !important;
    height: 320% !important;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    ) !important;
    transform: rotate(18deg) !important;
    animation: findBookingLightSweep 3.8s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.find-premium-hero::after {
    content: "" !important;
    position: absolute !important;
    right: -130px !important;
    bottom: -150px !important;
    width: 340px !important;
    height: 340px !important;
    border-radius: 50% !important;
    background: rgba(196, 154, 58, 0.22) !important;
    filter: blur(10px) !important;
    animation: findBookingGlowPulse 4s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.find-premium-hero .container {
    position: relative !important;
    z-index: 3 !important;
}

@keyframes findBookingGradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes findBookingLightSweep {
    0% {
        left: -80%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    75% {
        left: 130%;
        opacity: 1;
    }

    100% {
        left: 130%;
        opacity: 0;
    }
}

@keyframes findBookingGlowPulse {
    0%, 100% {
        opacity: 0.45;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.08);
    }
}

/* =====================================================
   GLOBAL PREMIUM LANGUAGE SWITCHER
   English / Swedish with flags
===================================================== */

.language-switcher {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Hide the old separator | */
.language-switcher span {
    display: none !important;
}

/* Base premium button */
.language-switcher a {
    position: relative !important;
    overflow: hidden !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 42px !important;
    padding: 10px 16px !important;

    border-radius: 999px !important;
    border: 1px solid #d9e1ea !important;

    background: #ffffff !important;
    color: #10233f !important;

    font-size: 0 !important;
    font-weight: 900 !important;
    text-decoration: none !important;

    box-shadow: 0 8px 20px rgba(16, 35, 63, 0.08) !important;
    transition: all 0.28s ease !important;
}

/* Replace EN text */
.language-switcher a[href*="lang=en"]::after {
    content: "🇬🇧 English";
    font-size: 0.9rem;
    line-height: 1;
}

/* Replace SV text */
.language-switcher a[href*="lang=sv"]::after {
    content: "🇸🇪 Swedish";
    font-size: 0.9rem;
    line-height: 1;
}

/* Shine effect */
.language-switcher a::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -120% !important;
    width: 70% !important;
    height: 100% !important;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.65),
        transparent
    ) !important;

    transition: 0.45s ease !important;
}

/* Hover */
.language-switcher a:hover::before {
    left: 130% !important;
}

.language-switcher a:hover {
    transform: translateY(-2px) !important;
    background: #10233f !important;
    color: #ffffff !important;
    border-color: #10233f !important;
    box-shadow: 0 14px 30px rgba(16, 35, 63, 0.18) !important;
}

/* Mobile */
@media (max-width: 768px) {
    .language-switcher {
        gap: 8px !important;
    }

    .language-switcher a {
        min-height: 38px !important;
        padding: 9px 13px !important;
    }

    .language-switcher a[href*="lang=en"]::after,
    .language-switcher a[href*="lang=sv"]::after {
        font-size: 0.82rem;
    }
}

/* =====================================================
   CLEAN LANGUAGE SWITCHER - SAME STYLE ALL PAGES
   Real flag icons + English / Swedish
===================================================== */

.language-switcher {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Hide old separator */
.language-switcher span {
    display: none !important;
}

/* Same button style everywhere */
.language-switcher a {
    position: relative !important;
    overflow: hidden !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    min-height: 42px !important;
    padding: 10px 16px !important;

    border-radius: 999px !important;
    border: 1px solid #d9e1ea !important;

    background: #ffffff !important;
    color: #10233f !important;

    font-size: 0 !important;
    font-weight: 900 !important;
    text-decoration: none !important;

    box-shadow: 0 8px 20px rgba(16, 35, 63, 0.08) !important;
    transition: all 0.28s ease !important;
}

/* Flag base */
.language-switcher a::before {
    content: "" !important;
    display: inline-block !important;
    width: 20px !important;
    height: 14px !important;
    border-radius: 3px !important;
    background-size: cover !important;
    background-position: center !important;
    box-shadow: 0 0 0 1px rgba(16, 35, 63, 0.12) !important;
}

/* English flag */
.language-switcher a[href*="lang=en"]::before {
    background-image: url("https://flagcdn.com/gb.svg") !important;
}

/* Swedish flag */
.language-switcher a[href*="lang=sv"]::before {
    background-image: url("https://flagcdn.com/se.svg") !important;
}

/* English text */
.language-switcher a[href*="lang=en"]::after {
    content: "English" !important;
    font-size: 0.9rem !important;
    line-height: 1 !important;
}

/* Swedish text */
.language-switcher a[href*="lang=sv"]::after {
    content: "Swedish" !important;
    font-size: 0.9rem !important;
    line-height: 1 !important;
}

/* Hover premium */
.language-switcher a:hover {
    transform: translateY(-2px) !important;
    background: #10233f !important;
    color: #ffffff !important;
    border-color: #10233f !important;
    box-shadow: 0 14px 30px rgba(16, 35, 63, 0.18) !important;
}

/* Mobile */
@media (max-width: 768px) {
    .language-switcher a {
        min-height: 38px !important;
        padding: 9px 13px !important;
    }

    .language-switcher a[href*="lang=en"]::after,
    .language-switcher a[href*="lang=sv"]::after {
        font-size: 0.82rem !important;
    }
}

/* =====================================================
   FORCE CONTACT LANGUAGE SWITCHER LIKE ALL PAGES
===================================================== */

.site-header .language-switcher {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.site-header .language-switcher span {
    display: none !important;
}

.site-header .language-switcher a {
    position: relative !important;
    overflow: hidden !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;

    min-height: 52px !important;
    padding: 14px 26px !important;

    border-radius: 12px !important;
    border: 1px solid #10233f !important;

    background: #ffffff !important;
    color: #10233f !important;

    font-size: 0 !important;
    font-weight: 900 !important;
    text-decoration: none !important;

    box-shadow: 0 10px 25px rgba(16, 35, 63, 0.08) !important;
    transition: all 0.28s ease !important;
}

/* EN / SV small code */
.site-header .language-switcher a[href*="lang=en"]::before {
    content: "EN" !important;
    font-size: 0.95rem !important;
    font-weight: 900 !important;
}

.site-header .language-switcher a[href*="lang=sv"]::before {
    content: "SV" !important;
    font-size: 0.95rem !important;
    font-weight: 900 !important;
}

/* English / Swedish text */
.site-header .language-switcher a[href*="lang=en"]::after {
    content: "English" !important;
    font-size: 0.95rem !important;
    font-weight: 900 !important;
}

.site-header .language-switcher a[href*="lang=sv"]::after {
    content: "Swedish" !important;
    font-size: 0.95rem !important;
    font-weight: 900 !important;
}

/* Premium hover */
.site-header .language-switcher a:hover {
    transform: translateY(-2px) !important;
    background: #10233f !important;
    color: #ffffff !important;
    border-color: #10233f !important;
    box-shadow: 0 14px 30px rgba(16, 35, 63, 0.18) !important;
}

/* Prevent old shine/flag effects from breaking contact */
.site-header .language-switcher a img,
.site-header .language-switcher a .flag,
.site-header .language-switcher a .flag-icon {
    display: none !important;
}

/* =====================================================
   FIX LANGUAGE FLAGS STAY VISIBLE ON HOVER
===================================================== */

/* Disable old shine animation on language buttons */
.site-header .language-switcher a::before {
    animation: none !important;
    transition: none !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
}

/* Language button base */
.site-header .language-switcher a {
    position: relative !important;
    overflow: visible !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;

    min-height: 52px !important;
    padding: 14px 24px !important;

    border-radius: 12px !important;
    border: 1px solid #10233f !important;

    background: #ffffff !important;
    color: #10233f !important;

    font-size: 0 !important;
    font-weight: 900 !important;
    text-decoration: none !important;

    box-shadow: 0 10px 25px rgba(16, 35, 63, 0.08) !important;
    transition: all 0.28s ease !important;
}

/* Stable flag icon */
.site-header .language-switcher a[href*="lang=en"]::before,
.site-header .language-switcher a[href*="lang=sv"]::before {
    content: "" !important;
    position: static !important;

    display: inline-block !important;
    flex: 0 0 auto !important;

    width: 22px !important;
    height: 15px !important;

    border-radius: 3px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    opacity: 1 !important;
    visibility: visible !important;

    box-shadow: 0 0 0 1px rgba(16, 35, 63, 0.12) !important;
}

/* Real flags */
.site-header .language-switcher a[href*="lang=en"]::before {
    background-image: url("https://flagcdn.com/gb.svg") !important;
}

.site-header .language-switcher a[href*="lang=sv"]::before {
    background-image: url("https://flagcdn.com/se.svg") !important;
}

/* Text */
.site-header .language-switcher a[href*="lang=en"]::after {
    content: "English" !important;
    font-size: 0.95rem !important;
    font-weight: 900 !important;
}

.site-header .language-switcher a[href*="lang=sv"]::after {
    content: "Swedish" !important;
    font-size: 0.95rem !important;
    font-weight: 900 !important;
}

/* Hover: keep flag visible */
.site-header .language-switcher a:hover {
    transform: translateY(-2px) !important;
    background: #10233f !important;
    color: #ffffff !important;
    border-color: #10233f !important;
    box-shadow: 0 14px 30px rgba(16, 35, 63, 0.18) !important;
}

.site-header .language-switcher a:hover::before {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

/* =========================
   ADMIN LANGUAGE SWITCHER
========================= */

.admin-language-box {
    margin: 16px 18px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-language-box > span {
    display: block;
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.admin-language-links {
    display: flex;
    gap: 8px;
}

.admin-language-links a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
    transition: 0.25s ease;
}

.admin-language-links a:hover,
.admin-language-links a.active {
    background: #c49a3a;
    color: #10233f;
}

/* =========================
   FIX ADMIN LANGUAGE SWITCHER
========================= */

.admin-language-box {
    margin: 16px 28px !important;
    padding: 14px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.admin-language-box > span {
    display: block !important;
    color: #cbd5e1 !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
}

.admin-language-links {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
}

.admin-language-links a {
    flex: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 36px !important;
    padding: 8px 10px !important;

    border-radius: 10px !important;
    border: none !important;
    border-bottom: none !important;

    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;

    font-size: 0.9rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-decoration: none !important;

    transition: 0.25s ease !important;
}

.admin-language-links a:hover,
.admin-language-links a.active {
    background: #c49a3a !important;
    color: #10233f !important;
    transform: none !important;
}

/* =====================================================
   MOBILE HEADER FIX - SCROLLABLE MENU + COMPACT LANGUAGE
===================================================== */

@media (max-width: 768px) {

    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        background: #ffffff !important;
        box-shadow: 0 10px 28px rgba(16, 35, 63, 0.10) !important;
    }

    .header-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 12px 0 14px !important;
        width: 100% !important;
    }

    .site-header .logo {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .site-header .logo-img {
        max-height: 62px !important;
        width: auto !important;
        object-fit: contain !important;
    }

    /* Menu mobile horizontal scroll */
    .site-header .navbar {
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 22px !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;
        white-space: nowrap !important;

        padding: 8px 18px 12px !important;
        margin: 0 !important;

        scrollbar-width: thin !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .site-header .navbar::-webkit-scrollbar {
        height: 4px !important;
    }

    .site-header .navbar::-webkit-scrollbar-track {
        background: #edf1f5 !important;
        border-radius: 999px !important;
    }

    .site-header .navbar::-webkit-scrollbar-thumb {
        background: #c49a3a !important;
        border-radius: 999px !important;
    }

    .site-header .navbar a {
        flex: 0 0 auto !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        font-size: 0.98rem !important;
        font-weight: 900 !important;
        color: #10233f !important;
        text-decoration: none !important;

        padding: 6px 0 !important;
        white-space: nowrap !important;
    }

    .site-header .navbar a:hover {
        color: #c49a3a !important;
    }

    /* Mobile language switcher */
    .site-header .language-switcher {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;

        padding: 0 18px !important;
        margin: 0 !important;
    }

    .site-header .language-switcher span {
        display: none !important;
    }

    .site-header .language-switcher a {
        flex: 1 !important;
        max-width: 150px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;

        min-height: 42px !important;
        padding: 10px 14px !important;

        border-radius: 14px !important;
        border: 1px solid #10233f !important;
        background: #ffffff !important;
        color: #10233f !important;

        font-size: 0 !important;
        font-weight: 900 !important;
        text-decoration: none !important;

        box-shadow: 0 8px 20px rgba(16, 35, 63, 0.08) !important;
    }

    .site-header .language-switcher a[href*="lang=en"]::before,
    .site-header .language-switcher a[href*="lang=sv"]::before {
        content: "" !important;
        display: inline-block !important;
        width: 22px !important;
        height: 15px !important;
        border-radius: 3px !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        box-shadow: 0 0 0 1px rgba(16, 35, 63, 0.12) !important;
    }

    .site-header .language-switcher a[href*="lang=en"]::before {
        background-image: url("https://flagcdn.com/gb.svg") !important;
    }

    .site-header .language-switcher a[href*="lang=sv"]::before {
        background-image: url("https://flagcdn.com/se.svg") !important;
    }

    .site-header .language-switcher a[href*="lang=en"]::after {
        content: "EN" !important;
        font-size: 0.95rem !important;
        font-weight: 900 !important;
    }

    .site-header .language-switcher a[href*="lang=sv"]::after {
        content: "SV" !important;
        font-size: 0.95rem !important;
        font-weight: 900 !important;
    }

    .site-header .language-switcher a:hover {
        background: #10233f !important;
        color: #ffffff !important;
        transform: none !important;
    }
}

/* =====================================================
   FINAL MOBILE HEADER OVERRIDE
   Must stay at the very bottom of style.css
===================================================== */

@media screen and (max-width: 900px) {

    body .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 99999 !important;
        background: #ffffff !important;
        overflow: hidden !important;
    }

    body .site-header .header-container {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        padding: 10px 0 12px !important;
        margin: 0 !important;
    }

    body .site-header .logo {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    body .site-header .logo-img {
        height: 58px !important;
        max-height: 58px !important;
        width: auto !important;
        object-fit: contain !important;
        margin: 0 auto !important;
    }

    /* FORCE MOBILE NAV TO BE ONE HORIZONTAL SCROLL LINE */
    body .site-header .navbar {
        width: 100% !important;
        max-width: 100% !important;

        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: center !important;

        gap: 22px !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        white-space: nowrap !important;

        padding: 8px 18px 12px !important;
        margin: 0 !important;

        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: thin !important;
    }

    body .site-header .navbar a {
        flex: 0 0 auto !important;
        display: inline-flex !important;
        width: auto !important;
        min-width: max-content !important;

        padding: 6px 0 !important;
        margin: 0 !important;

        color: #10233f !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;

        font-size: 1rem !important;
        font-weight: 900 !important;
        text-decoration: none !important;
        white-space: nowrap !important;
    }

    body .site-header .navbar a:hover {
        color: #c49a3a !important;
    }

    body .site-header .navbar::-webkit-scrollbar {
        height: 4px !important;
    }

    body .site-header .navbar::-webkit-scrollbar-track {
        background: #edf1f5 !important;
        border-radius: 999px !important;
    }

    body .site-header .navbar::-webkit-scrollbar-thumb {
        background: #c49a3a !important;
        border-radius: 999px !important;
    }

    /* FORCE MOBILE LANGUAGE BUTTONS SMALLER */
    body .site-header .language-switcher {
        width: 100% !important;
        max-width: 100% !important;

        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;

        gap: 10px !important;
        padding: 0 18px !important;
        margin: 0 !important;
    }

    body .site-header .language-switcher span {
        display: none !important;
    }

    body .site-header .language-switcher a {
        flex: 0 0 auto !important;
        width: 120px !important;
        max-width: 120px !important;
        min-height: 40px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;

        padding: 9px 12px !important;
        margin: 0 !important;

        border-radius: 14px !important;
        border: 1px solid #10233f !important;

        background: #ffffff !important;
        color: #10233f !important;

        font-size: 0 !important;
        font-weight: 900 !important;
        text-decoration: none !important;

        box-shadow: 0 8px 20px rgba(16, 35, 63, 0.08) !important;
        transform: none !important;
    }

    body .site-header .language-switcher a[href*="lang=en"]::before,
    body .site-header .language-switcher a[href*="lang=sv"]::before {
        content: "" !important;
        display: inline-block !important;
        width: 22px !important;
        height: 15px !important;
        border-radius: 3px !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    body .site-header .language-switcher a[href*="lang=en"]::before {
        background-image: url("https://flagcdn.com/gb.svg") !important;
    }

    body .site-header .language-switcher a[href*="lang=sv"]::before {
        background-image: url("https://flagcdn.com/se.svg") !important;
    }

    body .site-header .language-switcher a[href*="lang=en"]::after {
        content: "EN" !important;
        font-size: 0.95rem !important;
        font-weight: 900 !important;
    }

    body .site-header .language-switcher a[href*="lang=sv"]::after {
        content: "SV" !important;
        font-size: 0.95rem !important;
        font-weight: 900 !important;
    }

    body .site-header .language-switcher a:hover {
        background: #10233f !important;
        color: #ffffff !important;
    }
}

/* =====================================================
   MOBILE NAV ITEMS SAME STYLE
   Put this at the VERY BOTTOM of style.css
===================================================== */

@media screen and (max-width: 900px) {

    body .site-header .navbar {
        gap: 10px !important;
        padding: 8px 14px 12px !important;
    }

    body .site-header .navbar a {
        min-width: 125px !important;
        height: 40px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        padding: 0 14px !important;

        border-radius: 14px !important;
        border: 1px solid #e1e8f0 !important;
        background: #ffffff !important;

        color: #10233f !important;
        font-size: 0.95rem !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        text-align: center !important;
        text-decoration: none !important;

        box-shadow: 0 6px 16px rgba(16, 35, 63, 0.06) !important;
    }

    body .site-header .navbar a:hover {
        background: #10233f !important;
        color: #ffffff !important;
        border-color: #10233f !important;
    }
}

/* =====================================================
   FIX MOBILE NAV FONT WEIGHT
   Same boldness for FAQ / Find Booking / all links
===================================================== */

@media screen and (max-width: 900px) {

    body .site-header .navbar a,
    body .site-header .navbar a:visited,
    body .site-header .navbar a:hover,
    body .site-header .navbar a:active,
    body .site-header .navbar a:focus {
        font-family: inherit !important;
        font-weight: 800 !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
        -webkit-font-smoothing: antialiased !important;
        text-rendering: geometricPrecision !important;
    }

    body .site-header .navbar a[href*="faq.php"] {
        font-weight: 800 !important;
    }

    body .site-header .navbar a[href*="find-booking.php"] {
        font-weight: 800 !important;
    }
}

/* =====================================================
   FINAL MOBILE HEADER LAYOUT
   Logo left / Language right / Menu scroll below
===================================================== */

@media screen and (max-width: 900px) {

    body .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 99999 !important;
        background: #ffffff !important;
        box-shadow: 0 10px 28px rgba(16, 35, 63, 0.10) !important;
        overflow: hidden !important;
    }

    body .site-header .header-container {
        width: 100% !important;
        max-width: 100% !important;

        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        grid-template-areas:
            "logo empty lang"
            "nav nav nav" !important;

        align-items: center !important;
        gap: 10px !important;

        padding: 10px 14px 12px !important;
        margin: 0 !important;
    }

    /* LOGO TOP LEFT */
    body .site-header .logo {
        grid-area: logo !important;

        width: auto !important;
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    body .site-header .logo-img {
        height: 54px !important;
        max-height: 54px !important;
        width: auto !important;
        object-fit: contain !important;
        margin: 0 !important;
    }

    /* LANGUAGE TOP RIGHT */
    body .site-header .language-switcher {
        grid-area: lang !important;

        width: auto !important;
        max-width: none !important;

        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;

        gap: 8px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    body .site-header .language-switcher span {
        display: none !important;
    }

    body .site-header .language-switcher a {
        width: 72px !important;
        max-width: 72px !important;
        min-height: 36px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;

        padding: 8px 10px !important;
        margin: 0 !important;

        border-radius: 12px !important;
        border: 1px solid #10233f !important;
        background: #ffffff !important;
        color: #10233f !important;

        font-size: 0 !important;
        font-weight: 900 !important;
        text-decoration: none !important;

        box-shadow: 0 6px 16px rgba(16, 35, 63, 0.08) !important;
        transform: none !important;
    }

    body .site-header .language-switcher a[href*="lang=en"]::before,
    body .site-header .language-switcher a[href*="lang=sv"]::before {
        content: "" !important;
        display: inline-block !important;
        width: 20px !important;
        height: 14px !important;
        border-radius: 3px !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    body .site-header .language-switcher a[href*="lang=en"]::before {
        background-image: url("https://flagcdn.com/gb.svg") !important;
    }

    body .site-header .language-switcher a[href*="lang=sv"]::before {
        background-image: url("https://flagcdn.com/se.svg") !important;
    }

    body .site-header .language-switcher a[href*="lang=en"]::after {
        content: "EN" !important;
        font-size: 0.82rem !important;
        font-weight: 900 !important;
    }

    body .site-header .language-switcher a[href*="lang=sv"]::after {
        content: "SV" !important;
        font-size: 0.82rem !important;
        font-weight: 900 !important;
    }

    body .site-header .language-switcher a:hover {
        background: #10233f !important;
        color: #ffffff !important;
    }

    /* MENU BELOW */
    body .site-header .navbar {
        grid-area: nav !important;

        width: 100% !important;
        max-width: 100% !important;

        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: center !important;

        gap: 12px !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;
        white-space: nowrap !important;

        padding: 8px 0 6px !important;
        margin: 0 !important;

        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: thin !important;
    }

    body .site-header .navbar a {
        flex: 0 0 auto !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        min-width: max-content !important;
        height: 38px !important;

        padding: 0 14px !important;
        margin: 0 !important;

        border-radius: 13px !important;
        border: 1px solid #e1e8f0 !important;
        background: #ffffff !important;

        color: #10233f !important;
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        text-decoration: none !important;
        white-space: nowrap !important;

        box-shadow: 0 6px 16px rgba(16, 35, 63, 0.06) !important;
    }

    body .site-header .navbar a:hover {
        background: #10233f !important;
        color: #ffffff !important;
        border-color: #10233f !important;
    }

    body .site-header .navbar::-webkit-scrollbar {
        height: 4px !important;
    }

    body .site-header .navbar::-webkit-scrollbar-track {
        background: #edf1f5 !important;
        border-radius: 999px !important;
    }

    body .site-header .navbar::-webkit-scrollbar-thumb {
        background: #c49a3a !important;
        border-radius: 999px !important;
    }
}

/* =====================================================
   ABSOLUTE FINAL MOBILE HEADER FIX
   Logo left / Language right / Nav below
===================================================== */

@media screen and (max-width: 900px) {

    body .site-header .header-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;
        max-width: 100% !important;

        padding: 10px 14px 12px !important;
        gap: 10px !important;
        margin: 0 !important;
    }

    /* LOGO LEFT */
    body .site-header .logo {
        order: 1 !important;
        width: auto !important;
        flex: 0 0 auto !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    body .site-header .logo-img {
        height: 56px !important;
        max-height: 56px !important;
        width: auto !important;
        margin: 0 !important;
        object-fit: contain !important;
    }

    /* LANGUAGE RIGHT */
    body .site-header .language-switcher {
        order: 2 !important;
        width: auto !important;
        flex: 0 0 auto !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;

        gap: 8px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    body .site-header .language-switcher span {
        display: none !important;
    }

    body .site-header .language-switcher a {
        width: 72px !important;
        min-width: 72px !important;
        max-width: 72px !important;
        min-height: 36px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;

        padding: 8px 10px !important;
        margin: 0 !important;

        border-radius: 12px !important;
        border: 1px solid #10233f !important;
        background: #ffffff !important;
        color: #10233f !important;

        font-size: 0 !important;
        font-weight: 900 !important;
        text-decoration: none !important;

        box-shadow: 0 6px 16px rgba(16, 35, 63, 0.08) !important;
        transform: none !important;
    }

    body .site-header .language-switcher a[href*="lang=en"]::before,
    body .site-header .language-switcher a[href*="lang=sv"]::before {
        content: "" !important;
        display: inline-block !important;
        width: 20px !important;
        height: 14px !important;
        border-radius: 3px !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    body .site-header .language-switcher a[href*="lang=en"]::before {
        background-image: url("https://flagcdn.com/gb.svg") !important;
    }

    body .site-header .language-switcher a[href*="lang=sv"]::before {
        background-image: url("https://flagcdn.com/se.svg") !important;
    }

    body .site-header .language-switcher a[href*="lang=en"]::after {
        content: "EN" !important;
        font-size: 0.82rem !important;
        font-weight: 900 !important;
    }

    body .site-header .language-switcher a[href*="lang=sv"]::after {
        content: "SV" !important;
        font-size: 0.82rem !important;
        font-weight: 900 !important;
    }

    /* MENU BELOW */
    body .site-header .navbar {
        order: 3 !important;
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;

        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;

        gap: 12px !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;
        white-space: nowrap !important;

        padding: 8px 0 6px !important;
        margin: 0 !important;

        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: thin !important;
    }

    body .site-header .navbar a {
        flex: 0 0 auto !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        height: 38px !important;
        min-width: max-content !important;

        padding: 0 14px !important;
        margin: 0 !important;

        border-radius: 13px !important;
        border: 1px solid #e1e8f0 !important;
        background: #ffffff !important;

        color: #10233f !important;
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        text-decoration: none !important;

        box-shadow: 0 6px 16px rgba(16, 35, 63, 0.06) !important;
    }
}