/* ============================================
   MayaDent - Stylesheet
   ============================================ */

:root {
    --primary: #0b539a;
    --primary-dark: #083d73;
    --primary-light: #1a6fc2;
    --primary-bg: #eaf2fa;
    --white: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --bg-dark-light: #1e293b;
    --border: #e2e8f0;
    --whatsapp: #25d366;
    --whatsapp-dark: #1ebe5d;
    --cta: #f97316;
    --cta-dark: #ea580c;
    --star: #f59e0b;
    --trustpilot: #00b67a;
    --danger: #ef4444;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 16px rgba(0,0,0,0.07);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.09);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --shadow-primary: 0 8px 24px rgba(11,83,154,0.25);
    --radius: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-full: 50px;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    --transition-fast: all 0.15s ease;
    --container: 1200px;
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --header-h: 76px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; font-size: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; appearance: none; -webkit-appearance: none; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* Section */
.section { padding: 56px 0; }
.section--alt { background: var(--bg-alt); }

.section__header { text-align: center; max-width: 580px; margin: 0 auto 48px; }
.section__title { font-size: 32px; font-weight: 800; line-height: 1.25; color: var(--text); margin-bottom: 12px; }
.section__subtitle { font-size: 16px; color: var(--text-light); line-height: 1.6; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 24px; font-size: 15px; font-weight: 600;
    border-radius: var(--radius-sm); transition: var(--transition);
    cursor: pointer; border: none; white-space: nowrap; line-height: 1.4;
}
.btn i { font-size: 20px; }
.btn--primary { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-primary); transform: translateY(-2px); }
.btn--whatsapp { background: var(--whatsapp); color: var(--white); }
.btn--whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.btn--whatsapp-header { background: var(--whatsapp); color: var(--white); padding: 10px; border-radius: var(--radius-sm); }
.btn--whatsapp-header:hover { background: var(--whatsapp-dark); }
.btn--phone { background: var(--primary-bg); color: var(--primary); }
.btn--phone:hover { background: var(--primary); color: var(--white); }
.btn--cta { background: var(--cta); color: var(--white); font-size: 16px; }
.btn--cta:hover { background: var(--cta-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.3); }
.btn--white { background: var(--white); color: var(--primary); }
.btn--white:hover { background: var(--primary-bg); transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--full { width: 100%; }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); transition: var(--transition);
    height: var(--header-h); border-bottom: 1px solid transparent; box-shadow: none;
    transition: height 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, border-bottom-color 0.35s ease;
    animation: slideDown 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}
.header.scrolled {
    border-bottom-color: var(--border); height: 64px;
    background: rgba(255,255,255,0.99); box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header > .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.header__logo { display: flex; align-items: center; z-index: 1001; }
.header__logo-img { height: 56px; width: auto; display: block; transition: height 0.35s ease; }
.header.scrolled .header__logo-img { height: 44px; }

.header__nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
    padding: 8px 16px; font-size: 14px; font-weight: 500;
    color: var(--text-light); border-radius: var(--radius-sm); transition: var(--transition-fast);
}
.nav__link:hover, .nav__link.active { color: var(--primary); background: var(--primary-bg); }

.header__actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.header__actions .btn--phone { padding: 8px; border-radius: var(--radius-sm); }
.header__actions .btn--phone span { display: none; }
.header__actions .btn--primary span { display: none; }
.header__actions .btn--primary { padding: 8px; border-radius: var(--radius-sm); }
.header__actions .btn--primary i { font-size: 20px; }
.header__actions .btn--whatsapp-header { padding: 8px; }

.header__hamburger {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; font-size: 28px; color: var(--text);
    border-radius: var(--radius-sm); z-index: 1001; transition: var(--transition-fast);
}
.header__hamburger:hover { background: var(--bg-alt); }

.header__nav.active {
    display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--white); flex-direction: column; align-items: center;
    justify-content: center; z-index: 1000;
}
.header__nav.active .nav__list { flex-direction: column; gap: 8px; }
.header__nav.active .nav__link { font-size: 18px; padding: 14px 36px; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 60px; overflow: hidden;
}

.hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background: url('https://images.pexels.com/photos/3845653/pexels-photo-3845653.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}
.hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(11,83,154,0.95) 0%, rgba(11,83,154,0.4) 100%);
}

.hero > .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }

