/*
Theme Name: GoFormed Modern Premium
Author: GoFormed Ultra
Description: Obsidian & Liquid Gold Design System (Glassmorphic, Fluid, High-Performance)
Version: 6.0.0
*/

/* ═══════════════════════════════════════════════════════════
   1. GLOBAL TOKENS & TYPOGRAPHY
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Obsidian Palette */
  --obsidian-900: #030509;
  --obsidian-800: #080C16;
  --obsidian-700: #0D1424;
  --obsidian-600: #151F33;
  
  /* Liquid Gold Palette */
  --gold-core: #C99A52;
  --gold-glow: #FFDF73;
  --gold-deep: #9B702D;
  --gold-subtle: rgba(201, 154, 82, 0.15);
  
  /* Text Colors */
  --text-pure: #FFFFFF;
  --text-bright: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dark: #000000;
  
  /* Surfaces & Glass */
  --surface-1: rgba(13, 20, 36, 0.6);
  --surface-2: rgba(21, 31, 51, 0.4);
  --glass-blur: blur(20px);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(201, 154, 82, 0.3);
  
  /* Accents */
  --accent-green: #10B981;
  --accent-green-glow: rgba(16, 185, 129, 0.2);
  
  /* Typography */
  --font-display: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  
  /* System */
  --max-w: 1240px;
  --t-fast: 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-base: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 999px;
  
  /* Shadows */
  --shadow-glow: 0 0 40px rgba(201, 154, 82, 0.15);
  --shadow-drop: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   2. RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0; padding: 0;
  background-color: var(--obsidian-900);
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-pure);
  margin: 0 0 0.8em;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1.5em; font-size: 1.05rem; }
a { color: var(--gold-core); text-decoration: none; transition: all var(--t-fast); }
a:hover { color: var(--gold-glow); text-shadow: 0 0 10px var(--gold-subtle); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1.5em; padding-left: 1.5em; }

/* ═══════════════════════════════════════════════════════════
   3. LAYOUT & UTILITIES
═══════════════════════════════════════════════════════════ */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.section { padding: 96px 0; position: relative; overflow: hidden; }
.section-sm { padding: 48px 0; }

/* We force surface classes to be transparent/glassy on top of obsidian body */
.bg-surface, .bg-white { background: transparent; border-top: 1px solid var(--border-subtle); }
.bg-surface-2, .bg-cream-alt { background: var(--obsidian-800); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.bg-dark, .bg-navy { background: radial-gradient(circle at 50% 0%, var(--obsidian-700), var(--obsidian-900)); }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }

@media (max-width: 992px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 64px 0; }
}

.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ═══════════════════════════════════════════════════════════
   4. GOLD TEXT & HEADINGS
═══════════════════════════════════════════════════════════ */
.text-gold {
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold-core) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(255, 223, 115, 0.1);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-pure);
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: ''; display: block; width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--gold-core), var(--gold-glow));
  margin-top: 12px; border-radius: 2px;
  box-shadow: 0 0 10px var(--gold-subtle);
}
.text-center .section-title::after { margin-left: auto; margin-right: auto; }
.lead { font-size: 1.25rem; font-weight: 300; line-height: 1.8; color: var(--text-bright); }

