/* style.css */
/* --- AURA SOFT LUXURY THEME --- */
:root {
    color-scheme: light;
    --bg-color: #fbf7f3;
    --surface: #ffffff;
    --surface-soft: #f6e9e4;
    --surface-warm: #ead2c7;
    --navbar-bg: rgba(255, 252, 249, 0.92);
    --text-main: #2d201b;
    --text-muted: #6f625d;
    --accent: #b77463;
    --accent-hover: #8f4f3f;
    --accent-soft: #efd6cd;
    --sage: #6d7766;
    --gold: #bd8c5f;
    --border-color: #eadbd5;
    --shadow: 0 22px 60px rgba(66, 42, 34, 0.12);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- NAVIGATION --- */
.navbar {
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.dark-logo {
    display: none;
}

.logo {
    align-items: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(183, 116, 99, 0.18);
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(66, 42, 34, 0.08);
    display: inline-flex;
    height: 58px;
    justify-content: center;
    overflow: hidden;
    width: 58px;
}

.nav-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform-origin: left top;
}

.nav-logo:hover {
    transform: scale(1.04);
}

.nav-links {
    display: flex;
    gap: 1.35rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* --- PRIMARY BUTTON --- */
.btn-primary {
    background-color: var(--accent) !important;
    color: #ffffff !important;
    padding: 0.78rem 1.45rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-hover) !important;
    transform: translateY(-1px);
}

.btn-primary:focus-visible,
.hero-btn:focus-visible,
.text-link:focus-visible,
.contact-link:focus-visible,
.social-links a:focus-visible,
.gallery-filter:focus-visible,
.hamburger:focus-visible {
    outline: 3px solid rgba(169, 101, 85, 0.35);
    outline-offset: 4px;
}

.whatsapp-link,
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-weight: 500;
    text-decoration: none;
}

.whatsapp-icon,
.contact-icon {
    width: 1.2rem;
    height: 1.2rem;
    flex: 0 0 auto;
}

.whatsapp-link .whatsapp-icon {
    color: #25d366;
}

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.32);
    text-decoration: none;
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.4);
}

.whatsapp-float .whatsapp-icon {
    width: 1.75rem;
    height: 1.75rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin: -1.5rem auto 2.5rem;
}

.contact-link {
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.65rem 1rem;
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}

.contact-link.whatsapp-link {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.35);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}

.social-icon {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
}

.nav-links a:not(.btn-primary):not(.active) {
    color: var(--text-main) !important;
}

/* --- ACTIVE PAGE INDICATOR --- */
.nav-links a.active {
    color: var(--accent) !important;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--accent) !important;
    border-radius: 50%;
}

/* --- HERO SECTION --- */
.hero {
    padding: 112px 0 48px;
    background: var(--bg-color);
    min-height: 64svh;
    display: flex;
    align-items: center;
}

.home-hero {
    background-image:
        linear-gradient(90deg, rgba(251, 247, 243, 0.98) 0%, rgba(251, 247, 243, 0.93) 38%, rgba(251, 247, 243, 0.62) 58%, rgba(251, 247, 243, 0.08) 100%),
        url('gallary/make-up2.jpeg');
    background-position: center 44%;
    background-size: cover;
    border-bottom: 1px solid rgba(183, 116, 99, 0.2);
    min-height: 64svh;
}

.hero-layout {
    display: block;
}

.hero-content {
    max-width: 640px;
}

.hero h1 {
    font-size: 5.25rem;
    line-height: 0.94;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.hero-kicker {
    color: var(--accent);
    font-family: var(--font-serif);
    font-size: 1.55rem;
    line-height: 1.25;
    margin-bottom: 1rem !important;
}

.hero-content > p:not(.eyebrow):not(.hero-kicker) {
    max-width: 580px;
    color: var(--text-muted);
    margin: 0 0 2rem;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-btn {
    display: inline-block;
    background-color: var(--text-main);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-link {
    color: var(--text-main);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0.2rem;
}

.hero-highlights {
    border-top: 1px solid rgba(183, 116, 99, 0.24);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 2rem;
    max-width: 560px;
    padding-top: 1.15rem;
}

.hero-highlights span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-highlights strong {
    color: var(--text-main);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1;
}

/* --- BOOKING SECTION & FORM --- */
.section {
    padding: 92px 0;
}

.page-hero-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(251, 247, 243, 0.98)),
        var(--surface-soft);
    padding-top: 136px;
}

.services-page-section {
    padding-bottom: 80px;
}

.services-page-section .section-intro {
    margin-bottom: 2rem;
}

.services-page-section .services-grid {
    margin-top: 2rem;
}

.section-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 2.65rem;
    line-height: 1.15;
    font-weight: 600;
}