/* Hero Badge */
.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-full);
    font-size: 13px; font-weight: 600; color: var(--white);
    margin-bottom: 20px; backdrop-filter: blur(4px);
}
.hero__badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--whatsapp); animation: dotPulse 1.5s infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero__title {
    font-size: 46px; font-weight: 800; line-height: 1.12;
    color: var(--white); margin-bottom: 20px;
}
.hero__title span { color: #7ec8f8; }
.hero__desc {
    font-size: 20px; line-height: 1.7; color: rgba(255,255,255,0.75);
    margin-bottom: 32px; max-width: 560px;
}
.hero__buttons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.hero__buttons .btn { width: 100%; text-align: center; }
.hero__btn-randevu { display: flex; }
.hero__form-wrapper { display: none; }

.btn--outline-white {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn--outline-white:hover {
    background: var(--white); color: var(--primary);
    border-color: var(--white);
}

/* Hero Stats */
.hero__stats {
    display: flex; align-items: center; gap: 24px;
}
.hero__stat strong {
    display: block; font-size: 24px; font-weight: 800; color: var(--white); line-height: 1.1;
}
.hero__stat span {
    font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500;
}
.hero__stat-divider {
    width: 1px; height: 36px; background: rgba(255,255,255,0.15);
}

/* Hero Form */
.hero__form-card {
    background: var(--white); border-radius: var(--radius);
    padding: 36px; box-shadow: var(--shadow-lg);
}
.form-card__header { text-align: center; margin-bottom: 24px; }
.form-card__header i { font-size: 40px; color: var(--primary); margin-bottom: 8px; }
.form-card__header h2 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.form-card__header p { font-size: 14px; color: var(--text-light); }

/* intl-tel-input */
.iti { width: 100%; }
.iti__tel-input,
.intl-phone {
    width: 100%; padding: 14px 14px 14px 52px; background: var(--bg-alt);
    border: 2px solid transparent; border-radius: var(--radius-sm);
    font-size: 15px; color: var(--text); transition: var(--transition-fast);
    font-family: var(--font);
}
.intl-phone::placeholder { color: var(--text-muted); }
.intl-phone:focus,
.iti--focused .intl-phone {
    background: var(--white); border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11,83,154,0.1); outline: none;
}
.iti__country-container { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.iti__selected-country-primary { background: transparent !important; padding: 0 8px 0 14px; }
.iti__dropdown-content { border-radius: var(--radius-sm); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.iti__search-input { border-radius: var(--radius-sm); border: 1px solid var(--border); padding: 8px 12px; font-size: 14px; }
.iti__country { padding: 8px 12px; }
.iti__country:hover { background: var(--primary-bg); }

/* Form Elements */
.form-group { margin-bottom: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row .form-group { margin-bottom: 12px; }

.input-icon { position: relative; }
.input-icon i {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    font-size: 18px; color: var(--text-muted); pointer-events: none; transition: var(--transition-fast);
}
.input-icon--textarea i { top: 16px; transform: none; }

.input-icon input,
.input-icon select,
.input-icon textarea {
    width: 100%; padding: 13px 14px 13px 42px; background: var(--bg-alt);
    border: 2px solid transparent; border-radius: var(--radius-sm);
    font-size: 15px; color: var(--text); transition: var(--transition-fast);
}
.input-icon input::placeholder,
.input-icon textarea::placeholder { color: var(--text-muted); }
.input-icon select {
    color: var(--text-muted); cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}
.input-icon select:valid { color: var(--text); }

.input-icon input:focus,
.input-icon select:focus,
.input-icon textarea:focus {
    background: var(--white); border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11,83,154,0.1);
}
.input-icon textarea { resize: vertical; min-height: 76px; }

.form-note {
    text-align: center; font-size: 12px; color: var(--text-muted);
    margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 4px;
}
.form-note i { font-size: 14px; }

/* ============================================
   TREATMENT
   ============================================ */
.treatment__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }

.treatment__image { position: relative; border-radius: var(--radius); overflow: hidden; }
.treatment__image img { border-radius: var(--radius); width: 100%; object-fit: cover; }
.treatment__image-badge {
    position: absolute; bottom: 16px; right: 16px; background: var(--white);
    padding: 10px 16px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); text-align: center;
}
.badge-number { display: block; font-size: 20px; font-weight: 800; color: var(--primary); line-height: 1.2; }
.badge-text { font-size: 11px; color: var(--text-light); font-weight: 500; }

.treatment__content .section__title { margin-bottom: 16px; text-align: left; }
.treatment__desc { font-size: 15px; line-height: 1.75; color: var(--text-light); margin-bottom: 28px; }

.treatment__steps { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step__icon {
    flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center;
    justify-content: center; background: var(--primary-bg); color: var(--primary);
    border-radius: var(--radius-sm); font-size: 20px; transition: var(--transition);
}
.step:hover .step__icon { background: var(--primary); color: var(--white); }
.step__content h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.step__content p { font-size: 14px; color: var(--text-light); line-height: 1.55; }

.treatment__features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.feature-card {
    padding: 18px; background: var(--bg-alt);
    border-radius: var(--radius-md); transition: var(--transition);
}
.feature-card:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-card__icon {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    background: var(--primary-bg); color: var(--primary); border-radius: var(--radius-sm);
    font-size: 20px; margin-bottom: 10px;
}
.feature-card h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.feature-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ============================================
   SERVICES
   ============================================ */
.services__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.service-card {
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--border); overflow: hidden; transition: var(--transition);
    display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card__img {
    width: 100%; height: 200px; overflow: hidden; flex-shrink: 0;
}
.service-card__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.07); }
.service-card__content { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.service-card__icon {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: var(--primary-bg); color: var(--primary); border-radius: var(--radius-sm);
    font-size: 22px; margin-bottom: 12px; transition: var(--transition);
}
.service-card:hover .service-card__icon { background: var(--primary); color: var(--white); }
.service-card__title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-card__desc { font-size: 14px; color: var(--text-light); line-height: 1.55; }

/* ============================================
   MINI CTA
   ============================================ */
.mini-cta {
    background: var(--primary); padding: 64px 0;
}
.mini-cta__inner {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 24px;
}
.mini-cta__text h3 {
    font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 6px; line-height: 1.3;
}
.mini-cta__text p {
    font-size: 15px; color: rgba(255,255,255,0.75);
}

@media (min-width: 768px) {
    .mini-cta__inner {
        flex-direction: row; justify-content: space-between; text-align: left;
    }
    .mini-cta__text h3 { font-size: 26px; }
    .mini-cta__text p { font-size: 16px; }
}

/* ============================================
   ABOUT
   ============================================ */
.about__intro { margin-bottom: 48px; }
.about__intro-content { max-width: 640px; }
.about__intro-content .section__title { text-align: left; }
.about__intro-content p { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-top: 12px; }

.about__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 48px; }
.stat-card {
    text-align: center; padding: 28px 16px; background: var(--primary-bg);
    border-radius: var(--radius-md); transition: var(--transition);
}
.stat-card:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-3px); }
.stat-card__icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: var(--primary); color: var(--white); border-radius: 50%;
    font-size: 22px; margin: 0 auto 12px; transition: var(--transition);
}
.stat-card:hover .stat-card__icon { background: var(--primary-dark); }
.stat-card__number { font-size: 32px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-card__suffix { font-size: 22px; font-weight: 700; color: var(--primary); }
.stat-card__label { font-size: 13px; color: var(--text-light); font-weight: 500; margin-top: 6px; }

.about__features { display: grid; grid-template-columns: 1fr; gap: 16px; }
.about-feature {
    display: flex; gap: 16px; padding: 20px; background: var(--white);
    border-radius: var(--radius-md); border: 1px solid var(--border); transition: var(--transition);
}
.about-feature:hover { border-color: var(--primary-bg); box-shadow: var(--shadow-sm); }
.about-feature__icon {
    flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center;
    justify-content: center; background: var(--primary-bg); color: var(--primary);
    border-radius: var(--radius-md); font-size: 22px;
}
.about-feature__content h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.about-feature__content p { font-size: 14px; color: var(--text-light); line-height: 1.55; }

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    position: relative; width: 100%; height: 70vh; min-height: 400px;
    overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.video-section__bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.video-section__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(11,83,154,0.7) 0%, rgba(15,23,42,0.75) 100%);
}
.video-section__content {
    position: relative; z-index: 2; text-align: center;
    max-width: 600px; padding: 0 20px;
}
.video-section__title {
    font-size: 36px; font-weight: 800; color: var(--white);
    margin-bottom: 14px; line-height: 1.2;
}
.video-section__desc {
    font-size: 17px; line-height: 1.7;
    color: rgba(255,255,255,0.75);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials__slider { position: relative; overflow: hidden; }
.testimonials__track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }

