/*
Theme Name: Medicare of Georgia
Theme URI: https://medicare-of-georgia.com
Author: Medicare of Georgia
Author URI: https://medicare-of-georgia.com
Description: A professional Medicare insurance comparison and enrollment theme for Medicare of Georgia. Fully compatible with Elementor page builder. Features the official Medicare of Georgia brand identity with navy, red, and gold color palette. Includes custom Elementor global colors, fonts, and pre-built widget styles for plan cards, hero sections, enrollment forms, FAQ accordions, and trust indicators.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mog
Tags: health, insurance, medicare, elementor, one-page, custom-colors, custom-logo, georgia

*/

/* ============================================================
   BRAND TOKENS — sync with Elementor Global Colors
   ============================================================ */
:root {
  /* Primary palette */
  --mog-navy:         #0B3D6B;
  --mog-navy-mid:     #1A5C9A;
  --mog-navy-dark:    #071C38;
  --mog-navy-light:   #E6F1FB;
  --mog-red:          #C8102E;
  --mog-red-dark:     #9E0C23;
  --mog-red-light:    #FDEAED;
  --mog-gold:         #E8A020;
  --mog-gold-light:   #FDF3E3;
  --mog-green:        #2A8C5C;
  --mog-green-dark:   #1D6642;
  --mog-green-light:  #E7F5EE;

  /* Neutrals */
  --mog-white:        #FFFFFF;
  --mog-off-white:    #F8FAFD;
  --mog-gray-50:      #F1F4F8;
  --mog-gray-100:     #E2E8F0;
  --mog-gray-300:     #94A3B8;
  --mog-gray-600:     #475569;
  --mog-gray-900:     #0F1E30;

  /* Typography */
  --mog-font-display: 'Merriweather', Georgia, serif;
  --mog-font-body:    'DM Sans', -apple-system, sans-serif;

  /* Spacing & shape */
  --mog-radius-sm:    6px;
  --mog-radius-md:    10px;
  --mog-radius-lg:    16px;
  --mog-radius-xl:    24px;
  --mog-shadow-sm:    0 2px 8px  rgba(11,61,107,0.08);
  --mog-shadow-md:    0 6px 24px rgba(11,61,107,0.12);
  --mog-shadow-lg:    0 16px 48px rgba(11,61,107,0.16);
  --mog-shadow-xl:    0 24px 64px rgba(11,61,107,0.20);
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--mog-font-body);
  color: var(--mog-gray-900);
  background: var(--mog-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--mog-navy-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--mog-navy); }

/* ============================================================
   ELEMENTOR — GLOBAL OVERRIDES
   ============================================================ */

/* Make Elementor sections full-width by default */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1200px;
}

/* Ensure Elementor columns inherit brand fonts */
.elementor-widget-container,
.elementor-widget-container * {
  font-family: var(--mog-font-body);
}

/* Elementor heading widgets use display font */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--mog-font-display);
  font-weight: 700;
  color: var(--mog-navy);
  line-height: 1.25;
}

/* Elementor text widget */
.elementor-widget-text-editor p {
  color: var(--mog-gray-600);
  line-height: 1.75;
  font-size: 16px;
}

/* Elementor button widget */
.elementor-button {
  font-family: var(--mog-font-body) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  border-radius: var(--mog-radius-md) !important;
  transition: all 0.2s ease !important;
}
.elementor-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--mog-shadow-md) !important;
}

/* Elementor image widget */
.elementor-widget-image img {
  border-radius: var(--mog-radius-md);
}

/* Elementor divider */
.elementor-divider-separator {
  border-color: var(--mog-gray-100);
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--mog-white);
  box-shadow: 0 1px 0 var(--mog-gray-100), 0 2px 16px rgba(11,61,107,0.06);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(11,61,107,0.12);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.site-branding { flex-shrink: 0; }
.site-branding a { display: block; }
.site-branding img { height: 48px; width: auto; display: block; }

/* Primary nav */
.primary-nav { flex: 1; }
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mog-gray-600);
  border-radius: var(--mog-radius-sm);
  transition: color 0.2s, background 0.2s;
}
.primary-nav ul li a:hover,
.primary-nav ul li.current-menu-item a {
  color: var(--mog-navy);
  background: var(--mog-navy-light);
}

