
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #0f172a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 75px;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== HEADER ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}

header.scrolled .logo-text h1,
header.scrolled .logo-text p {
  color: #0f172a;
}

header.scrolled nav a {
  color: #0f172a;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.3s;
}

.logo:active {
  transform: scale(0.98);
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(103, 126, 234, 0.4);
  flex-shrink: 0;
}

.logo-icon img {
  width: 30px;
  height: 30px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.2;
  transition: color 0.4s;
}

.logo-text p {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 3px;
  transition: color 0.4s;
}

nav {
  display: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  margin: 0 24px;
  transition: all 0.3s;
  font-size: 0.95rem;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.menu-btn {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border: none;
  padding: 11px;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.menu-btn:active {
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.35);
}

.menu-btn img {
  width: 24px;
  height: 24px;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 380px;
  background: white;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -20px 0 100px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-menu-header h3 {
  font-size: 1.4rem;
  color: #0f172a;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}

.close-menu-btn {
  background: #f1f5f9;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.close-menu-btn:active {
  background: #e2e8f0;
  transform: rotate(90deg) scale(0.95);
}

.close-menu-btn img {
  width: 22px;
  height: 22px;
}

.mobile-menu-links {
  padding: 24px 20px;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  margin-bottom: 12px;
  background: #f8fafc;
  border-radius: 20px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  transition: all 0.3s;
}

.mobile-link:active {
  background: linear-gradient(135deg, rgba(103, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  transform: translateX(-8px);
}

.mobile-link-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(103, 126, 234, 0.3);
}

.mobile-link-icon img {
  width: 26px;
  height: 26px;
}

.mobile-menu-cta {
  margin: 24px 20px;
  padding: 32px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 12px 48px rgba(103, 126, 234, 0.4);
}

.mobile-menu-cta p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mobile-menu-cta a {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
  margin-bottom: 20px;
}

.mobile-menu-cta .cta-btn {
  background: white;
  color: #667eea;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 140px 20px 80px;
  position: relative;
  background: linear-gradient(135deg, rgba(103, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.25) 100%),
              url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(103, 126, 234, 0.2) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 32px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.hero .highlight {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 16px rgba(251, 191, 36, 0.6));
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  background: white;
  color: #667eea;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 12px 48px rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:active {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1rem;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:active {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-6px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 580px;
  margin: 0 auto;
}

.stat-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 24px 20px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-box:active {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  color: #64748b;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ========== SECTIONS ========== */
.section {
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(103, 126, 234, 0.4);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 600;
}

/* ========== SERVICES ========== */
.services {
  background: #fafbfc;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 28px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f1f5f9;
}

.service-card:active {
  transform: translateY(-12px);
  box-shadow: 0 24px 64px rgba(103, 126, 234, 0.2);
  border-color: rgba(103, 126, 234, 0.3);
}

.service-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(103, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s;
}

.service-card:active .service-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 40px rgba(103, 126, 234, 0.5);
}

.service-icon img {
  width: 42px;
  height: 42px;
  transition: filter 0.4s;
}

.service-card:active .service-icon img {
  filter: brightness(0) invert(1);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.98rem;
  font-weight: 600;
}

/* ========== REVIEWS ========== */
.reviews {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.reviews .section-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
}

.reviews .section-title {
  color: white;
}

.reviews .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  position: relative;
}

.review-card::before {
  content: '❝';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 72px;
  color: rgba(103, 126, 234, 0.1);
  font-family: Georgia, serif;
}

.review-card:active {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.2);
}

.stars {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.stars img {
  width: 22px;
  height: 22px;
}

.review-text {
  color: #0f172a;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1rem;
  font-weight: 700;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(103, 126, 234, 0.3);
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(103, 126, 234, 0.3);
}

.reviewer-name {
  font-weight: 900;
  color: #0f172a;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.reviewer-info {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 700;
}

/* ========== GALLERY ========== */
.gallery-section {
  background: #fafbfc;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.gallery-item {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  height: 300px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:active {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:active img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(103, 126, 234, 0.95) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:active .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: white;
  font-weight: 900;
  font-size: 1.15rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  background: white;
  border-radius: 28px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f1f5f9;
}

.feature-card:active {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(103, 126, 234, 0.2);
  border-color: rgba(103, 126, 234, 0.3);
}

.feature-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(103, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s;
}

.feature-card:active .feature-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 12px 40px rgba(103, 126, 234, 0.5);
}

.feature-icon img {
  width: 42px;
  height: 42px;
  transition: filter 0.4s;
}

.feature-card:active .feature-icon img {
  filter: brightness(0) invert(1);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
}

.feature-card p {
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 600;
}

/* ========== CONTACT ========== */
.contact {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
}

.contact .section-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
}

.contact .section-title {
  color: white;
}

.contact .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.districts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 60px;
}

