/* ==========================================================================
   GERMAN GURU (germanguru.co.in) - MASTER DESIGN SYSTEM & CORE STYLESHEET
   Unique Brand Identity: Deep Maritime Navy, Oceanic Wave Blue, German Tricolor
   Cross-Browser & Fully Responsive (Desktop, Laptop, Tablet, Mobile)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand Master Palette */
  --navy-950: #060e1a;
  --navy-900: #081528;
  --navy-850: #0b1f3a; /* Primary Brand Navy */
  --navy-800: #102a4e;
  --navy-700: #173866;
  --navy-600: #204b85;

  /* Wave / Oceanic Blue Palette */
  --ocean-blue: #0088e8; /* Signature Wave Cyan-Blue */
  --ocean-dark: #006dc0;
  --ocean-light: #38bdf8;
  --ocean-glow: rgba(0, 136, 232, 0.35);
  --ocean-subtle: #e0f2fe;

  /* German Federal Accent Tricolor */
  --german-gold: #f59e0b; /* Bundesflagge Gold */
  --german-gold-hover: #d97706;
  --german-gold-subtle: #fef3c7;
  --german-gold-glow: rgba(245, 158, 11, 0.4);

  --german-red: #dc2626; /* Bundesflagge Red */
  --german-red-hover: #b91c1c;
  --german-red-subtle: #fee2e2;

  --german-black: #0f172a;

  /* Neutrals & Slate */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --border-light: #e2e8f0;
  --border-focus: #0088e8;

  /* Dimensions & Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(11, 31, 58, 0.05);
  --shadow-sm: 0 3px 8px rgba(11, 31, 58, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.12);
  --shadow-lg: 0 16px 40px rgba(11, 31, 58, 0.16);
  --shadow-glow-blue: 0 8px 30px rgba(0, 136, 232, 0.28);
  --shadow-glow-gold: 0 8px 30px rgba(245, 158, 11, 0.3);

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   CSS RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* Space for mobile sticky bottom action bar */
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  color: var(--navy-850);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.015em;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--ocean-blue);
  text-decoration: none;
  transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

a:hover {
  color: var(--ocean-dark);
}

ul, ol {
  list-style: none;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 640px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-850) 100%);
  color: #e2e8f0;
  font-size: 0.84rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1020;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  gap: 1.5rem;
}

.top-bar-marquee {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  display: flex;
  align-items: center;
}

.marquee-content {
  display: inline-flex;
  gap: 2.5rem;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.top-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #f8fafc;
}

.top-tag .badge-pill {
  background: var(--german-gold);
  color: var(--navy-950);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.top-bar-contacts a {
  color: #f1f5f9;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.top-bar-contacts a:hover {
  color: var(--german-gold);
}

.top-bar-contacts .wa-link {
  color: #34d399;
}

.top-bar-contacts .wa-link:hover {
  color: #6ee7b7;
}

.top-bar-contacts .insta-link {
  color: #f472b6;
}

.top-bar-contacts .insta-link:hover {
  color: #fb7185;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .top-bar-contacts {
    display: none;
  }
}

/* ==========================================================================
   MAIN NAVIGATION HEADER
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: box-shadow var(--transition-normal), background var(--transition-normal);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  background: #ffffff;
  border: 2px solid var(--ocean-subtle);
  box-shadow: 0 2px 10px rgba(0, 136, 232, 0.2);
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05) rotate(-3deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--navy-850);
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.brand-title span.guru {
  color: var(--ocean-blue);
  position: relative;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-500);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-700);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--ocean-blue);
  background-color: rgba(0, 136, 232, 0.06);
}

.nav-link.active {
  color: var(--ocean-blue);
  font-weight: 700;
  background-color: rgba(0, 136, 232, 0.08);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2.5px;
  background: var(--ocean-blue);
  border-radius: var(--radius-full);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.phone-quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  color: var(--ocean-blue);
  border: 1.5px solid var(--slate-200);
  background: var(--slate-50);
  transition: var(--transition-fast);
  text-decoration: none;
  flex-shrink: 0;
}

.phone-quick-btn:hover {
  border-color: var(--ocean-blue);
  color: #ffffff;
  background: var(--ocean-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 136, 232, 0.25);
}

.phone-quick-btn:hover i {
  color: #ffffff;
}

.phone-quick-btn i {
  color: var(--ocean-blue);
  transition: var(--transition-fast);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--slate-100);
  color: var(--navy-850);
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.mobile-toggle:hover {
  background: var(--slate-200);
}

@media (max-width: 1040px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .phone-quick-btn {
    display: inline-flex;
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 1100;
  box-shadow: -6px 0 30px rgba(11, 31, 58, 0.2);
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 1.5rem;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--slate-700);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--slate-800);
  font-size: 1.05rem;
}

.drawer-nav-link.active, .drawer-nav-link:hover {
  color: var(--ocean-blue);
  background: var(--ocean-subtle);
}

.drawer-nav-link i {
  width: 22px;
  text-align: center;
  color: var(--ocean-blue);
}

.drawer-contacts {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.4rem;
  font-size: 0.96rem;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.55rem 1.05rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.95rem 1.8rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 136, 232, 0.35);
}

.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
}

.btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, var(--german-gold) 50%, var(--german-gold-hover) 100%);
  color: var(--navy-950);
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  color: var(--navy-950);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}

.btn-dark {
  background: var(--navy-850);
  color: #ffffff;
}

.btn-dark:hover {
  background: var(--navy-900);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--ocean-blue);
  color: var(--ocean-blue);
  background: transparent;
}

.btn-outline:hover {
  background: var(--ocean-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: transparent;
}

.btn-outline-white:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   BADGES, TAGS & LABELS
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-blue {
  background: var(--ocean-subtle);
  color: var(--ocean-dark);
}

.badge-gold {
  background: var(--german-gold-subtle);
  color: #92400e;
}

.badge-red {
  background: var(--german-red-subtle);
  color: var(--german-red);
}

.badge-navy {
  background: rgba(11, 31, 58, 0.1);
  color: var(--navy-850);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--ocean-subtle);
  color: var(--ocean-blue);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(0, 136, 232, 0.2);
}

.section-tag-gold {
  background: var(--german-gold-subtle);
  color: #b45309;
  border-color: rgba(245, 158, 11, 0.3);
}

.section-tag-white {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--navy-850);
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

@media (max-width: 768px) {
  .section-title {
    font-size: 1.85rem;
  }
  .section-subtitle {
    font-size: 0.98rem;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }
}

/* German Flag Tricolor Strip Line */
.german-tricolor-line {
  display: flex;
  height: 4px;
  width: 100%;
}

