/* ========== CSS RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========== VARIÁVEIS — PALETA MÉDICA ========== */
:root {
    --navy:        #0b2540;
    --navy-mid:    #113259;
    --gold:        #1e8fc4;
    --gold-light:  #4aaedd;
    --cream:       #edf5fb;
    --white:       #f8fbff;
    --text-muted:  #7a8fa8;
    --green-trust: #1a7a5e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--white);
    color: #1a2332;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ========== PROGRESS BAR ========== */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    background: rgba(11, 37, 64, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(30, 143, 196, 0.2);
    transition: padding 0.3s ease;
}

header.scrolled {
    padding: 12px 5%;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    font-style: italic;
    font-size: 0.9rem;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--gold);
}

.btn-header {
    background: var(--gold);
    color: var(--navy);
    padding: 9px 22px;
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(30, 143, 196, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 143, 196, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 143, 196, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    padding: 120px 6% 80px 8%;
    z-index: 2;
    position: relative;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    padding: 6px 16px;
    background: rgba(30, 143, 196, 0.12);
    border: 1px solid rgba(30, 143, 196, 0.3);
    margin-bottom: 2rem;
    animation: fadeDown 0.8s ease both;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.trust-badge span {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s ease 0.2s both;
}

h1 em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.9s ease 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.9s ease 0.6s both;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 15px 32px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(30, 143, 196, 0.25);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(30, 143, 196, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 15px 32px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeUp 0.9s ease 0.8s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-visual {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(20%);
    opacity: 0.85;
    animation: fadeIn 1.2s ease 0.5s both;
}

.hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--navy) 0%, transparent 40%),
        linear-gradient(to top, var(--navy) 0%, transparent 30%);
    pointer-events: none;
}

.float-card {
    position: absolute;
    bottom: 80px;
    left: -40px;
    background: rgba(11, 37, 64, 0.9);
    border: 1px solid rgba(30, 143, 196, 0.25);
    border-radius: 12px;
    padding: 18px 22px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 240px;
    z-index: 5;
    animation: floatUp 1s ease 1s both;
}

.float-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.float-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--navy);
}

.float-info h4 {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}

.float-info p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.float-stars {
    color: #f1c40f;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.float-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ========== AVAILABILITY BAR ========== */
.availability-bar {
    background: var(--navy-mid);
    padding: 14px 8%;
    border-top: 1px solid rgba(30, 143, 196, 0.15);
    border-bottom: 1px solid rgba(30, 143, 196, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.availability-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.green-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.availability-text strong {
    color: var(--white);
}

.urgency-tag {
    background: rgba(30, 143, 196, 0.12);
    border: 1px solid rgba(30, 143, 196, 0.35);
    color: var(--gold);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 600;
}

.availability-bar .btn-primary {
    padding: 10px 24px;
    font-size: 0.82rem;
}

/* ========== SECTION COMMON ========== */
.section {
    padding: 90px 8%;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--navy);
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(0, 0, 0, 0.06);
}

.service-card {
    background: var(--white);
    padding: 40px 36px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.3s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    background: var(--cream);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--navy);
}

.service-card p {
    font-size: 0.87rem;
    color: #5a6a80;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.link-arrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .link-arrow {
    opacity: 1;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.about-img {
    position: relative;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    opacity: 0.7;
}

.about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--navy));
}

.about-content {
    padding: 80px 7% 80px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .section-label {
    color: var(--gold);
}

.about-content .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-content .section-title em {
    color: var(--gold);
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.credentials-list {
    list-style: none;
    margin-bottom: 2rem;
}

.credentials-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.cred-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(30, 143, 196, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.about-content .btn-primary {
    margin-top: 2.5rem;
    align-self: flex-start;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--cream);
    padding: 90px 8%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testi-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.verified-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(26, 122, 94, 0.1);
    border: 1px solid rgba(26, 122, 94, 0.3);
    color: var(--green-trust);
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 600;
}

.testi-stars {
    color: #f1c40f;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.testi-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    font-style: italic;
    line-height: 1.6;
    color: #2a3a52;
    margin-bottom: 1.5rem;
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.2rem;
}

.testi-author h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.testi-author p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========== TRUST STRIP ========== */
.trust-strip {
    background: var(--cream);
    padding: 40px 8%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.trust-item-icon {
    font-size: 1.8rem;
}

.trust-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

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

/* ========== BOOKING SECTION ========== */
.booking-section {
    background: var(--navy);
    padding: 90px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.booking-info .section-label {
    color: var(--gold);
}

.booking-info .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.booking-info p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(30, 143, 196, 0.12);
    border: 1px solid rgba(30, 143, 196, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.contact-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.booking-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(30, 143, 196, 0.2);
    border-radius: 16px;
    padding: 40px 36px;
}

.booking-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--navy);
    color: var(--white);
}

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

.btn-book {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    padding: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 0.8rem;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 143, 196, 0.3);
}

.privacy-text {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* ========== LOCATION SECTION ========== */
.location-section {
    background: var(--white);
    padding: 90px 8%;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.location-item {
    background: var(--cream);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.location-icon {
    font-size: 2rem;
}

.location-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
}

.location-address {
    margin-bottom: 1.5rem;
}

.location-address p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a6a80;
}

.location-address strong {
    color: var(--navy);
    font-weight: 600;
}

.map-wrapper {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-directions:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 143, 196, 0.3);
}

.location-features {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #5a6a80;
}

.feature-item span {
    font-size: 1.2rem;
}

/* ========== FOOTER ========== */
footer {
    background: #040f1e;
    padding: 40px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(30, 143, 196, 0.12);
    flex-wrap: wrap;
    gap: 2rem;
}

footer .logo {
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25d366;
    height: 56px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 0 16px;
    color: white;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    animation: floatBounce 3s ease-in-out infinite;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #1ebe5a;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
    transform: translateY(-3px);
}

.whatsapp-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 0.85; }
}

@keyframes floatUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.3); }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        padding: 140px 6% 80px;
    }

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

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 300px;
    }

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

    .booking-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    nav {
        display: none;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-strip {
        flex-direction: column;
    }

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

@media (max-width: 560px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