/* ═══════════════════════════════════════════════════════════
   5. GLOWING BUTTONS & PILLS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: var(--r-full);
  cursor: pointer; text-transform: uppercase; letter-spacing: 1px;
  transition: all var(--t-fast); border: none; outline: none;
  text-decoration: none; position: relative; overflow: hidden;
  z-index: 1;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-core), var(--gold-glow));
  color: var(--obsidian-900) !important;
  box-shadow: 0 10px 20px rgba(201, 154, 82, 0.2);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 223, 115, 0.3);
  background: linear-gradient(135deg, var(--gold-glow), var(--gold-core));
}

.btn-outline, .btn-navy {
  background: var(--surface-1);
  color: var(--text-pure) !important;
  border: 1px solid var(--border-gold);
  backdrop-filter: var(--glass-blur);
}
.btn-outline:hover, .btn-navy:hover {
  background: var(--gold-subtle);
  border-color: var(--gold-core);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}
.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.35);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.75rem; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 6px 14px; border-radius: var(--r-full);
}
.pill-gold { background: var(--gold-subtle); color: var(--gold-glow); border: 1px solid var(--border-gold); }
.pill-green { background: var(--accent-green-glow); color: var(--accent-green); border: 1px solid rgba(16, 185, 129, 0.3); }

/* ═══════════════════════════════════════════════════════════
   6. HEADER & NAVIGATION (Glassmorphic)
═══════════════════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(3, 5, 9, 0.7);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--t-fast);
}
#site-header.scrolled {
  background: rgba(3, 5, 9, 0.95);
  border-bottom-color: var(--border-gold);
  box-shadow: var(--shadow-drop);
}
.header-wrapper {
  display: flex; justify-content: space-between; align-items: center;
  height: 90px;
}
.site-logo { display: flex; align-items: center; gap: 14px; }
.logo-img { height: 48px; width: 48px; border-radius: 50%; filter: drop-shadow(0 0 12px rgba(255,223,115,0.4)); }
.logo-text { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; }
.logo-text span {
  background: linear-gradient(135deg, #fff 30%, var(--gold-core));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  color: var(--text-bright); font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem; text-transform: uppercase;
  letter-spacing: 1px; position: relative; padding: 8px 0;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-core), var(--gold-glow));
  transition: width var(--t-fast);
}
.main-nav a:hover { color: var(--gold-glow); }
.main-nav a:hover::after { width: 100%; box-shadow: 0 0 10px var(--gold-subtle); }

.mobile-menu-btn { display: none; background: transparent; border: 1px solid var(--border-subtle); color: var(--text-pure); font-size: 1.5rem; width: 44px; height: 44px; border-radius: var(--r-sm); cursor: pointer; }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; top: 90px; left: 0; right: 0; background: var(--obsidian-900);
    flex-direction: column; padding: 32px; border-bottom: 1px solid var(--border-gold);
    box-shadow: var(--shadow-drop); display: none; gap: 24px;
  }
  .main-nav.active { display: flex; animation: slideDown 0.3s ease forwards; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .header-actions { display: none; }
}

@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════════════
   7. HERO SECTIONS (Page & SEO)
═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 200px 0 100px;
  background: var(--obsidian-900);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: 
    radial-gradient(circle at 50% 0%, rgba(201,154,82,0.15) 0%, transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(13,20,36,0.8) 0%, transparent 60%);
  pointer-events: none; z-index: 1;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none; opacity: 0.5; z-index: 1;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted); margin-bottom: 32px;
  background: var(--surface-1); padding: 8px 24px; border-radius: var(--r-full); border: 1px solid var(--border-subtle);
  backdrop-filter: var(--glass-blur);
}
.breadcrumb a { color: var(--text-bright); }
.breadcrumb a:hover { color: var(--gold-glow); }

.same-day-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-green); font-family: var(--font-display); font-weight: 700;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
  padding: 8px 16px; border-radius: var(--r-full); margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #A0AABF 100%);
  -webkit-background-clip: text; color: transparent;
}
.page-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 300; color: var(--text-bright); max-width: 800px; margin: 0 auto 40px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   8. TRUST BAR (Sleek Glass Version)
═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--obsidian-800);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
  position: relative; z-index: 5;
}
.trust-bar-inner {
  display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: var(--text-bright); text-transform: uppercase; letter-spacing: 0.5px;
}
.trust-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-glow); font-size: 1.1rem;
  box-shadow: inset 0 0 10px rgba(201,154,82,0.1);
}
.trust-divider { width: 1px; height: 28px; background: var(--border-subtle); }

@media (max-width: 768px) {
  .trust-bar-inner { gap: 20px; justify-content: flex-start; }
  .trust-item { width: calc(50% - 10px); }
  .trust-divider { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   9. CARDS (Features, Packages, Services)
═══════════════════════════════════════════════════════════ */
.service-card, .package-box, .sidebar-box, .info-box {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  backdrop-filter: var(--glass-blur);
  transition: all var(--t-base);
  position: relative; overflow: hidden;
}
.service-card::before, .package-box::before, .sidebar-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-core), transparent);
  opacity: 0; transition: opacity var(--t-base);
}
.service-card:hover, .package-box:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(201,154,82,0.1);
  background: rgba(21, 31, 51, 0.7);
}
.service-card:hover::before, .package-box:hover::before { opacity: 1; }