.german-tricolor-line span {
  flex: 1;
}

.german-tricolor-line .c-black { background: #000000; }
.german-tricolor-line .c-red { background: #dd0000; }
.german-tricolor-line .c-gold { background: #ffce00; }

/* ==========================================================================
   PAGE SUB-HERO BANNER (FOR INNER PAGES)
   ========================================================================== */
.page-hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #173866 0%, var(--navy-850) 50%, var(--navy-950) 100%);
  color: #ffffff;
  padding: 4.5rem 0 4rem 0;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 136, 232, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #94a3b8;
}

.page-hero .breadcrumb a {
  color: #cbd5e1;
}

.page-hero .breadcrumb a:hover {
  color: var(--german-gold);
}

.page-hero .breadcrumb span {
  color: #64748b;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.page-hero p {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 720px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 3rem 0 2.5rem 0;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
  .page-hero p {
    font-size: 1rem;
  }
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */
.footer {
  background: var(--navy-950);
  color: #cbd5e1;
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.footer-top-cta {
  background: linear-gradient(135deg, var(--navy-850) 0%, var(--navy-900) 100%);
  border: 1px solid rgba(0, 136, 232, 0.2);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin-bottom: 4.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-top-cta h3 {
  color: #ffffff;
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.footer-top-cta p {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 600px;
}

.footer-top-cta .cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-brand .brand-logo-img {
  width: 60px;
  height: 60px;
  background: #ffffff;
}

.footer-brand .brand-title {
  color: #ffffff;
  font-size: 1.55rem;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.94rem;
  line-height: 1.7;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--ocean-blue);
  color: #ffffff;
  transform: translateY(-3px);
}

.social-icon.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--german-gold);
  border-radius: var(--radius-full);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--ocean-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: #94a3b8;
  font-size: 0.92rem;
}

.footer-contact-item i {
  color: var(--ocean-light);
  font-size: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #cbd5e1;
  font-weight: 600;
}

.footer-contact-item a:hover {
  color: var(--german-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: #64748b;
}

.footer-bottom a {
  color: #94a3b8;
}

.footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-top-cta {
    padding: 2rem 1.5rem;
  }
  .footer-top-cta h3 {
    font-size: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   FLOATING ACTION BUTTONS & MOBILE STICKY BOTTOM BAR
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  z-index: 990;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.45rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.08);
  color: #ffffff;
}

.floating-wa {
  background: #25d366;
}

.floating-wa:hover {
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.floating-call {
  background: var(--ocean-blue);
}

.floating-call:hover {
  box-shadow: 0 10px 28px rgba(0, 136, 232, 0.5);
}

/* Mobile Sticky Bottom Bar (Screens <= 768px) */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 -4px 18px rgba(11, 31, 58, 0.1);
  padding: 0.65rem 1rem;
  z-index: 999;
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mobile-bottom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

.btn-m-call {
  background: var(--navy-850);
  color: #ffffff;
}

.btn-m-wa {
  background: #25d366;
  color: #ffffff;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: block;
  }
  .floating-actions {
    display: none; /* Replaced by bottom bar on mobile to avoid overlap */
  }
}
