/* =============================================
   EVI'S DENTAL TOUCH — Global Design System
   =============================================*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
    --mint: #4EC5B5;
    --aqua: #2EAFA3;
    --aqua-dark: #1d8a80;
    --accent-light: #A7E3D8;
    --dark-text: #0F2E2E;
    --mid-text: #2a5050;
    --muted: #6b9090;
    --bg: #F7FBFA;
    --white: #ffffff;
    --card-bg: #ffffff;
    --border: #e0f0ed;
    --gradient: linear-gradient(135deg, #4EC5B5 0%, #2EAFA3 100%);
    --gradient-rev: linear-gradient(135deg, #2EAFA3 0%, #4EC5B5 100%);
    --shadow-sm: 0 2px 12px rgba(46, 175, 163, .10);
    --shadow-md: 0 6px 30px rgba(46, 175, 163, .16);
    --shadow-lg: 0 16px 56px rgba(46, 175, 163, .20);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 999px;
    --transition: all .3s cubic-bezier(.4, 0, .2, 1);
    --nav-h: 76px;
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--bg);
    color: var(--dark-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    line-height: 1.25;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    color: var(--mid-text);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d5f5ef, #b5ece3);
    color: var(--aqua);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: .6rem;
}

.section-sub {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ── Layout ── */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(46, 175, 163, .35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(46, 175, 163, .45);
    background: var(--gradient-rev);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--aqua);
    transform: translateY(-2px);
}

.btn-outline-teal {
    border: 2px solid var(--mint);
    color: var(--mint);
    background: transparent;
}

.btn-outline-teal:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-sm {
    padding: .55rem 1.3rem;
    font-size: .85rem;
}

.btn-lg {
    padding: 1rem 2.4rem;
    font-size: 1.05rem;
}

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 9999;
    transition: var(--transition);
    padding: 0 1.5rem;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.navbar.transparent {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-logo-text {
    font-family: 'Poppins', sans-serif;
}

.nav-logo-text .brand {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark-text);
}

.nav-logo-text .tagline {
    font-size: .65rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: .12em;
    text-transform: uppercase;
    display: block;
}

.navbar.transparent .nav-logo-text .brand {
    color: var(--white);
}

.navbar.transparent .nav-logo-text .tagline {
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    font-weight: 500;
    color: var(--dark-text);
    padding: .5rem .9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar.transparent .nav-link {
    color: rgba(255, 255, 255, .9);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: var(--gradient);
}

.navbar.transparent .nav-link:hover {
    color: var(--white);
    background: var(--gradient);
}

.nav-cta {
    margin-left: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: .5rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.transparent .hamburger span {
    background: var(--white);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 46, 46, .75) 0%, rgba(46, 175, 163, .35) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: .45;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .25);
    color: var(--white);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .4rem 1.1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.2rem;
}

.hero h1 span {
    color: var(--accent-light);
}

.hero p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.15rem;
    margin-bottom: 2.2rem;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.hero-stat .num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat .lbl {
    font-size: .8rem;
    color: var(--white);
    letter-spacing: .06em;
}

.hero-stat+.hero-stat {
    border-left: 1px solid rgba(255, 255, 255, .2);
    padding-left: 2rem;
}

/* ── Cards ── */
.card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* ── Services ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.8rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #d5f5ef, #b5ece3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient);
}

/* ── Why Choose Us ── */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 260px;
    max-width: 350px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(46, 175, 163, .25);
}

/* ── Testimonials ── */
.testimonials-section {
    background: var(--dark-text);
}

.testimonials-section .section-title,
.testimonials-section .section-sub {
    color: var(--white);
}

.testimonials-section .section-badge {
    background: rgba(78, 197, 181, .2);
    color: var(--accent-light);
}

.testimonials-slider {
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 1.5rem;
    /* Hide scrollbar for clean look */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    scroll-snap-align: start;
    width: calc(33.33% - 1rem); min-width: 320px; max-width: 450px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-md);
    padding: 2rem;
    flex-shrink: 0;
}

.testimonial-stars {
    color: #FFD166;
    font-size: 1rem;
    margin-bottom: .8rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: rgba(255, 255, 255, .85);
    font-style: italic;
    margin-bottom: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: .9rem;
}

.testimonial-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--white);
}

.testimonial-location {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
}

.slider-controls {
    display: flex;
    gap: .8rem;
    justify-content: center;
    margin-top: 2rem;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--gradient);
    border-color: transparent;
}

/* ── CTA Banner ── */
.cta-banner {
    background: var(--gradient);
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.cta-banner::before {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta-banner::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -80px;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: .8rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-banner-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── About Preview ── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 1rem 1.4rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: .8rem;
}

.about-badge-float .icon {
    font-size: 1.8rem;
}

.about-badge-float .label {
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark-text);
}

.about-badge-float .sub {
    font-size: .78rem;
    color: var(--muted);
}

.about-checks {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.about-check {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.about-check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d5f5ef, #b5ece3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: var(--aqua);
    flex-shrink: 0;
}

/* ── Doctors ── */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.doctor-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.doctor-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.doctor-card:hover .doctor-img {
    transform: scale(1.04);
}

.doctor-info {
    padding: 1.6rem;
}

.doctor-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark-text);
}