.section-divider {
    width: 54px;
    height: 2px;
    background: var(--accent);
    margin: 1rem auto 2rem;
}

.section-title.align-left,
.section-divider.align-left {
    text-align: left;
    margin-left: 0;
}

.centered {
    text-align: center;
}

.section-stack {
    margin-top: 5rem;
}

.muted-copy {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.map-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.2;
    margin: 4rem 0 2rem;
}

.booking-form {
    background: var(--surface);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--bg-color);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 3px solid rgba(169, 101, 85, 0.22);
    border-color: var(--accent);
}

.eyebrow {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-intro {
    text-align: center;
    color: var(--text-muted);
    margin: 0 auto 3rem;
    max-width: 620px;
}

.trust-strip {
    background: transparent;
    color: var(--text-main);
    margin-top: -22px;
    padding: 0 0 1.4rem;
    position: relative;
    z-index: 2;
}

.trust-strip .container {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(183, 116, 99, 0.18);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(66, 42, 34, 0.1);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 1rem 1.1rem;
}

.trust-item {
    border-left: 1px solid rgba(183, 116, 99, 0.2);
    padding: 0.15rem 1.1rem;
}

.trust-item:first-child {
    border-left: 0;
}

.trust-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.16rem;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.trust-item span {
    color: var(--text-muted);
    font-size: 0.83rem;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 0 2rem;
}

.service-highlight {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
}

.service-highlight strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.15;
}

.service-highlight span {
    color: var(--text-muted);
    font-size: 0.86rem;
}

.proof-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 3.5rem;
    align-items: center;
}

.proof-copy {
    max-width: 460px;
}

.proof-copy .section-title,
.proof-copy .section-intro {
    text-align: left;
    margin-left: 0;
}

.proof-copy .section-divider {
    margin-left: 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.proof-tile {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--surface-soft);
    box-shadow: 0 18px 44px rgba(66, 42, 34, 0.1);
    aspect-ratio: 4 / 5;
}

.proof-tile.large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.proof-tile img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    display: block;
}

.proof-tile.large img {
    min-height: 480px;
    object-position: center 34%;
}

.proof-tile-landscape {
    aspect-ratio: 16 / 10;
}

.proof-tile-landscape img {
    object-fit: contain;
    padding: 0.5rem;
}

.proof-tile span {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: rgba(45, 32, 27, 0.8);
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.82rem;
    padding: 0.45rem 0.75rem;
}

.services-preview {
    background:
        linear-gradient(180deg, #ffffff 0%, var(--bg-color) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(66, 42, 34, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-media {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 214, 205, 0.66)),
        var(--surface-warm);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    overflow: hidden;
}

.service-media img {
    width: 100%;
    height: 100%;
    display: block;
}

.portrait-media {
    aspect-ratio: 4 / 5;
}

.portrait-media img {
    object-fit: cover;
    object-position: center 35%;
}

.result-media {
    aspect-ratio: 4 / 5;
}

.result-media img,
.landscape-media img {
    object-fit: contain;
    padding: 0.75rem;
}

.landscape-media {
    aspect-ratio: 4 / 5;
}

.service-card > img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card-content {
    padding: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.service-points {
    display: grid;
    gap: 0.45rem;
    list-style: none;
    margin: 0 0 1.35rem;
}

.service-points li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-left: 1.25rem;
    position: relative;
}

.service-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 0.45rem;
    height: 0.45rem;
    background: var(--accent);
    border-radius: 999px;
}

.service-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-card .btn-primary {
    padding: 0.65rem 1rem;
}

.price {
    color: var(--accent);
    display: block;
    font-weight: 500;
    margin-bottom: 0;
}

.results-preview {
    background: var(--bg-color);
}

.result-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 2rem;
    align-items: center;
}

.result-feature img {
    width: 100%;
    height: auto;
    max-height: 720px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: block;
    background: var(--surface);
}

.result-copy {
    padding: 1rem 0 1rem 1rem;
}

.testimonial-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.testimonial,
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(43, 36, 34, 0.04);
}

.testimonial p {
    color: var(--text-main);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.45;
}

