*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #f190a4;
  --text: #0c0b0b;
  --muted: #757575;
  --bg: #ffffff;
  --bg2: #f5f5f5;
  --bg3: #f2f7fa;
  --radius: 4px;
}

html { scroll-behavior: smooth; }
body { font-family: Arial, sans-serif; font-size: 16px; line-height: 1.6; color: var(--text); background: var(--bg); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media(max-width:768px) { .container { padding: 0 20px; } }

/* ── HEADER ── */
header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid #eee; transition: box-shadow 0.3s; }
header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 16px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { max-width: 170px; width: 170px; height: auto; display: block; }
nav.desktop { display: none; gap: 24px; }
@media(min-width:980px) { nav.desktop { display: flex; } }
nav.desktop a { font-size: 15px; color: var(--text); text-decoration: none; transition: color .2s; }
nav.desktop a:hover { color: var(--pink); }
.header-right { display: none; align-items: center; gap: 16px; }
@media(min-width:980px) { .header-right { display: flex; } }
.header-phone { font-size: 18px; font-weight: 400; color: var(--text); text-decoration: none; }
.header-phone:hover { color: var(--pink); }
.btn-header { display: inline-flex; align-items: center; justify-content: center; padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 400; color: #fff; background: var(--pink); text-decoration: none; border: none; cursor: pointer; transition: background .2s; font-family: Arial, sans-serif; }
.btn-header:hover { background: #e07090; }
.menu-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
@media(min-width:980px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text); }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; }
.mobile-nav.open { display: block; }
.mobile-nav-panel { position: absolute; top: 0; right: 0; bottom: 0; width: 280px; background: #fff; padding: 24px; display: flex; flex-direction: column; gap: 20px; box-shadow: -4px 0 24px rgba(0,0,0,.15); }
.mobile-nav-panel a { font-size: 17px; color: var(--text); text-decoration: none; }
.mobile-nav-panel a:hover { color: var(--pink); }
.mobile-close { align-self: flex-end; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--muted); }

/* ── SECTIONS ── */
section { padding: 75px 0; }
@media(max-width:768px) { section { padding: 48px 0; } }

/* ── HERO ── */
#hero { background: var(--bg2); padding: 135px 0 80px; }
.hero-grid { display: grid; gap: 40px; align-items: center; }
@media(min-width:900px) { .hero-grid { grid-template-columns: 5fr 10fr; } }
.hero-text h1 { font-size: clamp(2rem, 4vw, 70px); line-height: 1.1; margin-bottom: 20px; }
.hero-text p { font-size: 24px; font-weight: 700; margin-bottom: 28px; }
.btn-main { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 50px; font-size: 16px; font-weight: 400; color: #fff; background: var(--pink); text-decoration: none; border: none; cursor: pointer; text-transform: uppercase; transition: background .2s; font-family: Arial, sans-serif; }
.btn-main:hover { background: #e07090; }
.hero-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 480px; }
.hero-img-big { grid-row: 1 / 3; border-radius: var(--radius); overflow: hidden; box-shadow: 0 0 50px rgba(0,0,0,0.3); }
.hero-img-big img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-sm { border-radius: var(--radius); overflow: hidden; box-shadow: 0 0 50px rgba(0,0,0,0.3); }
.hero-img-sm img { width: 100%; height: 100%; object-fit: cover; }
@media(max-width:768px) { .hero-images { height: 300px; } }

/* ── ABOUT ── */
#about { padding: 75px 0 90px; }
.about-grid { display: grid; gap: 40px; align-items: start; }
@media(min-width:900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text h2 { font-size: clamp(1.5rem, 2.5vw, 42px); margin-bottom: 16px; }
.about-text p { font-size: 18px; margin-bottom: 12px; }
.about-text ul { padding-left: 20px; font-size: 18px; display: flex; flex-direction: column; gap: 4px; }
.about-img img { width: 100%; border-radius: var(--radius); }

/* ── WHO WE HELP ── */
#who-we-help { padding: 75px 0 90px; }
.section-title { text-align: center; font-size: clamp(1.5rem, 2.5vw, 36px); font-weight: 700; margin-bottom: 105px; }
@media(max-width:960px) { .section-title { margin-bottom: 45px; } }
.who-grid { display: grid; gap: 0; }
@media(min-width:768px) { .who-grid { grid-template-columns: 1fr 1fr; } }
.who-item { display: flex; gap: 20px; align-items: flex-start; padding: 20px 40px 40px 0; }
@media(min-width:768px) { .who-item:nth-child(odd) { padding-right: 60px; } }
.who-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--pink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.who-item h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.who-item p { color: var(--text); font-size: 15px; font-family: Arial, sans-serif; }

/* ── BANNER ── */
.banner { background: var(--bg2); padding: 30px 0; text-align: center; }
.banner h3 { font-size: clamp(1.2rem, 2.5vw, 30px); font-weight: 700; margin-bottom: 8px; }
.banner p { font-size: 20px; color: var(--pink); font-weight: 400; }

/* ── FORM BLOCK ── */
.form-block { padding: 75px 0; }
.form-block-inner { max-width: 66.66%; margin: 0 auto; }
@media(max-width:768px) { .form-block-inner { max-width: 100%; } }
.form-block-wrap {
  background-image: url('images/form-bg.png');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
}
.form-block-content {
  background: linear-gradient(to bottom, rgba(13,14,97,0.70), rgba(13,44,82,0.70));
  padding: 48px 40px;
  text-align: center;
}
.form-block-content h2 { color: #fff; font-size: clamp(1.1rem, 2vw, 22px); font-weight: 700; margin-bottom: 32px; }
.form-inline { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.form-inline input { flex: 1; min-width: 180px; padding: 12px 16px; border-radius: var(--radius); border: none; font-size: 15px; font-family: Arial, sans-serif; outline: none; }
.form-inline input::placeholder { color: rgba(0,0,0,0.5); }
.form-inline-labels { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.form-inline-labels label { flex: 1; min-width: 180px; font-size: 16px; color: #fff; text-align: left; }
.form-error-msg { color: #ffb3b3; font-size: 13px; min-height: 18px; text-align: left; margin-bottom: 16px; }
.btn-submit-inline { width: 100%; padding: 14px 32px; border-radius: var(--radius); font-size: 16px; color: #fff; background: var(--pink); border: none; cursor: pointer; font-family: Arial, sans-serif; text-transform: uppercase; transition: background .2s; }
.btn-submit-inline:hover { background: #e07090; }

/* ── WHY US ── */
#why-us { background: #fff; padding: 90px 0; }
.why-title { font-size: clamp(1.3rem, 2.5vw, 36px); font-weight: 700; text-align: center; margin-bottom: 105px; }
@media(max-width:960px) { .why-title { margin-bottom: 45px; } }
.why-grid { display: grid; gap: 40px 60px; }
@media(min-width:768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-card { display: flex; flex-direction: row; gap: 24px; align-items: flex-start; }
.why-card img { width: 80px; height: 80px; object-fit: contain; flex-shrink: 0; margin-top: 0; }
.why-card-text { flex: 1; }
.why-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.why-card p { color: var(--muted); font-size: 15px; font-family: Arial, sans-serif; }
.why-card h3 a { color: var(--text); text-decoration: none; }
.why-card h3 a:hover { color: var(--pink); }
.why-card p { color: var(--muted); font-size: 15px; font-family: Arial, sans-serif; }

/* ── SERVICES ── */
#services { padding: 135px 0; }
.services-title { font-size: clamp(1.3rem, 2.5vw, 36px); font-weight: 700; text-align: center; margin-bottom: 90px; }
@media(max-width:960px) { .services-title { margin-bottom: 45px; } }
.accordion-wrap { max-width: 66.66%; margin: 0 auto; }
@media(max-width:768px) { .accordion-wrap { max-width: 100%; } }
.accordion-item { }
.accordion-item:first-child { border-top: 1px solid var(--pink); }
.accordion-bottom-border { height: 1px; background: var(--pink); }
.accordion-btn { width: 100%; background: none; border: none; border-bottom: 1px solid var(--pink); cursor: pointer; text-align: left; padding: 20px 0; font-size: 20px; font-weight: 400; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: Arial, sans-serif; }
.accordion-btn:hover { color: var(--pink); }
.accordion-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: #eee; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.accordion-icon svg { width: 22px; height: 22px; }
.accordion-icon svg circle { fill: transparent; }
.accordion-icon svg path { stroke: var(--text); transition: stroke .2s; }
.accordion-item.open .accordion-icon { background: var(--pink); }
.accordion-item.open .accordion-icon svg circle { fill: var(--pink); }
.accordion-item.open .accordion-icon svg path { stroke: #fff; }
.accordion-item.open .accordion-btn { border-bottom: none; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-item.open .accordion-body { max-height: 600px; }
.accordion-body-inner { padding: 0 0 24px; color: var(--text); font-size: 16px; border-bottom: 1px solid var(--pink); }
.accordion-body-inner ul { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }

/* ── GALLERY ── */
#gallery { padding: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
@media(max-width:600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── DOCTORS ── */
#doctors { padding: 75px 0; }
.doctors-title { font-size: clamp(1.3rem, 2.5vw, 36px); font-weight: 700; text-align: center; margin-bottom: 40px; }
.doctors-subtitle { font-size: 20px; color: var(--text); text-align: center; margin-bottom: 90px; max-width: 560px; margin-left: auto; margin-right: auto; }
@media(max-width:960px) { .doctors-subtitle { margin-bottom: 45px; } }
.doctors-slider { position: relative; overflow: hidden; }
.doctors-track { display: flex; gap: 0; transition: transform .5s ease; }
.doctor-card { flex-shrink: 0; width: calc(33.33% - 1px); background: var(--bg3); }
@media(max-width:768px) { .doctor-card { width: 100%; } }
.doctor-card-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: top; display: block; }
.doctor-card-body { padding: 20px; }
.doctor-card-role { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 6px; font-family: Arial, sans-serif; }
.doctor-card-name { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.doctor-card-desc { font-size: 13px; color: var(--text); font-family: Arial, sans-serif; }
.slider-arrows { display: none; }
.slider-arrow { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #000; background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.slider-arrow:hover { border-color: var(--pink); }
.slider-arrow svg { width: 8px; height: 14px; display: block; }
.slider-arrow svg polyline { fill: none; stroke: #000; stroke-width: 2; stroke-linecap: butt; stroke-linejoin: butt; }
.doctors-slider { position: relative; overflow: hidden; }
.slider-arrow-left,
.slider-arrow-right { position: absolute; top: 40%; transform: translateY(-50%); z-index: 10; width: 30px; height: 30px; border-radius: 50%; border: 2px solid #000; background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.slider-arrow-left { left: -40px; }
.slider-arrow-right { right: -40px; }
.slider-arrow-left svg, .slider-arrow-right svg { width: 8px; height: 14px; display: block; }
.slider-arrow-left svg polyline, .slider-arrow-right svg polyline { fill: none; stroke: #000; stroke-width: 2; stroke-linecap: butt; stroke-linejoin: butt; }
/* ── CONTACT FORM ── */
#contact { background: var(--bg2); padding: 60px 0; }
.contact-wrap { max-width: 66.66%; margin: 0 auto; }
@media(max-width:768px) { .contact-wrap { max-width: 100%; } }
.contact-inner {
  background: #fff;
  border: 15px solid var(--pink);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 0 29px rgba(0,0,0,0.3);
}
.contact-inner h2 { font-size: clamp(1.2rem, 2vw, 24px); font-weight: 700; text-align: center; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.contact-form-label { font-size: 16px; color: var(--text); margin-bottom: 4px; display: block; }
.contact-form-input {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #d6d6d6;
  font-size: 15px;
  font-family: Arial, sans-serif;
  outline: none;
  color: var(--text);
  background: transparent;
  margin-bottom: 20px;
}
.contact-form-input::placeholder { color: rgba(0,0,0,0.5); }
.contact-form-input:focus { border-bottom-color: var(--pink); }
.form-field-error { font-size: 12px; color: #e53935; display: block; margin-top: -16px; margin-bottom: 12px; }
.btn-contact { width: 100%; padding: 14px 32px; border-radius: 30px; font-size: 16px; color: #fff; background: var(--pink); border: none; cursor: pointer; font-family: Arial, sans-serif; transition: background .2s; margin-top: 8px; }
.btn-contact:hover { background: #e07090; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }


/* ── VIDEO ── */
#video-section { padding: 45px 0 90px; }
.video-title { font-size: clamp(1.2rem, 2vw, 36px); font-weight: 400; text-align: center; margin-bottom: 40px; }
.video-title strong { font-weight: 700; }
.video-wrap { max-width: 66.66%; margin: 0 auto; }
@media(max-width:768px) { .video-wrap { max-width: 100%; } }
.video-wrap iframe { width: 100%; height: 540px; border: none; border-radius: var(--radius); }
@media(max-width:600px) { .video-wrap iframe { height: 250px; } }

/* ── FOOTER ── */
footer { background: var(--bg2); padding: 24px 0; text-align: center; }
footer p { font-size: 13px; color: var(--muted); }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--pink); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: #262626; color: #fff; padding: 14px 24px; border-radius: 12px; font-size: 15px; z-index: 9999; box-shadow: 0 4px 20px rgba(0,0,0,.25); opacity: 0; transition: opacity .3s; pointer-events: none; max-width: 90vw; text-align: center; }
.toast.show { opacity: 1; }
.toast.error { background: #c62828; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.slider-arrow-left,
.slider-arrow-right { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 30px; height: 30px; min-width: 30px; border-radius: 50%; border: 2px solid #000; background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; }
.slider-arrow-left { left: 15px; }
.slider-arrow-right { right: 15px; }
.slider-arrow-left svg, .slider-arrow-right svg { width: 8px; height: 14px; display: block; }
.slider-arrow-left svg polyline, .slider-arrow-right svg polyline { fill: none; stroke: #000; stroke-width: 2; stroke-linecap: butt; stroke-linejoin: butt; }
.slider-arrows { display: none; }

#map-section { background: #f190a4; padding: 80px 0; }
#map-section .map-overlay { max-width: 500px; margin: 0 auto; text-align: center; }
#map-section .map-overlay h2 { color: #fff; font-size: 28px; font-weight: 700; margin-bottom: 16px; }
#map-section .map-overlay p { color: #fff; font-size: 16px; margin-bottom: 8px; }
#map-section .map-overlay a { color: #fff; text-decoration: none; }
#map-section .map-overlay .btn-main { color: #f190a4; background: #fff; }
#map-section .map-overlay .btn-main:hover { background: #f5f5f5; }