.testimonial-card {
    flex: 0 0 100%; padding: 24px; box-sizing: border-box;
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
}
.testimonial-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testimonial-card__avatar {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: var(--primary-bg); color: var(--primary); font-size: 14px; font-weight: 700;
    border-radius: 50%; flex-shrink: 0;
}
.testimonial-card__name { font-size: 15px; font-weight: 600; color: var(--text); }
.testimonial-card__stars { display: flex; gap: 1px; color: var(--star); font-size: 13px; }
.testimonial-card__platform { margin-left: auto; font-size: 22px; color: #4285f4; }
.testimonial-card__platform--trustpilot { color: var(--trustpilot); }
.testimonial-card__text { font-size: 14px; line-height: 1.65; color: var(--text-light); margin-bottom: 12px; }
.testimonial-card__date { font-size: 12px; color: var(--text-muted); }

.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.slider-btn {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    background: var(--white); border: 1px solid var(--border); border-radius: 50%;
    font-size: 20px; color: var(--text); transition: var(--transition);
}
.slider-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--border);
    cursor: pointer; transition: var(--transition);
}
.slider-dot.active { background: var(--primary); width: 24px; border-radius: var(--radius-full); }

/* ============================================
   GALLERY
   ============================================ */
.gallery__grid { columns: 2; column-gap: 14px; }
.gallery__item { break-inside: avoid; margin-bottom: 14px; }
.gallery__item a { display: block; position: relative; overflow: hidden; border-radius: var(--radius-md); }
.gallery__item img { width: 100%; display: block; object-fit: cover; transition: transform 0.5s ease; }
.gallery__item:nth-child(odd) img { aspect-ratio: 4/3; }
.gallery__item:nth-child(even) img { aspect-ratio: 3/4; }
.gallery__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,83,154,0.75) 0%, transparent 50%);
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding: 18px; opacity: 0; transition: var(--transition);
}
.gallery__item a:hover .gallery__overlay { opacity: 1; }
.gallery__item a:hover img { transform: scale(1.06); }
.gallery__tag {
    background: var(--white); color: var(--primary); padding: 3px 10px;
    border-radius: var(--radius-full); font-size: 11px; font-weight: 600; margin-bottom: 6px;
}
.gallery__overlay i { color: var(--white); font-size: 24px; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 64px 0; position: relative; overflow: hidden;
}
.cta-band::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,0.04);
}
.cta-band__content { text-align: center; position: relative; z-index: 1; }
.cta-band__title { font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.cta-band__desc {
    font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 28px;
    max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.6;
}
.cta-band__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ============================================
   FAQ
   ============================================ */
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
    margin-bottom: 10px; background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.faq__item:hover { border-color: rgba(11,83,154,0.2); }
.faq__item.active { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq__question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; font-size: 15px; font-weight: 600; color: var(--text);
    text-align: left; cursor: pointer; transition: var(--transition-fast);
}
.faq__question i { font-size: 20px; color: var(--primary); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 14px; }
.faq__item.active .faq__question i { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq__answer p { padding: 0 22px 18px; font-size: 14px; line-height: 1.7; color: var(--text-light); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg-dark); padding-top: 64px; color: rgba(255,255,255,0.7); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 36px; padding-bottom: 48px; }

.footer__logo { display: inline-flex; align-items: center; margin-bottom: 14px; }
.footer__logo-img { height: 50px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer__about-text { font-size: 14px; line-height: 1.65; margin-bottom: 18px; color: rgba(255,255,255,0.5); }

.footer__social { display: flex; gap: 8px; }
.footer__social a {
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    background: var(--bg-dark-light); color: rgba(255,255,255,0.6); border-radius: var(--radius-sm);
    font-size: 19px; transition: var(--transition);
}
.footer__social a:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.footer__heading {
    font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 18px;
    position: relative; padding-bottom: 10px;
}
.footer__heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--primary); border-radius: 2px; }
.footer__links li { margin-bottom: 8px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: var(--transition-fast); }
.footer__links a:hover { color: var(--white); padding-left: 4px; }

