/* ============================================
   Vibrant Premium — Клиника Доктора Дурсунова
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --bg: #fafafa;
  --surface: #f0f0f0;
  --accent: #7c3aed;
  --accent-hover: #9333ea;
  --text: #18181b;
  --text-muted: #71717a;
  --border: #e4e4e7;
  --gradient: linear-gradient(135deg, #7c3aed, #ec4899);
  --accent-rgb: 124, 58, 237;
  --bg-rgb: 250, 250, 250;
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Inter', sans-serif;
  --heading-weight: 700;
  --body-weight: 400;
  --radius: 20px;
  --radius-sm: 10px;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--accent-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  letter-spacing: -0.02em;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
}

.service-card, .team-card, .hero h1, .section-header h2 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(var(--bg-rgb), 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.nav-brand-name {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover { color: var(--accent); }

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(var(--bg-rgb), 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--accent); }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,0.08) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.hero-decor-circle {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .stat-number {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero photo */
.hero-photo-wrapper {
  position: relative;
}

.hero-photo {
  position: relative;
  border-radius: var(--radius);
  padding: 3px;
  background: var(--gradient);
  display: inline-block;
  width: 100%;
  max-width: 480px;
}

.hero-photo img {
  border-radius: calc(var(--radius) - 3px);
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 48px;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* --- Sections --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.04;
  filter: blur(60px);
  pointer-events: none;
}

.section:nth-child(odd)::before { right: -100px; }
.section:nth-child(even)::before { left: -100px; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Gradient divider */
.section-divider {
  width: 80px;
  height: 2px;
  background: var(--gradient);
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  position: relative;
  transition: all var(--transition);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: var(--gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.12);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card-body {
  padding: 24px;
}

.service-card-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-card-price {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Featured first card */
.service-card.featured {
  display: flex;
  flex-direction: column;
}

/* --- Team Grid --- */
.team-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface);
}

.team-grid::-webkit-scrollbar { height: 4px; }
.team-grid::-webkit-scrollbar-track { background: var(--surface); border-radius: 4px; }
.team-grid::-webkit-scrollbar-thumb { background: var(--gradient); border-radius: 4px; }

.team-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius);
  position: relative;
  transition: all var(--transition);
  padding: 3px;
  background: var(--gradient);
}

.team-card-inner {
  background: #fff;
  border-radius: calc(var(--radius) - 3px);
  overflow: visible;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.15);
}

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 3px) calc(var(--radius) - 3px) 0 0;
}

.team-card-info {
  padding: 20px;
  text-align: center;
}

.team-card-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card-info .role {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
}

.team-card-info .spec {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 4px;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(124,58,237,0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* --- CTA Section --- */
.cta-section {
  padding: 80px 0;
  position: relative;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.04;
  border-radius: 0;
}

.cta-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 60px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: var(--gradient);
  z-index: -1;
}

.cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* --- Contact list --- */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.contact-list .contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 1.1rem;
}

.contact-list a {
  color: var(--text);
  font-weight: 500;
}

.contact-list a:hover { color: var(--accent); }

/* --- Map --- */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  margin-top: 40px;
  border: 2px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Footer --- */
.footer {
  background: var(--text);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gradient);
}

/* --- Sticky CTA bar (mobile) --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(var(--bg-rgb), 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.sticky-cta .btn {
  flex: 1;
  max-width: 200px;
  padding: 12px 20px;
  font-size: 0.9rem;
}

/* --- Services Page: categories --- */
.services-category {
  margin-bottom: 60px;
}

.services-category h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.services-category h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--gradient);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.price-table tr:hover {
  background: rgba(var(--accent-rgb), 0.03);
}

.price-table td {
  padding: 16px 12px;
  font-size: 0.95rem;
}

.price-table td:first-child {
  font-weight: 500;
  max-width: 60%;
}

.price-table td:last-child {
  text-align: right;
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.price-table .service-desc {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 2px;
}

/* --- Page Header --- */
.page-header {
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* --- UTP Cards (index) --- */
.utp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

.utp-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.utp-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.utp-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.3rem;
}

.utp-card h4 {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* --- Contacts section on index --- */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.branch-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.branch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient);
  border-radius: 4px 0 0 4px;
}

.branch-card h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.branch-card .branch-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.branch-card .branch-detail svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* --- Responsive: Tablet + --- */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.featured {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .service-card.featured .service-card-img {
    width: 40%;
    min-width: 40%;
    height: 100%;
    min-height: 260px;
    border-radius: var(--radius) 0 0 var(--radius);
  }

  .service-card.featured .service-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .service-card.featured::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    border-radius: 4px 0 0 4px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .utp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Responsive: Desktop --- */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .burger {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .hero-content {
    flex: 1;
  }

  .hero-photo-wrapper {
    flex: 0 0 420px;
  }

  .hero-photo img {
    height: 480px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card.featured {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .utp-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .sticky-cta {
    display: none;
  }
}

/* Section shapes decorative circles */
.section-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.section-shape-1 {
  width: 250px;
  height: 250px;
  background: var(--gradient);
  opacity: 0.05;
  filter: blur(60px);
  top: 10%;
  right: -5%;
}

.section-shape-2 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #ec4899, #7c3aed);
  opacity: 0.06;
  filter: blur(50px);
  bottom: 15%;
  left: -3%;
}

/* Counters inline */
.counters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 60px 0;
}

.counter-item {
  text-align: center;
}

.counter-item .number {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 2.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-item .label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Promo badge on service card */
.promo-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
