/* Color Palette & Base Styles */
:root {
    --bg-primary: #FAF8F5;
    --bg-secondary: #F0EBE3;
    --bg-dark: #E8E0D6;
    --text-main: #3D3833;
    --text-light: #7A736E;
    --accent: #B09C8B;
    --accent-dark: #8C7B6B;
    --border-color: #D3C9C1;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.7;
    font-weight: 300;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.3;
}

a {
    color: var(--accent-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-main);
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(211, 201, 193, 0.3);
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--text-main);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(160deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(176, 156, 139, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    position: relative;
}

.hero-logo {
    width: clamp(360px, 90vw, 1100px);
    height: clamp(150px, 32vw, 340px);
    object-fit: cover;
    object-position: center 55%;
    margin-bottom: 3rem;
    border-radius: 12px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    flex-wrap: wrap;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 3rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: var(--text-main);
    border-color: var(--accent-dark);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.hero-accreditations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.hero-accreditations img {
    height: 45px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.hero-accreditations img:hover {
    opacity: 1;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--text-main);
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--text-main);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-cta:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Section Styles */
section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 4rem;
    font-size: 1.05rem;
}

/* Alternating section backgrounds */
.bg-warm {
    background: var(--bg-secondary);
}

.bg-white {
    background: var(--white);
}

/* About Section */
.about-container {
    max-width: 700px;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.bg-warm .service-card {
    background: var(--bg-primary);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--border-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--border-color);
}

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

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* MOT Section */
.mot-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mot-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.5rem;
}

.mot-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.mot-includes {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 12px;
}

.mot-includes h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.mot-includes ul {
    list-style: none;
    padding: 0;
}

.mot-includes li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.mot-includes li:last-child {
    border-bottom: none;
}

.mot-includes li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.mot-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Fees Section */
.fees-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.bg-white .fees-container {
    background: var(--bg-primary);
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

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

.fee-row:hover {
    background: var(--bg-secondary);
}

.fee-name {
    font-size: 1rem;
}

.fee-duration {
    font-size: 0.85rem;
    color: var(--text-light);
}

.fee-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--accent-dark);
    white-space: nowrap;
}

/* Booking Embed */
.booking-embed {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.booking-embed iframe {
    display: block;
    border: 0;
}

/* Booking Section */
.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
    color: var(--text-main);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(176, 156, 139, 0.15);
}

.consent-box {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.consent-box h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.consent-box strong {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}

.consent-box ul {
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
}

.consent-box li {
    margin-bottom: 0.3rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    accent-color: var(--accent-dark);
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    text-transform: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0;
    color: var(--text-main);
}

.btn-submit {
    display: block;
    width: 100%;
    background-color: var(--text-main);
    color: var(--white);
    border: none;
    padding: 1.1rem 2rem;
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.btn-submit:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section p {
    max-width: 550px;
    margin: 0 auto 1rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.cta-contact {
    display: inline-flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.cta-contact a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cta-contact .contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 400;
}

.cta-contact .contact-value {
    font-weight: 700;
}

.cta-contact a .contact-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Location Section */
.location-section {
    padding: 0;
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.location-info .section-label {
    text-align: left;
}

.location-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.5rem;
}

.location-info address {
    font-style: normal;
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.location-info .location-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-info .location-contact a {
    color: var(--text-main);
    font-weight: 700;
    border-bottom: none;
}

.location-info .location-contact a:hover {
    color: var(--accent-dark);
}

.location-map {
    min-height: 450px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.3) contrast(1.1) brightness(1.05);
    transition: filter 0.5s ease;
}

.location-map iframe:hover {
    filter: saturate(0.7) contrast(1.05) brightness(1.02);
}

/* Footer */
footer {
    background-color: var(--text-main);
    color: var(--bg-secondary);
    padding: 5rem 2rem 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

footer h4 {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--white);
}

footer p, footer li {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--border-color);
}

footer a {
    color: var(--border-color);
    border-bottom: 1px solid rgba(211, 201, 193, 0.3);
}

footer a:hover {
    color: var(--white);
}

.footer-policy ul {
    list-style: none;
    padding: 0;
}

.footer-policy li {
    margin-bottom: 0.3rem;
}

.footer-accreditations {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-logos img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(211, 201, 193, 0.6);
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: 85vh;
        padding: 7rem 1.5rem 4rem;
    }

    .hero-accreditations {
        gap: 2rem;
    }

    .hero-accreditations img {
        height: 35px;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .mot-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .location-info {
        padding: 3rem 1.5rem;
    }

    .location-map {
        min-height: 300px;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .fee-row {
        padding: 1.2rem 1.5rem;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}