/* Header CTA area */
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--mog-navy);
  text-decoration: none;
  white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-header {
  background: var(--mog-green);
  color: var(--mog-white) !important;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--mog-radius-md);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(42,140,92,0.25);
}
.btn-header:hover {
  background: var(--mog-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(42,140,92,0.35);
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--mog-gray-100);
  border-radius: var(--mog-radius-sm);
  padding: 7px 10px;
  cursor: pointer;
  color: var(--mog-navy);
  font-size: 18px;
  line-height: 1;
}

/* ============================================================
   ELEMENTOR CUSTOM CLASSES
   ============================================================
   These classes are designed to be applied inside Elementor
   via the Advanced > CSS Classes field on sections/columns/widgets.
   ============================================================ */

/* ── Section Backgrounds ──────────────────────────── */
.mog-bg-navy     { background: linear-gradient(160deg, var(--mog-navy) 0%, var(--mog-navy-mid) 100%) !important; }
.mog-bg-dark     { background: var(--mog-navy-dark) !important; }
.mog-bg-red      { background: var(--mog-red) !important; }
.mog-bg-light    { background: var(--mog-off-white) !important; }
.mog-bg-white    { background: var(--mog-white) !important; }
.mog-bg-navy-pattern {
  background-color: var(--mog-navy) !important;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 30px,
    rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px
  ) !important;
}

/* ── Hero Section ─────────────────────────────────── */
.mog-hero {
  background: linear-gradient(160deg, var(--mog-navy) 0%, var(--mog-navy-mid) 55%, #1B5EA0 100%);
  position: relative;
  overflow: hidden;
}
.mog-hero::before {
  content: '';
  position: absolute; top: -150px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.mog-hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,160,32,0.10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.mog-hero .elementor-heading-title { color: var(--mog-white) !important; }
.mog-hero .elementor-widget-text-editor p { color: rgba(255,255,255,0.82) !important; }

/* Hero eyebrow */
.mog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  display: inline-block;
}
.mog-eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--mog-green);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* Title gold highlight span */
.mog-hero .mog-text-gold,
.mog-text-gold { color: var(--mog-gold) !important; }
.mog-text-red   { color: var(--mog-red) !important; }
.mog-text-white { color: var(--mog-white) !important; }
.mog-text-navy  { color: var(--mog-navy) !important; }

/* ── Plan Search Form Card ────────────────────────── */
.mog-search-card {
  background: var(--mog-white);
  border-radius: var(--mog-radius-xl);
  padding: 40px 36px;
  box-shadow: var(--mog-shadow-xl);
  position: relative;
  z-index: 2;
}
.mog-search-card h3 {
  font-family: var(--mog-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--mog-navy);
  margin-bottom: 6px;
}
.mog-search-card .mog-card-sub {
  font-size: 14px;
  color: var(--mog-gray-300);
  margin-bottom: 28px;
}

/* Form elements inside Elementor */
.mog-search-card input[type="text"],
.mog-search-card input[type="tel"],
.mog-search-card select,
.elementor-field input,
.elementor-field select,
.elementor-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--mog-gray-100);
  border-radius: var(--mog-radius-md);
  font-size: 15px;
  font-family: var(--mog-font-body);
  color: var(--mog-gray-900);
  background: var(--mog-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.mog-search-card input:focus,
.mog-search-card select:focus,
.elementor-field input:focus,
.elementor-field select:focus {
  border-color: var(--mog-navy-mid);
  box-shadow: 0 0 0 3px rgba(26,92,154,0.12);
}
.mog-form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mog-gray-600);
  margin-bottom: 7px;
}
.mog-form-field { margin-bottom: 18px; }

/* Elementor Form widget overrides */
.elementor-form .elementor-field-label {
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: var(--mog-gray-600) !important;
}
.elementor-form .elementor-button {
  background: linear-gradient(135deg, var(--mog-green), var(--mog-green-dark)) !important;
  border: none !important;
  padding: 16px 32px !important;
  font-size: 16px !important;
  box-shadow: 0 4px 16px rgba(42,140,92,0.30) !important;
  width: 100% !important;
}

/* ── Buttons ──────────────────────────────────────── */
.mog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mog-font-body);
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--mog-radius-md);
  transition: all 0.2s ease;
  line-height: 1;
}
.mog-btn-lg { padding: 18px 36px; font-size: 16px; }
.mog-btn-md { padding: 13px 26px; font-size: 14px; }
.mog-btn-sm { padding: 9px 18px;  font-size: 13px; }

