/* ==========================================================================
   OSTRICH SEMAGLUTIDE WEIGHT LOSS SHOT - OFFICIAL STYLESHEET
   Palette:
   --primary: #0077b6 (Ocean Blue)
   --accent: #00b4d8 (Cerulean Blue)
   --highlight: #90e0ef (Soft Sky Blue)
   --tint: #caf0f8 (Pale Ice Blue)
   --dark: #03045e (Midnight Navy)
   ========================================================================== */

:root {
  --primary: #0077b6;
  --primary-hover: #005f92;
  --accent: #00b4d8;
  --accent-hover: #0096b7;
  --highlight: #90e0ef;
  --tint: #caf0f8;
  --dark: #03045e;
  --text-main: #1e293b;
  --text-muted: #475569;
  --text-light: #64748b;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --border-brand: #90e0ef;
  --shadow-sm: 0 1px 2px 0 rgba(3, 4, 94, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(3, 4, 94, 0.08), 0 2px 4px -2px rgba(3, 4, 94, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(3, 4, 94, 0.08), 0 4px 6px -4px rgba(3, 4, 94, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(3, 4, 94, 0.1), 0 8px 10px -6px rgba(3, 4, 94, 0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
  --transition: all 0.25s ease-in-out;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* Base Layout Container */
.container {
  width: min(1200px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.section-padding {
  padding: 72px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 48px 0;
  }
}

/* Typography Helpers */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-tag {
  display: inline-block;
  background-color: var(--tint);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  border: 1px solid var(--border-brand);
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 119, 182, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 14px rgba(0, 119, 182, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--dark);
  border-color: var(--border-brand);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--tint);
  border-color: var(--accent);
  color: var(--dark);
  transform: translateY(-1px);
}

.btn-accent {
  background-color: var(--accent);
  color: #ffffff;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   1. TOP INFORMATION BAR
   ========================================================================== */
.top-bar {
  background-color: var(--dark);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--highlight);
}

.top-info-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.top-info-item a {
  color: #ffffff;
  font-weight: 500;
}

.top-info-item a:hover {
  color: var(--highlight);
  text-decoration: underline;
}

.badge-24h {
  background-color: var(--accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

@media (max-width: 768px) {
  .top-bar {
    padding: 6px 0;
  }
  .top-bar .container {
    justify-content: center;
    text-align: center;
  }
  .top-info-address {
    display: none;
  }
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

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

.logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.logo-icon-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 119, 182, 0.3);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
}

.logo-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 4px;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.2s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-cta-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.phone-cta-link:hover {
  color: var(--primary);
  background-color: var(--tint);
}

.phone-cta-link svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* Mobile Hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--dark);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 2px solid var(--border-brand);
  box-shadow: var(--shadow-xl);
  padding: 20px;
  z-index: 999;
  max-height: calc(100vh - 74px);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link:hover {
  color: var(--primary);
  padding-left: 6px;
}

.mobile-drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .header-cta-group .btn-header-quote {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .phone-cta-link span {
    display: none;
  }
  .header-container {
    height: 64px;
  }
  .mobile-nav-drawer {
    top: 64px;
  }
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  padding: 60px 0 70px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid var(--border-brand);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.hero-badge-location svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.hero-title {
  font-size: 2.65rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.trust-icon-wrap {
  color: var(--primary);
  flex-shrink: 0;
}

.trust-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.trust-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
}

.hero-media-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
  background-color: var(--tint);
}

.hero-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background-color: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-brand);
  display: flex;
  align-items: center;
  gap: 12px;
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.float-icon svg {
  width: 20px;
  height: 20px;
}

.float-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
}

.float-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-image {
    height: 320px;
  }
  .hero-float-card {
    bottom: -15px;
    left: 15px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-trust-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
}

/* ==========================================================================
   4. SERVICES SECTION
   ========================================================================== */
.services-section {
  background-color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.featured-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon-box svg {
  width: 26px;
  height: 26px;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 24px;
  border-top: 1px dashed var(--border-light);
  padding-top: 16px;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.service-features-list li svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   5. WHY CHOOSE US
   ========================================================================== */
.why-us-section {
  background-color: var(--bg-page);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.why-us-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #ffffff;
}

.why-us-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.why-points-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-point-item {
  display: flex;
  gap: 16px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-point-item:hover {
  border-color: var(--border-brand);
  transform: translateX(4px);
}

.why-point-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-point-icon svg {
  width: 22px;
  height: 22px;
}

.why-point-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.why-point-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .why-us-image-card img {
    height: 300px;
  }
}

/* ==========================================================================
   6. OUR PROCESS
   ========================================================================== */
.process-section {
  background-color: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-card {
  background-color: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  position: relative;
  text-align: center;
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
}

.process-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 2px 8px rgba(0, 119, 182, 0.3);
}

.process-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.process-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   7. SERVICE AREAS
   ========================================================================== */
.areas-section {
  background: linear-gradient(180deg, var(--bg-page) 0%, #ffffff 100%);
  border-top: 1px solid var(--border-light);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.area-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

.area-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.area-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.area-icon svg {
  width: 18px;
  height: 18px;
}

.area-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.area-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.area-callout-box {
  background-color: var(--tint);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.area-callout-text {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}

@media (max-width: 768px) {
  .area-callout-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   8. FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
}

.faq-container-inner {
  max-width: 840px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-brand);
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question-btn:hover {
  color: var(--primary);
}

.faq-icon-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ==========================================================================
   9. CONTACT & QUOTE SECTION
   ========================================================================== */
.contact-section {
  background-color: var(--bg-page);
  border-top: 1px solid var(--border-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-info-card {
  background-color: var(--dark);
  color: #ffffff;
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-info-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.contact-info-desc {
  font-size: 0.95rem;
  color: var(--highlight);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-text h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.contact-detail-text a:hover {
  color: var(--highlight);
  text-decoration: underline;
}

.contact-form-card {
  background-color: #ffffff;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-main);
  background-color: #ffffff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
  line-height: 1.4;
}

.form-backend-notice {
  font-size: 0.78rem;
  color: #0369a1;
  background-color: var(--tint);
  border: 1px solid var(--border-brand);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.form-alert {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.form-alert.success {
  display: block;
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form-card, .contact-info-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   10. FINAL CALL TO ACTION (CTA)
   ========================================================================== */
.final-cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: #ffffff;
  padding: 64px 0;
  text-align: center;
}

.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.25;
}

.final-cta-subtitle {
  font-size: 1.1rem;
  color: var(--tint);
  margin-bottom: 28px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .final-cta-title {
    font-size: 1.75rem;
  }
  .final-cta-buttons .btn {
    width: 100%;
  }
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.site-footer {
  background-color: #02033b;
  color: #e2e8f0;
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.footer-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  color: #cbd5e1;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: var(--highlight);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.footer-contact-info li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-info svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Social Media Block */
.social-links-block {
  margin-top: 16px;
}

.social-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.social-icons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-icon-btn:hover {
  background-color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
}

/* ZIP Export Helper Bar */
.zip-export-helper {
  background-color: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(144, 224, 239, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.zip-helper-text {
  font-size: 0.9rem;
  color: #e2e8f0;
}

.zip-helper-text strong {
  color: var(--highlight);
}

/* Bottom Legal Bar */
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: #64748b;
}

.footer-disclaimer {
  max-width: 680px;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #64748b;
  margin-top: 8px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