.footer__contact li { display: flex; gap: 10px; margin-bottom: 14px; font-size: 14px; align-items: flex-start; }
.footer__contact i { font-size: 18px; color: var(--primary-light); margin-top: 2px; flex-shrink: 0; }
.footer__contact a { color: rgba(255,255,255,0.5); }
.footer__contact a:hover { color: var(--white); }
.footer__cta-buttons { display: flex; gap: 8px; margin-top: 16px; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.footer__bottom-inner { display: flex; flex-direction: column; gap: 12px; text-align: center; }
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer__legal a:hover { color: var(--white); }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-buttons { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 10px; z-index: 999; }
.floating-btn {
    width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-size: 24px; color: var(--white); box-shadow: var(--shadow-md); transition: var(--transition);
}
.floating-btn:hover { transform: scale(1.08); }
.floating-btn--phone { background: var(--primary); }
.floating-btn--whatsapp { background: var(--whatsapp); animation: wpPulse 2s infinite; }

@keyframes wpPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.35); }
    70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); display: flex; align-items: center;
    justify-content: center; z-index: 2000; padding: 20px;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
    background: var(--white); border-radius: var(--radius); padding: 44px 36px;
    max-width: 480px; width: 100%; position: relative;
    transform: translateY(24px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--shadow-lg); max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal__close {
    position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-alt); border-radius: 50%; font-size: 20px; color: var(--text-light);
    transition: var(--transition-fast);
}
.modal__close:hover { background: var(--danger); color: var(--white); }
.modal__header { text-align: center; margin-bottom: 28px; }
.modal__icon {
    width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
    background: var(--primary-bg); color: var(--primary); font-size: 30px; border-radius: 50%;
    margin: 0 auto 14px;
}
.modal__header h2 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.modal__header p { font-size: 15px; color: var(--text-light); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.5s ease forwards; }

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}
.hero__content {
    opacity: 0; animation: slideInLeft 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero__form-wrapper {
    opacity: 0; animation: slideInRight 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* ============================================
   RESPONSIVE - 768px
   ============================================ */
@media (min-width: 768px) {
    .container { padding: 0 32px; }
    .section { padding: 96px 0; }
    .section__title { font-size: 36px; }
    .hero__title { font-size: 52px; }
    .hero__desc { font-size: 21px; }
    .hero__buttons { flex-direction: row; flex-wrap: wrap; }
    .hero__buttons .btn { width: auto; }

    .treatment__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
    .treatment--reverse .treatment__grid { direction: rtl; }
    .treatment--reverse .treatment__grid > * { direction: ltr; }

    .services__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .service-card { flex-direction: row; }
    .service-card__img { width: 40%; height: auto; min-height: 200px; }
    .service-card__content { width: 60%; padding: 24px; }
    .about__stats { grid-template-columns: repeat(4, 1fr); }
    .about__features { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid { columns: 3; }

    .video-section { height: 80vh; }
    .video-section__title { font-size: 42px; }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================
   RESPONSIVE - 1024px
   ============================================ */
@media (min-width: 1024px) {
    .header__nav { display: block; }
    .header__actions { gap: 8px; margin-left: 0; }
    .header__actions .btn--phone { padding: 10px 18px; }
    .header__actions .btn--phone span { display: inline; }
    .header__actions .btn--primary { padding: 10px 18px; }
    .header__actions .btn--primary span { display: inline; }
    .header__actions .btn--whatsapp-header { padding: 10px; }
    .header__hamburger { display: none; }

    .hero { padding: 140px 0 80px; }
    .hero__grid { grid-template-columns: 1fr 420px; }
    .hero__title { font-size: 58px; }
    .hero__desc { font-size: 21px; }
    .hero__btn-randevu { display: none; }
    .hero__form-wrapper { display: block; }

    .services__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .gallery__grid { columns: 4; }
    .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
    .cta-band__title { font-size: 34px; }
}

/* ============================================
   RESPONSIVE - 1440px
   ============================================ */
@media (min-width: 1440px) {
    .container { padding: 0 40px; }
    .hero__title { font-size: 66px; }
    .hero__desc { font-size: 22px; }
    .section__title { font-size: 40px; }
}

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

@media print {
    .header, .floating-buttons, .modal-overlay, .cta-band { display: none !important; }
    .hero { min-height: auto; padding-top: 20px; }
    body { color: #000; background: #fff; }
}
