*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1B3A6B;
  --teal: #2AC4AD;
  --teal-dark: #1FA898;
  --teal-light: #E8FAF7;
  --cream: #F8F5F0;
  --white: #FFFFFF;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --purple: #7C6BFF;
  --purple-light: #EDE9FF;
  --blue-light: #E0EDFF;
  --green-light: #DCFCE7;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-full: 9999px;
  --font: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; width: 100%; }
body { font-family: var(--font); color: var(--gray-700); background: var(--white); overflow-x: clip; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; }

/* ── CONTAINER ── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--r-full);
  font-weight: 600; font-size: .95rem;
  transition: all .25s; cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(42,196,173,.35); }
.btn-outline { background: transparent; color: var(--gray-700); border: 1.5px solid var(--gray-300, #D1D5DB); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #152d55; }
.btn-dark { background: #3D3D4D; color: #fff; }
.btn-dark:hover { background: #2a2a3a; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ── TOP BAR ── */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-logo img {
  height: 60px;
  width: auto;
  transition: height 0.2s ease;
}
@media (max-width: 768px) {
  .topbar-logo img {
    height: 52px;
  }
}
.topbar-logo-text { font-size: 1.6rem; font-weight: 800; color: var(--navy); letter-spacing: -1px; }
.topbar-logo-text span { color: var(--teal); }
.topbar-meta {
  display: flex; align-items: center; gap: 24px; font-size: .9rem;
}
.topbar-addr {
  display: flex; align-items: center; gap: 6px; color: var(--gray-500);
  transition: color .2s ease;
}
.topbar-addr:hover {
  color: var(--teal);
}
.topbar-addr svg { color: var(--teal); flex-shrink: 0; }
.topbar-phone {
  display: flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 1rem; color: var(--navy);
}
.topbar-phone svg { color: var(--teal); }

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px; padding-bottom: 10px; gap: 16px;
}
.navbar-social { display: flex; gap: 8px; }
.social-icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: transform .2s;
}
.social-icon:hover { transform: scale(1.1); }
.social-ig { background: #E1306C; color: #fff; }
.social-wa { background: #25D366; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 7px 14px; border-radius: var(--r-full);
  font-size: .9rem; font-weight: 500; color: var(--gray-700);
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--teal-light); color: var(--teal-dark); }
.navbar-hours {
  font-size: .8rem; color: var(--gray-500);
  display: flex; align-items: center; gap: 6px;
}
.navbar-hours svg { color: var(--teal); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 6px; border-radius: 8px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--gray-200);
  padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 24px; font-size: 1rem; font-weight: 500;
  color: var(--gray-700); border-left: 3px solid transparent; transition: all .2s;
}
.mobile-nav a:hover { border-left-color: var(--teal); color: var(--teal); background: var(--teal-light); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #f8f5f0 60%, #e8faf7 100%);
  padding: 64px 0 48px;
  position: relative; overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 6px 14px; border-radius: var(--r-full);
  font-size: .85rem; font-weight: 500; color: var(--navy);
  margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.hero-badge svg { color: #F59E0B; }
.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.2;
  color: var(--navy); margin-bottom: 18px;
}
.hero h1 span { color: var(--teal); }
.hero-sub {
  font-size: 1.05rem; color: var(--gray-500);
  line-height: 1.7; margin-bottom: 32px; max-width: 460px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.hero-btns-2 { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-img-wrap {
  position: relative;
}
.hero-img-card {
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid rgba(255,255,255,.7);
}
.hero-img-card img {
  width: 100%; height: 420px; object-fit: cover; object-position: center;
}
.hero-float-badge {
  position: absolute; top: 20px; right: -10px;
  background: var(--white); border-radius: var(--r-md);
  padding: 10px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .9rem; color: var(--navy);
}
.hero-float-badge svg { color: #F59E0B; }

/* ── MISSION ── */
.mission { background: var(--cream); padding: 80px 0; }
.mission-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.mission-label {
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
}
.mission h2 {
  font-size: 2rem; font-weight: 800; color: var(--navy);
  text-transform: uppercase; margin-bottom: 20px; letter-spacing: -0.5px;
}
.mission-quote {
  font-size: 1rem; font-style: italic; color: var(--gray-500);
  line-height: 1.8; border-left: 3px solid var(--teal);
  padding-left: 18px;
}
.mission-list { display: flex; flex-direction: column; gap: 20px; }
.mission-item { display: flex; align-items: flex-start; gap: 14px; }
.mission-icon {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.mission-icon svg { width: 14px; height: 14px; stroke: #fff; }
.mission-item h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.mission-item p { font-size: .85rem; color: var(--gray-500); line-height: 1.5; }

/* ── SERVICES ── */
.services { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 2rem; font-weight: 800; color: var(--navy); }
.section-title h2 span { color: var(--teal); }
.section-title p { color: var(--gray-500); margin-top: 10px; font-size: 1rem; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 28px 22px;
  text-align: center; transition: all .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.service-card-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal-light); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.service-card-icon svg { width: 30px; height: 30px; stroke: var(--teal); fill: none; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .85rem; color: var(--gray-500); line-height: 1.6; }

/* ── PRICING CATALOG ── */
.pricing { background: var(--cream); padding: 80px 0; }
.pricing-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-bottom: 48px; }
.pricing-header h2 { font-size: 2rem; font-weight: 800; color: var(--navy); }
.pricing-header h2 span { color: var(--teal); }
.pricing-header p { font-size: .9rem; color: var(--gray-500); line-height: 1.7; }
.pricing-layout { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.pricing-tabs { display: flex; flex-direction: column; gap: 6px; }
.tab-btn {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-full); padding: 10px 18px;
  font-size: .875rem; font-weight: 500; color: var(--gray-700);
  cursor: pointer; text-align: left; transition: all .2s; width: 100%;
}
.tab-btn:hover { border-color: var(--teal); color: var(--teal); }
.tab-btn.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; margin-bottom: 6px;
  background: var(--white); border-radius: var(--r-full);
  gap: 16px;
}
.price-row.header { background: var(--gray-100); font-weight: 700; color: var(--navy); }
.price-name { font-size: .9rem; color: var(--gray-700); flex: 1; }
.price-val {
  font-size: .9rem; font-weight: 600; color: var(--navy);
  background: var(--gray-100); padding: 4px 16px;
  border-radius: var(--r-full); white-space: nowrap; min-width: 110px; text-align: center;
}

/* ── PACKAGES ── */
.packages { padding: 80px 0; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 28px; transition: all .3s;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pkg-badge {
  display: inline-block; padding: 4px 12px; border-radius: var(--r-full);
  font-size: .75rem; font-weight: 600; margin-bottom: 14px;
}
.pkg-badge.neuro { background: var(--blue-light); color: #2563EB; }
.pkg-badge.cardio { background: #FEF3C7; color: #D97706; }
.pkg-badge.ortho { background: var(--purple-light); color: #7C3AED; }
.pkg-card h3 {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 14px; line-height: 1.4;
}
.pkg-divider { border: none; border-top: 1px solid var(--gray-200); margin: 16px 0; }
.pkg-icon { color: var(--teal); margin-bottom: 12px; }
.pkg-price {
  font-size: 1.3rem; font-weight: 800; color: var(--navy); display: inline;
}
.pkg-btn-wrap { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; flex-wrap: wrap; gap: 10px; }
.pkg-struct-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--purple-light); color: var(--purple);
  padding: 7px 14px; border-radius: var(--r-full);
  font-size: .8rem; font-weight: 600; transition: all .2s; cursor: pointer; border: none;
}
.pkg-struct-btn:hover { background: var(--purple); color: #fff; }

/* ── SPECIALISTS ── */
.specialists { background: var(--cream); padding: 80px 0; }
.specialists-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.doc-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 24px; transition: all .3s; border: 1px solid var(--gray-200);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  box-shadow: var(--shadow-sm);
}
.doc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.doc-img-wrap { width: 100%; height: 320px; border-radius: 20px; overflow: hidden; margin-bottom: 20px; }
.doc-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.doc-info { width: 100%; }
.doc-info h3 { font-size: 1.1rem; font-weight: 700; color: #1B3A6B; margin-bottom: 8px; }
.doc-role { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.doc-bio { font-size: 0.85rem; color: #4B5563; line-height: 1.6; display: flex; flex-direction: column; gap: 8px; }
.doc-bio p { margin: 0; }
/* ── COMFORT & SAFETY ── */
.comfort { padding: 100px 0; background: var(--white); }
.comfort-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.comfort-img-wrap { width: 100%; height: 400px; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-md); }
.comfort-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.comfort-content { display: flex; flex-direction: column; gap: 20px; }
.comfort-title { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1.25; }
.comfort-title span { color: #5D85D7; }
.comfort-desc { color: #4B5563; line-height: 1.65; font-size: 0.95rem; }
.comfort-list { display: flex; flex-direction: column; gap: 14px; padding: 0; list-style: none; margin: 0; }
.comfort-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.comfort-list li i {
  color: #5D85D7; font-size: 0.95rem; width: 22px; height: 22px; border-radius: 50%;
  background: #EAF0FA; display: flex; align-items: center; justify-content: center;
}

/* ── SOLUTIONS (AMO CRM) ── */
.solutions { padding: 100px 0; background: #F9F9FB; overflow: hidden; }
.solutions-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.solutions-content { display: flex; flex-direction: column; gap: 20px; }
.solutions-title { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1.25; }
.solutions-title span { color: #5D85D7; }
.solutions-desc { color: #4B5563; line-height: 1.65; font-size: 0.95rem; }
.solutions-list { display: flex; flex-direction: column; gap: 14px; padding: 0; list-style: none; margin: 0; }
.solutions-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.solutions-list li i {
  color: #5D85D7; font-size: 0.95rem; width: 22px; height: 22px; border-radius: 50%;
  background: #EAF0FA; display: flex; align-items: center; justify-content: center;
}

.solutions-card-wrap { width: 100%; overflow: hidden; }
.amo-card {
  width: 100%;
}
.amo-card iframe {
  width: 100% !important;
  min-height: 460px;
  border: none !important;
  background: transparent !important;
  display: block;
}

/* Responsiveness for new sections */
@media (max-width: 1024px) {
  .comfort-inner, .solutions-inner { gap: 40px; }
  .comfort-title, .solutions-title { font-size: 2.2rem; }
  .comfort-img-wrap { height: 320px; }
}

@media (max-width: 768px) {
  .comfort { padding: 80px 0; }
  .comfort-inner { grid-template-columns: 1fr; gap: 32px; }
  .comfort-img-wrap { order: -1; height: 280px; }
  
  .solutions { padding: 80px 0; }
  .solutions-inner { grid-template-columns: 1fr; gap: 32px; }
  .comfort-title, .solutions-title { font-size: 2rem; }
  .amo-card iframe { min-height: 520px; }
}

@media (max-width: 500px) {
  .amo-card {
    width: 100%;
    position: relative;
    height: calc(520px * ((100vw - 48px) / 450));
    overflow: hidden;
  }
  .amo-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 450px !important;
    min-width: 450px !important;
    height: 520px !important;
    min-height: 520px !important;
    transform: scale(calc((100vw - 48px) / 450));
    transform-origin: top left;
  }
}

/* ── DIAGNOSTICS ── */
.diagnostics { padding: 100px 0; background: var(--white); overflow: hidden; }
.diag-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }

/* Left Column: Grid */
.diag-left { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.diag-col { display: flex; flex-direction: column; gap: 24px; }
.diag-col-right { margin-top: 50px; } /* Staggered offset */

/* Cards inside grid */
.diag-card { border-radius: 28px; overflow: hidden; transition: all 0.3s ease; box-shadow: var(--shadow-sm); }
.diag-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.diag-card-img { width: 100%; height: 260px; }
.diag-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.diag-card-text { padding: 32px 24px; display: flex; flex-direction: column; gap: 12px; height: 260px; justify-content: flex-start; }
.diag-card-text.cream { background: #E8E2DA; color: var(--navy); }
.diag-card-text.blue { background: #5D85D7; color: var(--white); }

.diag-card-text .icon { font-size: 2rem; margin-bottom: 4px; display: flex; align-items: center; }
.diag-card-text.cream .icon { color: #5D85D7; }
.diag-card-text.blue .icon { color: var(--white); }

.diag-card-text h4 { font-size: 1.2rem; font-weight: 800; margin: 0; }
.diag-card-text p { font-size: 0.9rem; line-height: 1.5; margin: 0; }
.diag-card-text.cream p { color: #5C6370; }
.diag-card-text.blue p { color: rgba(255, 255, 255, 0.9); }

/* Right Column: Content */
.diag-right { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.diag-badge {
  background: #EAF0FA; color: #5D85D7;
  padding: 6px 16px; border-radius: var(--r-full);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px;
}
.diag-title { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1.25; margin: 0; }
.diag-title span { color: #5D85D7; }
.diag-desc { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; margin: 0; }

.diag-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; width: 100%; }
.diag-list-item { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.diag-list-item i { font-size: 1.2rem; color: #5D85D7; }

.diag-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: #5B6C7A; color: var(--white);
  padding: 14px 32px; border-radius: var(--r-full);
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  transition: all 0.3s ease; border: none; cursor: pointer;
  box-shadow: 0 4px 12px rgba(91, 108, 122, 0.2);
  margin-top: 8px;
}
.diag-btn:hover { background: #4A5864; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(91, 108, 122, 0.3); }

/* Media Queries for Diagnostics responsiveness */
@media (max-width: 1024px) {
  .diag-inner { grid-template-columns: 1fr; gap: 48px; }
  .diag-right { order: -1; }
  .diag-title { font-size: 2.2rem; }
}
@media (max-width: 768px) {
  .diag-left { grid-template-columns: 1fr; gap: 20px; }
  .diag-col-right { margin-top: 0; }
  .diag-card-img, .diag-card-text { height: 240px; }
}

/* ── REVIEWS ── */
.reviews { padding: 100px 0; background: #F9F9FB; overflow: hidden; }
.reviews-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 48px; }
.reviews-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #EAF0FA; color: #5D85D7;
  padding: 6px 16px; border-radius: var(--r-full);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px;
}
.reviews-title { font-size: 2.5rem; font-weight: 800; color: var(--navy); margin: 12px 0 0; }
.reviews-title span { color: #5D85D7; }

.reviews-slider-wrap {
  width: 100%;
  padding: 10px 0;
  position: relative;
}
.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  padding: 10px 0;
}
.reviews-track::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}
.review-slide {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease;
}
.review-slide img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}
.review-slide img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.reviews-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D2DBE8;
  cursor: pointer;
  transition: all 0.3s ease;
}
.reviews-dots .dot.active {
  background: #5D85D7;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .review-slide {
    flex: 0 0 calc(50% - 12px);
  }
  .reviews-title { font-size: 2.2rem; }
}
@media (max-width: 768px) {
  .review-slide {
    flex: 0 0 100%;
  }
  .reviews { padding: 80px 0; }
  .reviews-title { font-size: 2rem; }
}

/* ── CONTACT ── */
.contact { padding: 80px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info h2 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: var(--cream); border-radius: var(--r-md);
}
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 50%; min-width: 40px;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { stroke: var(--teal); width: 18px; height: 18px; }
.contact-item h4 { font-size: .85rem; color: var(--gray-500); margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: .95rem; font-weight: 600; color: var(--navy); transition: color .2s ease; }
.contact-item a:hover { color: var(--teal); }
.contact-map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-map-wrap iframe { width: 100%; height: 440px; border: none; display: block; }

/* ── FOOTER ── */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 40px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 12px; }
.footer-logo span { color: var(--teal); }
.footer-desc { font-size: .875rem; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 8px; }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: .875rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; font-size: .8rem; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--teal); }
.footer-dev {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
@media (max-width: 768px) {
  .footer-dev {
    align-items: flex-start;
    width: 100%;
    margin-top: 8px;
  }
}

/* ── FLOATING BUTTONS ── */
.float-btns {
  position: fixed; right: 20px; bottom: 80px;
  display: flex; flex-direction: column; gap: 10px; z-index: 999;
}
.float-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2); transition: transform .2s; cursor: pointer;
  text-decoration: none; border: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25D366; }
.float-call { background: var(--teal); }
.float-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.float-btn svg { width: 22px; height: 22px; stroke: #fff; fill: none; }
.float-btn.float-wa svg { fill: #fff; stroke: none; }
.float-back-to-top {
  background: var(--navy);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.float-back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.float-back-to-top:hover {
  background: var(--teal);
}


/* ── ANIMATIONS ── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .specialists-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .mission-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .topbar {
    position: sticky !important;
    top: 0;
    z-index: 101;
    box-shadow: var(--shadow-sm);
  }
  .topbar-meta { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .pricing-header { grid-template-columns: 1fr; }
  .pricing-layout { grid-template-columns: 1fr; }
  .pricing-tabs { flex-direction: row; overflow-x: auto; padding-bottom: 4px; gap: 8px; }
  .tab-btn { white-space: nowrap; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .navbar { display: none !important; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .specialists-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: 1.7rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-btns, .hero-btns-2 { flex-direction: column; }
  .hero-btns .btn, .hero-btns-2 .btn { justify-content: center; }
}

/* ── MOBILE BOTTOM NAVIGATION ── */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .navbar {
    position: relative !important;
    top: auto !important;
    box-shadow: none !important;
  }
  
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
  }
  
  .mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #8E8E93;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    transition: all 0.2s ease;
    flex: 1;
    text-align: center;
  }
  
  .mobile-bottom-item svg {
    stroke: #8E8E93;
    fill: none;
    transition: all 0.2s ease;
  }
  
  .mobile-bottom-item.active {
    color: var(--teal);
  }
  
  .mobile-bottom-item.active svg {
    stroke: var(--teal);
    transform: translateY(-2px);
  }
  
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
}

.dev-badge-glass {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 8px;
  font-family: sans-serif;
  font-size: 11px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}
.dev-badge-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f8fafc;
}
.dev-badge-glass .badge-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}
.dev-badge-glass .badge-bold {
  font-weight: 700;
  color: #f8fafc;
}
