:root {
    --primary: #006ce4;
    --primary-2: #3aa0ff;
    --dark: #003580;
    --muted: #6b7280;
    --bg: #f7f9fb;
    --card: #ffffff;
    --radius: 10px;
    --shadow: 0 8px 24px rgba(2, 6, 23, 0.08);
}

/* Global layout helpers */
* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    margin: 0;
    background: var(--bg);
    color: #0b1220;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.45;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
/* Header (site header used across pages) */
.site-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    backdrop-filter: blur(4px);
    /* keep header visible at top when scrolling */
    position: sticky;
    top: 0;
    z-index: 9999;
    /* ensure it sits above other components */
    box-shadow: 0 6px 18px rgba(6, 30, 61, 0.06);
}

.site-header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Make the brand text clickable while preserving layout */
.brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 12px; /* ensure spacing when logo and text are wrapped by the anchor */
}

.brand-link:focus {
    outline: 3px solid rgba(11, 116, 222, 0.12);
    border-radius: 8px;
}

.logo {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 108, 228, 0.95), rgba(0, 60, 128, 0.95));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 6px 18px rgba(6, 55, 135, 0.12);
}

.brand-text .brand-title {
    font-weight: 700;
    color: #0b2546;
    font-size: 1rem;
}

.brand-text .brand-tagline {
    font-size: 0.78rem;
    color: #6b7280;
    
}


nav {
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-links a {
    color: #0b2546;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-links a.active {
    background: rgba(0, 108, 228, 0.10);
    color: rgba(0, 60, 128, 1);
}

.nav-cta {
    background: rgba(0, 108, 228, 0.95);
    color: #fff !important;
    padding: 8px 12px;
    border-radius: 8px;
}

/* Book now CTA — more prominent, gradient primary button */


.translator {
    display: inline-block;
    position: relative;
    margin-left: 12px;
}

.translator button {
    background: #fff;
    border: 1px solid rgba(11, 116, 222, 0.06);
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(11, 116, 222, 0.06);
    transition: box-shadow .15s ease, transform .12s ease;
}

.translator button:hover {
    box-shadow: 0 10px 30px rgba(11, 116, 222, 0.08);
    transform: translateY(-1px);
}

.translator button:focus {
    outline: 3px solid rgba(11, 116, 222, 0.12);
    outline-offset: 2px;
}

.translator #translatorLabel {
    font-weight: 800;
    color: #07203a;
}

.translator .caret {
    color: rgba(7, 32, 58, 0.6);
    transition: transform .15s ease;
}

.translator.open .caret {
    transform: rotate(180deg);
}

.translator ul {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    list-style: none;
    margin: 0;
    padding: 8px 6px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 18px 50px rgba(11, 116, 222, 0.12);
    min-width: 160px;
    z-index: 40;
    border: 1px solid rgba(11, 116, 222, 0.06);
}

.translator ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
}

.translator ul li:hover {
    background: rgba(11, 116, 222, 0.04);
}

.translator ul li::before {
    content: attr(data-lang);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.75rem;
    background: #eef8ff;
    color: var(--primary);
    padding: 4px 6px;
    border-radius: 6px;
    margin-right: 6px;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    color: rgba(11, 37, 70, 0.9);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 108, 228, 0.12)
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(0, 108, 228, 0.14);
    color: var(--primary);
    padding: 8px 12px;
    border-radius: 8px
}

.btn-ghost:hover {
    background: rgba(0, 108, 228, 0.06);
    transform: translateY(-2px)
}

.btn:focus {
    outline: 3px solid rgba(0, 108, 228, 0.12);
    outline-offset: 2px
}



/* Hero */
.contact-hero {
    padding: 42px 0;
    background: linear-gradient(180deg, rgba(10, 90, 180, 0.06), transparent)
}

.contact-hero h1 {
    font-size: clamp(22px, 3.6vw, 34px);
    margin: 6px 0
}

.contact-hero .muted {
    color: var(--muted);
    margin-top: 6px
}

/* Contact area */
.contact {
    padding: 36px 0 60px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 28px;
    align-items: stretch;
}

.contact-info {
    background: transparent;
    padding: 6px
}

.contact-info h2 {
    margin-top: 0
}

.contact-info .muted {
    color: var(--muted)
}

.info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 16px 0
}

.info-row i {
    font-size: 20px;
    color: var(--primary);
    min-width: 28px
}

.info-row strong {
    display: block
}