.district {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 16px 12px;
  border-radius: 20px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.district:active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(251, 191, 36, 0.6);
  transform: translateY(-6px);
}

.district img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.district span {
  font-weight: 900;
  color: white;
  font-size: 0.88rem;
}

.contact-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 48px 28px;
  border-radius: 36px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.contact-box h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: #0f172a;
}

.contact-box p {
  font-size: 1.08rem;
  margin-bottom: 32px;
  font-weight: 600;
  color: #64748b;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.6rem;
  box-shadow: 0 16px 56px rgba(103, 126, 234, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-btn:active {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 72px rgba(103, 126, 234, 0.5);
}

.contact-btn img {
  width: 32px;
  height: 32px;
}

/* ========== FOOTER ========== */
footer {
  background: #0a0f1a;
  color: white;
  padding: 60px 20px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.footer-logo h3 {
  font-size: 1.3rem;
  font-weight: 900;
}

.footer-text {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 0.98rem;
  font-weight: 600;
}

.footer-title {
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.98rem;
  font-weight: 600;
}

.footer-links a:active {
  color: #fbbf24;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact img {
  width: 22px;
  height: 22px;
}

.footer-contact a {
  color: white;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.05rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-social img {
  width: 22px;
  height: 22px;
}

.footer-social a {
  color: #ec4899;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.98rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  text-align: center;
  color: #64748b;
  font-size: 0.92rem;
  font-weight: 600;
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #f1f5f9;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.08);
  z-index: 999;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 75px;
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 800;
  transition: all 0.3s;
  padding: 10px 6px;
  position: relative;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 0 0 4px 4px;
  transform: translateX(-50%);
  transition: width 0.3s;
}

.mobile-nav a:active::before {
  width: 70%;
}

.mobile-nav a:active {
  background: linear-gradient(135deg, rgba(103, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  color: #667eea;
}

.mobile-nav img {
  width: 24px;
  height: 24px;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.mobile-nav .center {
  margin-top: -32px;
}

.mobile-nav .center-btn {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 48px rgba(103, 126, 234, 0.5);
  border: 4px solid white;
  transition: all 0.3s;
}

.mobile-nav .center-btn:active {
  transform: scale(0.95);
}

.mobile-nav .center-btn img {
  width: 32px;
  height: 32px;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 640px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: 680px;
  }
  
  .service-grid,
  .review-grid,
  .gallery,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .districts {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
  
  nav {
    display: flex;
  }
  
  .menu-btn,
  .mobile-nav {
    display: none;
  }
  
  .logo-icon {
    width: 68px;
    height: 68px;
  }
  
  .logo-icon img {
    width: 38px;
    height: 38px;
  }
  
  .logo-text h1 {
    font-size: 1.95rem;
  }
  
  .logo-text p {
    font-size: 0.75rem;
  }
  
  .hero {
    padding: 160px 24px 120px;
  }
  
  .hero h1 {
    font-size: 5rem;
  }
  
  .hero p {
    font-size: 1.4rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 20px 48px;
    font-size: 1.15rem;
  }
  
  .stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: 920px;
    gap: 24px;
  }
  
  .stat-number {
    font-size: 3.6rem;
  }
  
  .section {
    padding: 110px 24px;
  }
  
  .section-title {
    font-size: 4.2rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
  }
  
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .review-grid {
    gap: 32px;
  }
  
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .gallery-item {
    height: 360px;
  }
  
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  
  .districts {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  
  .contact-box {
    padding: 68px 48px;
    max-width: 760px;
  }
  
  .contact-box h3 {
    font-size: 3rem;
  }
  
  .contact-btn {
    padding: 24px 72px;
    font-size: 2.2rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 5.5rem;
  }
  
  .section-title {
    font-size: 4.5rem;
  }
}