.service-icon {
  width: 64px; height: 64px; border-radius: var(--r-md);
  background: var(--surface-2); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 24px; color: var(--gold-glow);
  box-shadow: inset 0 0 20px rgba(201,154,82,0.1);
}

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px;
  font-size: 1.05rem; color: var(--text-bright); border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
}
.feature-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.feature-check {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  background: var(--accent-green-glow); border: 1px solid var(--accent-green);
  color: var(--accent-green); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: bold;
}

.package-list { list-style: none; padding: 0; margin: 0 0 24px; }
.package-list li {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px;
  font-size: 0.95rem; color: var(--text-muted);
}
.package-list li::before { content: '✓'; color: var(--accent-green); font-weight: bold; }

.info-box { padding: 24px; margin-bottom: 24px; border-left: 4px solid var(--gold-core); }
.info-box.info-gold { background: rgba(201, 154, 82, 0.05); }
.info-box.info-green { background: rgba(16, 185, 129, 0.05); border-left-color: var(--accent-green); }
.info-box h3, .info-box h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-pure); }
.info-box p { margin: 0; font-size: 0.95rem; }

/* ═══════════════════════════════════════════════════════════
   10. TABLES (Obsidian & Gold)
═══════════════════════════════════════════════════════════ */
.company-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-drop);
  background: var(--obsidian-900);
}
.company-table {
  width: 100%; border-collapse: collapse; text-align: left;
}
.company-table thead {
  background: var(--obsidian-800);
  border-bottom: 2px solid var(--border-gold);
}
.company-table th {
  padding: 24px 20px; font-family: var(--font-display); font-size: 0.85rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-bright); white-space: nowrap;
}
.company-table th:first-child { color: var(--gold-glow); }
.company-table td {
  padding: 20px; border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle; color: var(--text-muted); font-size: 0.95rem;
  transition: background var(--t-fast);
}
.company-table tbody tr:hover td {
  background: rgba(201, 154, 82, 0.05);
  color: var(--text-pure);
}
.company-table tbody tr:last-child td { border-bottom: none; }
.company-name {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--text-pure); display: block; margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════════════════
   11. TABS (Glass Line Style)
═══════════════════════════════════════════════════════════ */
.tab-nav {
  display: flex; gap: 8px; overflow-x: auto; border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 32px; padding-bottom: 8px;
}
.tab-btn {
  background: transparent; border: 1px solid transparent;
  color: var(--text-muted); font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 12px 24px; border-radius: var(--r-full);
  cursor: pointer; transition: all var(--t-fast); white-space: nowrap;
}
.tab-btn:hover { color: var(--text-pure); background: var(--surface-1); }
.tab-btn.active {
  background: var(--gold-subtle); color: var(--gold-glow);
  border-color: var(--border-gold); box-shadow: 0 0 20px rgba(201,154,82,0.1);
}
.tab-pane { display: none; animation: fadeIn var(--t-base); }
.tab-pane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════════════
   12. FAQ (Accordion)