.mog-btn-green {
  background: linear-gradient(135deg, var(--mog-green), var(--mog-green-dark));
  color: var(--mog-white);
  box-shadow: 0 4px 16px rgba(42,140,92,0.30);
}
.mog-btn-green:hover { color: var(--mog-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,140,92,0.40); }

.mog-btn-navy {
  background: var(--mog-navy);
  color: var(--mog-white);
  box-shadow: 0 4px 16px rgba(11,61,107,0.25);
}
.mog-btn-navy:hover { color: var(--mog-white); background: var(--mog-navy-mid); transform: translateY(-2px); }

.mog-btn-red {
  background: var(--mog-red);
  color: var(--mog-white);
  box-shadow: 0 4px 16px rgba(200,16,46,0.25);
}
.mog-btn-red:hover { color: var(--mog-white); background: var(--mog-red-dark); transform: translateY(-2px); }

.mog-btn-outline-navy {
  background: transparent;
  color: var(--mog-navy);
  border: 2px solid var(--mog-navy);
}
.mog-btn-outline-navy:hover { background: var(--mog-navy); color: var(--mog-white); }

.mog-btn-outline-white {
  background: rgba(255,255,255,0.12);
  color: var(--mog-white);
  border: 2px solid rgba(255,255,255,0.35);
}
.mog-btn-outline-white:hover { background: rgba(255,255,255,0.22); color: var(--mog-white); }

.mog-btn-phone {
  background: var(--mog-white);
  color: var(--mog-navy);
  border: 2px solid var(--mog-navy);
  width: 100%;
}
.mog-btn-phone:hover { background: var(--mog-navy); color: var(--mog-white); }

/* ── Plan Cards ───────────────────────────────────── */
.mog-plan-card {
  background: var(--mog-white);
  border-radius: var(--mog-radius-lg);
  padding: 32px 28px;
  border: 2px solid var(--mog-gray-100);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  height: 100%;
}
.mog-plan-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mog-navy), var(--mog-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.mog-plan-card:hover {
  border-color: var(--mog-navy-mid);
  box-shadow: var(--mog-shadow-lg);
  transform: translateY(-6px);
}
.mog-plan-card:hover::before { transform: scaleX(1); }

.mog-plan-icon {
  width: 56px; height: 56px;
  border-radius: var(--mog-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.mog-plan-icon.blue   { background: var(--mog-navy-light); }
.mog-plan-icon.red    { background: var(--mog-red-light); }
.mog-plan-icon.gold   { background: var(--mog-gold-light); }
.mog-plan-icon.green  { background: var(--mog-green-light); }

.mog-plan-card h3 {
  font-family: var(--mog-font-display);
  font-size: 18px; font-weight: 700;
  color: var(--mog-navy); margin-bottom: 10px;
}
.mog-plan-card p { font-size: 14px; color: var(--mog-gray-600); line-height: 1.65; }

/* ── Badges ───────────────────────────────────────── */
.mog-badge {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-top: 16px;
}
.mog-badge-navy   { background: var(--mog-navy-light);  color: var(--mog-navy); }
.mog-badge-red    { background: var(--mog-red-light);   color: var(--mog-red-dark); }
.mog-badge-gold   { background: var(--mog-gold-light);  color: #7A5200; }
.mog-badge-green  { background: var(--mog-green-light); color: var(--mog-green-dark); }
.mog-badge-gray   { background: var(--mog-gray-50);     color: var(--mog-gray-600); border: 1px solid var(--mog-gray-100); }

/* ── Section Labels ───────────────────────────────── */
.mog-section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--mog-navy-mid);
  margin-bottom: 10px;
}
.mog-section-label-gold  { color: var(--mog-gold); }
.mog-section-label-red   { color: var(--mog-red); }
.mog-section-label-white { color: rgba(255,255,255,0.6); }

/* ── Trust / Stat Cards ───────────────────────────── */
.mog-stat-card {
  background: var(--mog-white);
  border-radius: var(--mog-radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--mog-shadow-md);
  border: 2px solid var(--mog-gray-50);
  transition: transform 0.25s, box-shadow 0.25s;
}
.mog-stat-card:hover { transform: translateY(-4px); box-shadow: var(--mog-shadow-lg); }
.mog-stat-number {
  font-family: var(--mog-font-display);
  font-size: 42px; font-weight: 900;
  color: var(--mog-navy);
  line-height: 1;
  margin: 12px 0 8px;
}
.mog-stat-number .accent { color: var(--mog-red); }
.mog-stat-label { font-size: 14px; color: var(--mog-gray-600); line-height: 1.55; }
.mog-stat-icon  { font-size: 32px; }

/* ── How It Works Steps ───────────────────────────── */
.mog-step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mog-navy), var(--mog-navy-mid));
  color: var(--mog-white);
  font-family: var(--mog-font-display);
  font-size: 28px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(11,61,107,0.25);
  position: relative; z-index: 1;
}
.mog-step { text-align: center; }
.mog-step h3 {
  font-family: var(--mog-font-display);
  font-size: 18px; font-weight: 700;
  color: var(--mog-navy); margin-bottom: 10px;
}
.mog-step p { font-size: 15px; color: var(--mog-gray-600); max-width: 240px; margin: 0 auto; }

