/* === Resort Blue — dr.janaliev === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;1,500&display=swap');

:root {
  --bg: #ffffff;
  --bg-rgb: 255, 255, 255;
  --surface: #f5f7fa;
  --dark-section: #1a2a3a;
  --accent: #2a8fbd;
  --accent-rgb: 42, 143, 189;
  --accent-hover: #238aab;
  --accent-light: #e8f4f8;
  --text: #1a2a3a;
  --text-muted: #6b7c8a;
  --text-on-dark: #ffffff;
  --text-muted-on-dark: #9aacba;
  --border: #e2e8f0;
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --accent-serif: 'Playfair Display', serif;
  --transition: 0.3s ease;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 12px 32px rgba(0,0,0,0.14);
  --radius: 8px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  word-break: break-word;
}

.accent-serif {
  font-family: var(--accent-serif);
  font-style: italic;
  font-weight: 500;
}

/* ===== TEXT SAFETY ===== */
.service-card, .team-card, .hero h1, .section-header h2, .review-card {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark-section);
  color: var(--text-on-dark);
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: var(--text-muted-on-dark);
  transition: color var(--transition);
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar__social {
  display: flex;
  gap: 10px;
}

.top-bar__social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all var(--transition);
}

.top-bar__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ===== MAIN NAV ===== */
.main-nav {
  background: #fff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.main-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo__text {
  display: flex;
  flex-direction: column;
}

.nav-logo__name {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.2;
}

.nav-logo__tag {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--heading-font);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 200;
}

.burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--dark-section);
  color: var(--text-on-dark);
}

.section--dark .text-muted {
  color: var(--text-muted-on-dark);
}

.section--surface {
  background: var(--surface);
}

.section--accent-light {
  background: var(--accent-light);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 600px;
  margin: 0 auto;
}

.section--dark .section-header p {
  color: var(--text-muted-on-dark);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  font-family: var(--heading-font);
}

.section--dark .badge {
  background: rgba(42, 143, 189, 0.2);
  color: #7cc8e8;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a2a3a 0%, #0d3b5c 40%, #1a4a6a 70%, #1a2a3a 100%);
  overflow: hidden;
  color: var(--text-on-dark);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(42, 143, 189, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(42, 143, 189, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(42, 143, 189, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero__content {
  max-width: 540px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(42, 143, 189, 0.2);
  color: #7cc8e8;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-family: var(--heading-font);
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted-on-dark);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero circular photo cutouts */
.hero__photos {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform var(--transition);
}

.hero__circle:hover {
  transform: scale(1.05);
}

.hero__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__circle--1 {
  width: 240px;
  height: 240px;
  top: 10%;
  left: 10%;
  border-color: var(--accent);
  z-index: 3;
}

.hero__circle--2 {
  width: 180px;
  height: 180px;
  top: 0;
  right: 10%;
  border-color: #fff;
  z-index: 2;
}

.hero__circle--3 {
  width: 200px;
  height: 200px;
  bottom: 5%;
  left: 30%;
  border-color: var(--accent);
  z-index: 2;
}

.hero__circle--4 {
  width: 140px;
  height: 140px;
  bottom: 15%;
  right: 5%;
  border-color: #fff;
  z-index: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
  min-width: 44px;
  text-align: center;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 143, 189, 0.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--dark-section);
}

.btn--white:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--dark-section);
  color: #fff;
}

.btn--dark:hover {
  background: #0d2230;
  transform: translateY(-2px);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--surface);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border);
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== SERVICE CARDS (2x2 photo-cards numbered) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: visible;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.service-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 2;
}

.service-card__body {
  padding: 24px;
}

.service-card__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.service-card__desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}

.service-card__link:hover {
  gap: 10px;
}