═══════════════════════════════════════════════════════════ */
.faq-wrap { border: 1px solid var(--border-subtle); border-radius: var(--r-lg); overflow: hidden; background: var(--surface-1); }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 24px 32px; font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 600; color: var(--text-pure); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: all var(--t-fast);
}
.faq-question:hover { background: rgba(255,255,255,0.02); color: var(--gold-glow); }
.faq-question.open { background: rgba(201,154,82,0.05); border-bottom: 1px solid var(--border-subtle); }
.faq-icon { font-size: 1.5rem; color: var(--gold-core); transition: transform var(--t-fast); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; padding: 0 32px;
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer.open { max-height: 1000px; padding: 24px 32px; }

/* ═══════════════════════════════════════════════════════════
   13. FORMS & INPUTS
═══════════════════════════════════════════════════════════ */
input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%; background: var(--obsidian-900); border: 1px solid var(--border-subtle);
  color: var(--text-pure); font-family: var(--font-body); font-size: 1rem;
  padding: 16px 20px; border-radius: var(--r-md); transition: all var(--t-fast);
}
input:focus, textarea:focus {
  outline: none; border-color: var(--gold-core);
  box-shadow: 0 0 0 4px rgba(201,154,82,0.15); background: var(--obsidian-800);
}
.form-group label {
  display: block; font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--text-bright); margin-bottom: 8px;
}

/* Popup Overlay styling */
.gf-popup-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(3,5,9,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.gf-popup-box {
  background: var(--obsidian-800); border: 1px solid var(--border-gold);
  border-radius: var(--r-xl); padding: 48px; width: 100%; max-width: 600px;
  position: relative; box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  border-top: 4px solid var(--gold-core);
}
.gf-popup-close {
  position: absolute; top: 24px; right: 24px; background: var(--surface-2);
  border: 1px solid var(--border-subtle); color: var(--text-pure);
  width: 44px; height: 44px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 1.5rem;
  cursor: pointer; transition: all var(--t-fast);
}
.gf-popup-close:hover { background: var(--gold-core); color: #000; border-color: var(--gold-glow); transform: rotate(90deg); }

/* ═══════════════════════════════════════════════════════════
   14. FOOTER & CTA STRIP
═══════════════════════════════════════════════════════════ */
.cta-strip {
  background: linear-gradient(135deg, var(--obsidian-800) 0%, var(--obsidian-900) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-subtle);
  padding: 96px 20px; text-align: center; position: relative; overflow: hidden;
}
.cta-strip::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(201,154,82,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-strip h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.cta-strip p { font-size: 1.15rem; color: var(--text-bright); max-width: 600px; margin: 0 auto 32px; }

#site-footer {
  background: var(--obsidian-900); padding: 96px 0 0;
  border-top: 1px solid var(--border-subtle); position: relative;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 64px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.footer-logo-img { height: 48px; width: 48px; }
.footer-logo-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--text-pure); }
.footer-about p { color: var(--text-muted); font-size: 0.95rem; }
.footer-heading { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-pure); margin-bottom: 24px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '›'; color: var(--gold-core); font-size: 1.2rem; }
.footer-links a:hover { color: var(--gold-glow); transform: translateX(5px); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.footer-contact-icon { width: 40px; height: 40px; min-width: 40px; border-radius: var(--r-sm); background: var(--surface-2); border: 1px solid var(--border-gold); color: var(--gold-glow); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }

.footer-bottom { border-top: 1px solid var(--border-subtle); padding: 24px 0; background: rgba(0,0,0,0.4); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom-left { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-right { color: rgba(255,255,255,0.3); font-size: 0.8rem; text-align: right; max-width: 500px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-bottom-right { text-align: center; max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   15. FLOATING ELEMENTS & ACCESSIBILITY
═══════════════════════════════════════════════════════════ */
.float-whatsapp {
  position: fixed; bottom: 32px; right: 32px; z-index: 8000;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #059669); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  transition: all var(--t-fast);
}
.float-whatsapp:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6); }

input:focus-visible, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--gold-core); outline-offset: 4px; border-radius: 2px;
}
