:root {
    --primary: #0284c7; /* Sky 600 */
    --primary-dark: #0369a1;
    --primary-light: #e0f2fe;
    --accent: #0ea5e9;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #f1f5f9;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* NAVBAR */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo span {
    color: var(--text-main);
}

/* CARDS */
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.contact-card h3 {
    font-size: 28px;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    background: var(--primary-light);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item p {
    color: var(--text-main);
    font-weight: 500;
    margin-top: 0;
}

/* FOOTER */
footer {
    background: white;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

footer p {
    color: var(--text-muted);
}

/* SECTION: BOOKING & CONTACT */
.booking-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-main);
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    z-index: 0;
    border-radius: 50%;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.booking-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.booking-widget {
    margin-top: 25px;
    width: 100%;
}

.booking-widget p {
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.booking-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-card .contact-item {
    justify-content: flex-start;
    width: 100%;
    max-width: 350px;
}

.info-card .contact-item p {
    text-align: left;
    margin-top: 0;
}

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

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-card h3 {
        font-size: 22px;
    }

    .logo {
        font-size: 13px;
    }

    .contact-item p {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .btn-mydr-pp {
        background-size: cover;
        border-radius: 15px;
        height: 120px;
    }
}

@media (max-width: 390px) {
    .btn-mydr-pp {
        height: 110px;
    }
}