.testimonial span {
    color: var(--text-muted);
    display: block;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.faq-item h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.booking-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.booking-aside {
    background: var(--text-main);
    border-radius: 8px;
    color: var(--surface);
    padding: 2rem;
    position: sticky;
    top: 110px;
}

.booking-aside h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.booking-aside p {
    color: rgba(255, 250, 250, 0.72);
    margin-bottom: 1.5rem;
}

.booking-aside .btn-primary {
    display: inline-block;
    background: var(--surface) !important;
    color: var(--text-main) !important;
}

.text-link {
    color: var(--text-main);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0.15rem;
}

.booking-steps-section {
    background: var(--surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.booking-step {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

.booking-step span {
    color: var(--accent);
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.booking-step h3,
.service-care h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 0.65rem;
}

.booking-step p,
.service-care p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-care-section {
    background: var(--surface);
    padding-top: 80px;
}

.service-care {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: start;
}

.care-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.care-list article {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

.form-submit-btn {
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
}

.form-trust-note {
    color: var(--text-muted);
    font-size: 0.84rem;
    margin: 0.85rem 0 0;
    text-align: center;
}

.map-frame {
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    position: relative;
    background: var(--surface);
}

.success-hero {
    min-height: 80vh;
}

.success-card {
    max-width: 600px;
    background: var(--surface);
    padding: 4rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    text-align: center;
}

.success-mark {
    width: 4rem;
    height: 4rem;
    border: 1px solid rgba(169, 101, 85, 0.36);
    border-radius: 999px;
    margin: 0 auto 1rem;
    position: relative;
}

.success-mark::after {
    content: '';
    position: absolute;
    left: 1.35rem;
    top: 1rem;
    width: 1.05rem;
    height: 1.75rem;
    border: solid var(--accent);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.success-card h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.success-card p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0 auto 2.5rem;
}

.gallery-filter {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    color: var(--text-main);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.gallery-filter.active,
.gallery-filter:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-grid {
    column-count: 3;
    column-gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(43, 36, 34, 0.05);
    display: inline-block;
    margin: 0 0 1.5rem;
    overflow: hidden;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-caption {
    padding: 1rem 1.1rem 1.15rem;
}

.gallery-caption h4 {
    font-family: var(--font-serif);
    font-size: 1.22rem;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.gallery-caption p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- FOOTER --- */
footer {
    padding: 4rem 0;
    background-color: var(--surface);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

footer p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.copyright {
    font-size: 0.875rem;
    margin-top: 2rem;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 112px 0 54px;
    }

    .home-hero {
        background-image:
            linear-gradient(180deg, rgba(251, 247, 243, 0.99) 0%, rgba(251, 247, 243, 0.96) 54%, rgba(251, 247, 243, 0.42) 100%),
            url('gallary/make-up2.jpeg');
        background-position: center 48%;
        min-height: 76svh;
    }

    .hero h1 {
        font-size: 3.55rem;
        line-height: 0.96;
    }

    .hero-kicker {
        font-size: 1.25rem;
    }

    .trust-strip .container,
    .service-highlights,
    .proof-layout,
    .result-feature,
    .booking-panel,
    .booking-steps,
    .service-care,
    .care-list {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        margin-top: 0;
        padding-bottom: 0.75rem;
    }

    .trust-strip .container {
        padding: 0.85rem 1rem;
    }

    .hero-highlights {
        gap: 0.75rem 1rem;
        margin-top: 1.4rem;
    }

    .trust-item {
        border-left: 0;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 0.85rem;
    }

    .trust-item:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .proof-grid,
    .testimonial-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .proof-tile,
    .proof-tile.large,
    .proof-tile-landscape {
        aspect-ratio: auto;
    }

    .proof-tile img,
    .proof-tile.large img {
        min-height: 0;
        height: auto;
        object-fit: contain;
    }

    .proof-tile-landscape img {
        padding: 0;
    }

    .booking-aside {
        position: static;
    }

    .booking-form { padding: 1.5rem; }
    .section { padding: 60px 0; }
    .page-hero-section { padding-top: 118px; }
    .gallery-grid { column-count: 1; }
    .service-media { min-height: 220px; }
}

@media (min-width: 769px) and (max-width: 1020px) {
    .gallery-grid {
        column-count: 2;
    }
}

/* --- HAMBURGER MENU STYLES --- */
.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--text-main);
    min-height: 44px;
    min-width: 44px;
    z-index: 10000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: currentColor;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    body.nav-open {
        overflow: hidden;
    }

    .hamburger {
        display: inline-flex;
        flex-direction: column;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        min-height: calc(100svh - 76px);
        background-color: rgba(255, 252, 249, 0.98);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow);
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 3rem 0 4rem;
        gap: 1.6rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
        display: flex !important;
        z-index: 9998;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a:not(.btn-primary) {
        display: block !important;
        color: var(--text-main) !important;
        font-size: 1.1rem;
        padding: 0.35rem 0;
    }

    .nav-links .btn-primary {
        display: inline-block;
        margin: 0 auto;
    }

    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
        width: 52px;
        height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