.doctor-degree {
    font-size: .85rem;
    color: var(--aqua);
    font-weight: 600;
    margin: .25rem 0;
}

.doctor-bio {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.6;
    margin-top: .5rem;
}

/* ── Gallery ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 46, 46, .7) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: .9rem;
    font-weight: 600;
}

/* ── Blog ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card:hover .blog-thumb {
    transform: scale(1.04);
}

.blog-body {
    padding: 1.5rem;
}

.blog-tag {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--aqua);
}

.blog-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: .5rem 0;
}

.blog-excerpt {
    font-size: .88rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: var(--muted);
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-card {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--white);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: rgba(255, 255, 255, .85);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-text .label {
    font-weight: 600;
    font-size: .85rem;
    color: var(--white);
}

.contact-item-text .val {
    color: var(--white);
    font-weight: 500;
}

.contact-social {
    display: flex;
    gap: .8rem;
    margin-top: 2rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: rgba(255, 255, 255, .3);
    transform: translateY(-2px);
}

/* ── Forms ── */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1.2rem;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: .8rem 1.1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: .95rem;
    color: var(--dark-text);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--mint);
    box-shadow: 0 0 0 3px rgba(78, 197, 181, .15);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ── Map ── */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 350px;
    margin-top: 3rem;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Footer ── */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo-text .brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo-text .tagline {
    font-size: .7rem;
    color: var(--accent-light);
    letter-spacing: .15em;
    text-transform: uppercase;
    display: block;
    margin-top: .15rem;
}

.footer-desc {
    color: var(--white);
    margin-top: 1rem;
    font-size: .9rem;
    line-height: 1.7;
    color: var(--white);
}

.footer h4 {
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.footer-links a {
    font-size: .9rem;
    color: var(--white);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: .82rem;
}

.footer-bottom a {
    color: var(--accent-light);
}

/* ── Floating Buttons ── */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    background: #25D366;
}

.float-call {
    background: var(--gradient);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
    background: var(--gradient);
    padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    top: -200px;
    right: -100px;
}

.page-hero h1 {
    color: var(--white);
}

.page-hero p {
    color: rgba(255, 255, 255, .85);
    margin-top: .75rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem;
    font-size: .85rem;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, .4);
}

/* ── Appointment Page ── */
.appointment-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

.appointment-info {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
}

.apt-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.apt-feature:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--accent-light);
}

.apt-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #d5f5ef, #b5ece3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.apt-feature h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: .2rem;
    font-size: 1rem;
}

.apt-feature p {
    font-size: .85rem;
    color: var(--muted);
}

/* ── FAQ ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--aqua);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d5f5ef, #b5ece3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
    color: var(--aqua);
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 1.5rem;
    font-size: .95rem;
    color: var(--muted);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem;
}

/* ── Scroll to top ── */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(.9);
        opacity: .8;
    }

    50% {
        transform: scale(1.05);
        opacity: .5;
    }

    100% {
        transform: scale(.9);
        opacity: .8;
    }
}

.animate-fadeup {
    animation: fadeInUp .7s ease both;
}

.animate-fadeleft {
    animation: fadeInLeft .7s ease both;
}

.animate-faderight {
    animation: fadeInRight .7s ease both;
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-animate].revealed {
    opacity: 1;
    transform: none;
}

/* ── Utility ── */
.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt-1 {
    margin-top: .5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: .5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.bg-white {
    background: var(--white);
}

.bg-soft {
    background: var(--bg);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .appointment-layout {
        grid-template-columns: 1fr;
    }

    .appointment-info {
        position: static;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3.5rem 0;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.99);
        padding: 1.5rem;
        gap: 0.5rem;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        border-top: 1px solid var(--border);
        z-index: 9999;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-link {
        padding: .9rem 1.2rem;
        font-size: 1rem;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .nav-cta {
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-card {
        width: 85vw; min-width: unset; flex-shrink: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.2rem;
    }

    .hero-stat+.hero-stat {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-img-wrap img {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* ── Reviews Page UI ── */
.reviews-page {
    background: var(--bg);
    padding-bottom: 6rem;
}
.reviews-summary {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-sm);
}
.rs-rating {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: .8rem;
    line-height: 1;
}
.rs-rating i {
    color: #FFD166;
    font-size: 2.5rem;
}
.rs-text h3 {
    margin-bottom: .25rem;
}
.rs-text p {
    color: var(--muted);
    font-size: .95rem;
}
.reviews-masonry {
    column-count: 1;
    column-gap: 2rem;
}
@media (min-width: 768px) { .reviews-masonry { column-count: 2; } }
@media (min-width: 1024px) { .reviews-masonry { column-count: 3; } }

.review-brick {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    margin-bottom: 2rem;
    break-inside: avoid;
    position: relative;
    box-shadow: 0 4px 15px rgba(46, 175, 163, 0.03);
    transition: var(--transition);
}
.review-brick:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}
.quote-mark {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: rgba(78, 197, 181, 0.08); /* Mint Green but very transparent */
    z-index: 0;
}
.review-brick > * {
    position: relative;
    z-index: 1;
}
.review-brick .testimonial-text {
    font-size: 1.05rem;
    color: var(--mid-text);
    margin: 1.5rem 0;
    font-style: italic;
    line-height: 1.8;
}
.review-brick .testimonial-name {
    color: var(--dark-text);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