/* ── Tool Cards (dark section) ────────────────────── */
.mog-tool-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--mog-radius-lg);
  padding: 36px 30px;
  transition: background 0.25s, transform 0.25s;
  height: 100%;
}
.mog-tool-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-5px);
}
.mog-tool-card .mog-tool-icon { font-size: 38px; margin-bottom: 18px; }
.mog-tool-card h3 { font-size: 19px; font-weight: 700; color: var(--mog-white); margin-bottom: 10px; }
.mog-tool-card p  { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.7; }
.mog-tool-steps   { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.mog-tool-steps li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.78);
}
.mog-tool-step-num {
  min-width: 22px; height: 22px; border-radius: 50%;
  background: var(--mog-green); color: var(--mog-white);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── FAQ Accordion ────────────────────────────────── */
.mog-faq-item {
  background: var(--mog-white);
  border-radius: var(--mog-radius-lg);
  border: 2px solid var(--mog-gray-100);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 12px;
}
.mog-faq-item:hover { border-color: var(--mog-navy-mid); box-shadow: var(--mog-shadow-sm); }
.mog-faq-item.open  { border-color: var(--mog-navy); box-shadow: var(--mog-shadow-md); }
.mog-faq-q {
  width: 100%; background: none; border: none;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left;
  font-family: var(--mog-font-body);
}
.mog-faq-q-text {
  font-size: 15px; font-weight: 600; color: var(--mog-navy); line-height: 1.5;
}
.mog-faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--mog-navy-light);
  color: var(--mog-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.mog-faq-item.open .mog-faq-icon {
  transform: rotate(45deg);
  background: var(--mog-navy);
  color: var(--mog-white);
}
.mog-faq-a {
  padding: 0 28px;
  font-size: 14px; color: var(--mog-gray-600); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.mog-faq-item.open .mog-faq-a {
  max-height: 400px;
  padding: 0 28px 22px;
}

/* ── Enrollment Period Cards ──────────────────────── */
.mog-period-card {
  border-radius: var(--mog-radius-lg);
  padding: 32px;
  position: relative; overflow: hidden;
  height: 100%;
}
.mog-period-card.primary {
  background: linear-gradient(145deg, var(--mog-navy), var(--mog-navy-mid));
}
.mog-period-card.secondary { background: var(--mog-navy-light); border: 2px solid var(--mog-gray-100); }
.mog-period-card.tertiary  { background: var(--mog-green-light); border: 2px solid rgba(42,140,92,0.2); }

.mog-period-dates {
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.mog-period-card.primary   .mog-period-dates { color: var(--mog-gold); }
.mog-period-card.secondary .mog-period-dates { color: var(--mog-navy-mid); }
.mog-period-card.tertiary  .mog-period-dates { color: var(--mog-green-dark); }

.mog-period-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.mog-period-card.primary   h3 { color: var(--mog-white); }
.mog-period-card.secondary h3,
.mog-period-card.tertiary  h3 { color: var(--mog-navy); }

.mog-period-card p { font-size: 14px; line-height: 1.7; }
.mog-period-card.primary   p { color: rgba(255,255,255,0.80); }
.mog-period-card.secondary p,
.mog-period-card.tertiary  p { color: var(--mog-gray-600); }

/* ── Savings Banner ───────────────────────────────── */
.mog-savings-banner {
  background: linear-gradient(135deg, var(--mog-green-light), #C8EDDA);
  border-top: 3px solid rgba(42,140,92,0.18);
  border-bottom: 3px solid rgba(42,140,92,0.18);
  padding: 28px 32px;
}
.mog-savings-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.mog-savings-amount {
  font-family: var(--mog-font-display);
  font-size: 36px; font-weight: 900;
  color: var(--mog-green-dark); white-space: nowrap;
}
.mog-savings-text strong {
  display: block; font-size: 17px; font-weight: 700; color: var(--mog-navy);
}
.mog-savings-text span { font-size: 14px; color: var(--mog-gray-600); }

/* ── Carrier Logo Strip ───────────────────────────── */
.mog-carrier-strip {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.mog-carrier-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.85);
  font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 8px; letter-spacing: 0.5px;
}

/* ── Trust Badges Strip ───────────────────────────── */
.mog-form-badges {
  display: flex; justify-content: center; gap: 18px;
  margin-top: 22px; flex-wrap: wrap;
}
.mog-form-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--mog-gray-300); font-weight: 500;
}
.mog-form-badge-check { font-size: 13px; color: var(--mog-green); font-weight: 700; }

/* ── Media Logos Strip ────────────────────────────── */
.mog-media-strip { text-align: center; margin-top: 56px; }
.mog-media-strip-label {
  display: block;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--mog-gray-300); margin-bottom: 20px;
}
.mog-media-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.mog-media-logo {
  font-family: var(--mog-font-display);
  font-size: 17px; font-weight: 700;
  color: var(--mog-gray-300); opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s, color 0.2s;
}
.mog-media-logo:hover { opacity: 1; filter: none; color: var(--mog-navy); }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--mog-navy-dark);
  color: rgba(255,255,255,0.65);
}
.footer-top {
  max-width: 1200px; margin: 0 auto;
  padding: 56px 32px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-desc { font-size: 14px; line-height: 1.75; max-width: 300px; margin-top: 16px; }
.footer-phone-link {
  display: flex; align-items: center; gap: 8px;
  color: var(--mog-white); font-size: 17px; font-weight: 700;
  text-decoration: none; margin-top: 20px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,0.40); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.60); font-size: 14px;
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--mog-white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copyright { font-size: 13px; }
.footer-badges { display: flex; gap: 10px; }
.footer-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 5px 12px;
  font-size: 10px; font-weight: 800;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.8px;
}
.footer-disclaimer {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 32px 32px;
  font-size: 11px; color: rgba(255,255,255,0.27);
  line-height: 1.75; border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Final CTA Section ────────────────────────────── */
.mog-cta-section {
  background: linear-gradient(135deg, var(--mog-navy) 0%, #1B5EA0 100%);
  text-align: center; padding: 100px 32px;
  position: relative; overflow: hidden;
}
.mog-cta-section::before {
  content: '';
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,16,46,0.12) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.mog-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.mog-cta-inner h2 {
  font-family: var(--mog-font-display);
  font-size: 46px; color: var(--mog-white); font-weight: 700;
  line-height: 1.2; margin-bottom: 20px;
}
.mog-cta-disclaimer { margin-top: 28px; font-size: 12px; color: rgba(255,255,255,0.42); }

/* ── Elementor Section Padding Helpers ────────────── */
.mog-section-xl  { padding: 100px 0 !important; }
.mog-section-lg  { padding: 80px 0 !important; }
.mog-section-md  { padding: 60px 0 !important; }
.mog-section-sm  { padding: 40px 0 !important; }

/* ── Animations ───────────────────────────────────── */
@keyframes mog-float-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mog-animate-in { animation: mog-float-in 0.65s cubic-bezier(0.22,1,0.36,1) both; }
.mog-delay-1    { animation-delay: 0.1s; }
.mog-delay-2    { animation-delay: 0.2s; }
.mog-delay-3    { animation-delay: 0.3s; }

/* ── Scroll Reveal (JS-triggered) ────────────────── */
.mog-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.mog-reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .mog-hero .elementor-heading-title { font-size: 34px !important; }
  .mog-cta-inner h2 { font-size: 34px; }
}
@media (max-width: 768px) {
  .primary-nav, .header-cta .btn-header { display: none; }
  .mobile-menu-toggle { display: block; }
  .header-phone { font-size: 13px; }
  .header-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .mog-search-card { padding: 28px 22px; }
  .mog-section-xl { padding: 72px 0 !important; }
  .mog-section-lg { padding: 60px 0 !important; }
}
@media (max-width: 480px) {
  .mog-stat-number { font-size: 34px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
