* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #0f0f14;
    --bg-deep: #0a0a10;
    --bg-soft: #111118;
    --text-main: #ffffff;
    --text-muted: #d9d4cc;
    --accent: #d4b483;
    --accent-dark: #b89563;
    --border-soft: rgba(255, 255, 255, 0.09);
    --card-bg: rgba(255, 255, 255, 0.045);
    --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.35);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}



.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
}



.contact-hero {
    min-height: 70vh;
    padding: 150px 8% 90px;
    background: #08080d;
    display: flex;
    align-items: center;
    text-align: center;
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.eyebrow,
.section-heading span {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-hero h1,
.booking-info h2,
.section-heading h2,
.contact-cta-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-main);
}

.contact-hero h1 {
    font-size: clamp(44px, 5.4vw, 68px);
    line-height: 1.08;
    margin-bottom: 24px;
}

.contact-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.85;
}

.booking-section {
    padding: 0 8% 100px;
    background: #08080d;
}

.booking-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
    gap: 46px;
    align-items: start;
}

.booking-info {
    padding: 42px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.booking-info h2 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
    margin-bottom: 22px;
}

.booking-info>p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 30px;
}

.booking-points {
    display: grid;
    gap: 16px;
}

.booking-points div {
    padding: 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-points h3 {
    color: var(--text-main);
    font-size: 20px;
    margin-bottom: 8px;
}

.booking-points p {
    color: var(--text-muted);
    line-height: 1.75;
}

.booking-card {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(212, 180, 131, 0.3);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.booking-card-header {
    padding: 28px 30px;
    background: #111118;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-card-header h3 {
    color: var(--text-main);
    font-size: 24px;
    margin-bottom: 6px;
}

.booking-card-header p {
    color: var(--text-muted);
}

.contact-options {
    padding: 100px 8%;
    background: var(--bg-soft);
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
}

.contact-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.contact-card {
    display: block;
    min-height: 210px;
    padding: 32px;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 180, 131, 0.38);
}

.contact-card span {
    display: block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-cta {
    padding: 105px 8%;
    background: #0d0d13;
    text-align: center;
}

.contact-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.22;
    margin-bottom: 22px;
}

.contact-cta-content p {
    max-width: 700px;
    margin: 0 auto 34px;
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-cta-content a {
    display: inline-block;
    background: var(--accent);
    color: #111111;
    padding: 16px 34px;
    border-radius: 44px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-cta-content a:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(212, 180, 131, 0.18);
}

.footer {
    padding: 64px 8%;
    background: var(--bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 46px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 280px;
}

.footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 14px;
}

.footer p,
.footer a {
    display: block;
    color: #cfc8bf;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 9px;
}

.footer a:hover {
    color: var(--accent);
}

.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #111111;
    padding: 15px 23px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
    background: var(--accent-dark);
    transform: translateY(-4px);
}

    .logo {
        width: 100%;
        text-align: center;
    }

    .nav-links {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 22px;
        flex-wrap: wrap;
    }

    .btn-nav {
        order: 3;
    }

    .contact-hero {
        padding: 190px 5% 90px;
    }

    .booking-section,
    .contact-options,
    .contact-cta,
    .footer {
        padding-left: 5%;
        padding-right: 5%;
    }

    .booking-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
    }
}

    .logo {
        font-size: 24px;
    }

    

    .contact-hero {
        min-height: auto;
        padding: 70px 5% 76px;
    }

    .contact-hero h1 {
        font-size: 40px;
    }

    .contact-hero p {
        font-size: 15px;
        line-height: 1.8;
    }

    .booking-section {
        padding-bottom: 76px;
    }

    .booking-info {
        padding: 28px;
    }

    .booking-card-header {
        padding: 24px;
    }

    .contact-options,
    .contact-cta {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .contact-cta-content a {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 15px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        padding: 13px 18px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .contact-hero h1 {
        font-size: 36px;
    }

    .booking-info h2,
    .section-heading h2,
    .contact-cta-content h2 {
        font-size: 31px;
    }

    .footer h3 {
        font-size: 24px;
    }
}