/* ===== ABOUT COLLAGE (3 overlapping circles) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-text .btn {
  margin-top: 16px;
}

.about-utp {
  list-style: none;
  margin: 20px 0;
}

.about-utp li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.95rem;
}

.about-utp li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.about-collage {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-collage__circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.about-collage__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-collage__circle--1 {
  width: 280px;
  height: 280px;
  top: 0;
  left: 0;
  border: 3px solid #fff;
  z-index: 3;
}

.about-collage__circle--2 {
  width: 220px;
  height: 220px;
  top: 80px;
  right: 0;
  border: 3px solid var(--accent);
  z-index: 2;
}

.about-collage__circle--3 {
  width: 180px;
  height: 180px;
  bottom: 0;
  left: 60px;
  border: 3px solid #fff;
  z-index: 1;
}

/* ===== TEAM (3col circular photos 180px) ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

.team-card {
  text-align: center;
  max-width: 300px;
}

.team-card__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--accent-light);
  box-shadow: 0 4px 20px rgba(42, 143, 189, 0.15);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card__role {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.team-card__spec {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.section--dark .team-card__name { color: #fff; }
.section--dark .team-card__role { color: #7cc8e8; }
.section--dark .team-card__spec { color: var(--text-muted-on-dark); }
.section--dark .team-card__photo { border-color: rgba(42,143,189,0.4); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--accent-serif);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  position: relative;
  z-index: 1;
  font-style: italic;
}

.review-card__stars {
  color: #f5a623;
  font-size: 1rem;
  margin-top: 16px;
  letter-spacing: 2px;
}

/* ===== GALLERY (3col rounded, blue overlay) ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '+';
  position: absolute;
  inset: 0;
  background: rgba(42, 143, 189, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.section--dark .cta-section p {
  color: var(--text-muted-on-dark);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACTS ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-value {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-value a {
  color: var(--accent);
}

.contact-value a:hover {
  color: var(--accent-hover);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--surface);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-section);
  color: var(--text-on-dark);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand__name {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-brand__desc {
  color: var(--text-muted-on-dark);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #fff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted-on-dark);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted-on-dark);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted-on-dark);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== SERVICES PAGE — FULL LIST ===== */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-full-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.service-full-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}

.service-full-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-full-card:hover .service-full-card__img img {
  transform: scale(1.05);
}

.service-full-card__number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 2;
}

.service-full-card__body {
  padding: 24px;
}

.service-full-card__title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.service-full-card__desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #1a2a3a, #0d3b5c, #1a4a6a);
  padding: 100px 0 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(42,143,189,0.15), transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(42,143,189,0.1), transparent 50%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  position: relative;
}

.page-hero p {
  color: var(--text-muted-on-dark);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__photos {
    min-height: 320px;
  }

  .hero__circle--1 { width: 180px; height: 180px; }
  .hero__circle--2 { width: 140px; height: 140px; }
  .hero__circle--3 { width: 160px; height: 160px; }
  .hero__circle--4 { width: 110px; height: 110px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-collage {
    min-height: 320px;
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  .burger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    transition: right var(--transition);
    z-index: 150;
    gap: 0;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a::after { display: none; }

  .nav-cta {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
  }

  .hero {
    min-height: 80vh;
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero__photos {
    min-height: 250px;
  }

  .hero__circle--1 { width: 140px; height: 140px; left: 5%; top: 15%; }
  .hero__circle--2 { width: 110px; height: 110px; right: 5%; top: 5%; }
  .hero__circle--3 { width: 120px; height: 120px; left: 25%; bottom: 10%; }
  .hero__circle--4 { width: 90px; height: 90px; right: 5%; bottom: 20%; }

  .section { padding: 56px 0; }

  .section-header h2 { font-size: 1.8rem; }

  .services-grid,
  .services-full-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-item:not(:last-child)::after { display: none; }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-hero {
    padding: 80px 0 40px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .about-collage__circle--1 { width: 200px; height: 200px; }
  .about-collage__circle--2 { width: 160px; height: 160px; }
  .about-collage__circle--3 { width: 130px; height: 130px; }

  .cta-section h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .hero__subtitle { font-size: 1rem; }

  .hero__circle--1 { width: 110px; height: 110px; }
  .hero__circle--2 { width: 90px; height: 90px; }
  .hero__circle--3 { width: 100px; height: 100px; }
  .hero__circle--4 { width: 75px; height: 75px; }

  .hero__photos { min-height: 200px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .about-collage__circle--1 { width: 160px; height: 160px; }
  .about-collage__circle--2 { width: 120px; height: 120px; }
  .about-collage__circle--3 { width: 100px; height: 100px; }
}

/* ===== UTILITY ===== */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.overlay-nav { display: none; }

@media (max-width: 768px) {
  .overlay-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 140;
  }
  .overlay-nav.open { display: block; }
}

/* ===== DECORATIVE PSEUDO ELEMENTS ===== */
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

.about-text h2::after {
  margin: 16px 0 0;
}

/* ===== HOVER EFFECTS ===== */
.service-card:hover .service-card__link {
  color: var(--accent-hover);
}

.gallery-item:hover {
  box-shadow: 0 8px 24px rgba(42, 143, 189, 0.2);
}

.team-card:hover .team-card__photo {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(42, 143, 189, 0.25);
  transition: all var(--transition);
}