.contact-form-card {
    background: var(--card);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.contact-form-card h2 {
    margin-top: 0
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.field-row {
    display: flex;
    flex-direction: column
}

.field-row label {
    font-weight: 600;
    margin-bottom: 6px
}

.field-row input,
.field-row select,
.field-row textarea {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e6eefb;
    background: #fff;
    font-size: 14px
}

.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus {
    outline: 3px solid rgba(0, 108, 228, 0.12);
    border-color: rgba(0, 108, 228, 0.14)
}

.form-actions {
    display: flex;
    gap: 10px;
    align-items: center
}

#contactStatus {
    color: var(--dark)
}

/* Map panel */
.map-panel {
    margin-top: 26px
}

/* Footer - match other pages (dark footer with light text) */
footer {
    background: #0b1720;
    color: #cfeafc;
    padding: 48px 0;
    margin-top: 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 250px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

.footer-grid h4 {
    margin: 0 0 12px
}

.footer-desc {
    color: rgba(207, 234, 252, 0.9);
    max-width: 36ch
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(207, 234, 252, 0.95)
}

.footer-list li {
    margin: 8px 0
}

.footer-link {
    color: inherit;
    text-decoration: none
}

.newsletter-row {
    display: flex;
    margin-top: 8px
}

.newsletter-input {
    flex: 1;
    border-radius: 8px;
    padding: 10px;
    border: 0
}

.subscribe-btn {
    margin-left: 8px
}

.subscribe-btn {
    padding: 8px 12px;
    border-radius: 8px;
    background-color: #0b74de;
    color: #fff;
    border: none;
}

.socials a {
	color: inherit;
	margin-right: 10px
}

.socials-top {
	margin-top: 14px
}

.site-credits {
    text-align: center;
    color: rgba(207, 234, 252, 0.8);
    margin-top: 24px;
    font-size: 13px
}

/* Responsive */
@media (max-width:1000px) {
    .contact-grid {
        grid-template-columns: 1fr 380px
    }
}

@media (max-width:820px) {
    .nav-links {
        display: none;
        position: absolute;
        right: 16px;
        top: 72px;
        background: #fff;
        padding: 12px;
        border-radius: 10px;
        box-shadow: 0 8px 30px rgba(11, 116, 222, 0.12);
        flex-direction: column
    }

    .hamburger {
        display: inline-flex
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .contact-form-card {
        order: 2
    }

    .contact-info {
        order: 1
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:420px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

    .logo {
        width: 48px;
        height: 48px
    }
}

/* Utility */
.muted {
    color: var(--muted)
}

/* Contact page specific styles */
:root {
    --contact-accent: #0b74de;
    --muted: #6b7280;
    --card-bg: #ffffff;
    --radius: 12px;
    --shadow-sm: 0 8px 24px rgba(11, 116, 222, 0.06);
}

/* Hero */
.contact-hero {
    padding: clamp(20px, 4vw, 44px) 0;
    background: linear-gradient(180deg, rgba(11, 116, 222, 0.03), rgba(76, 201, 240, 0.01));
}

.contact-hero .container {
    max-width: 1100px;
}

.contact-hero h1 {
    margin: 0 0 6px;
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    color: #07203a;
}

.contact-hero p {
    margin: 0;
    color: var(--muted);
}

/* Layout */
.contact {
    padding: 28px 0 56px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info,
.contact-form-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 116, 222, 0.03);
}

/* Ensure both cards fill the grid row height so they match exactly */
.contact-info,
.contact-form-card {
    display: flex;
    flex-direction: column
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column
}

.form-actions {
    margin-top: auto
}

.contact-info h2,
.contact-form-card h2 {
    margin: 0 0 8px;
    color: #07203a;
}

.contact-info .muted {
    color: var(--muted);
    margin-bottom: 12px;
}

.info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 14px;
}

.info-row i {
    font-size: 1.15rem;
    color: var(--contact-accent);
    width: 28px;
    text-align: center;
}

.info-row strong {
    display: block;
    font-weight: 700;
    color: #07203a;
}

.info-row .muted {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-info .btn {
    margin-top: 8px;
}

/* Contact form */
.contact-form .field-row {
    margin-bottom: 12px;
    display: block;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e9f3fb;
    background: #fbfdff;
    font-size: 0.98rem;
    transition: box-shadow .12s ease, border-color .12s ease
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--contact-accent);
    box-shadow: 0 10px 30px rgba(11, 116, 222, 0.06)
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.form-actions .btn {
    padding: 10px 14px;
}

#contactStatus {
    color: #0656b3;
    font-weight: 600
}

/* Map panel */
.map-panel {
    margin-top: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Utilities */
.muted {
    color: var(--muted);
}

.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        order: 2
    }

    .contact-info {
        order: 1
    }
}

@media (max-width: 520px) {
    .contact-hero h1 {
        font-size: 1.4rem
    }

    .info-row {
        gap: 10px
    }
}

/* Small tweaks to keep design consistent with site */
.contact-info a {
    color: var(--contact-accent);
    text-decoration: none;
    font-weight: 700
}

.contact-info a:hover {
    text-decoration: underline
}