/*
 Theme Name:   Child Alpha Public Adjuster Theme
 Theme URI:    https://alphapublicadjuster.com
 Description:  Custom child theme for Alpha Public Adjuster - Premium Luxury Design System
 Author:       Alpha PA Team
 Author URI:   https://alphapublicadjuster.com
 Template:     blocksy
 Version:      1.4.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  child-alpha-public-adjuster
*/

/* ============================================
   HEADER - HIDE BLOCKSY ON ALL PAGES
   ============================================ */
/* Force hide ALL header elements except ours */
#site-header,
header[class*="header"],
[data-id="header"],
.site-header,
.ct-header,
.header-wrap,
.ct-sticky-header,
.ct-header-wrap {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Force show our custom header on ALL pages - use specificity boost */
html body #apa-header,
html body .apa-header,
body #apa-header,
body .apa-header,
#apa-header,
.apa-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    height: 90px !important;
    overflow: visible !important;
}

/* ============================================
   CSS VARIABLES - PREMIUM LUXURY SYSTEM
   ============================================ */

:root {
  /* Brand Colors - Sofisticado tipo bufete legal */
  --apa-gold: #9A7D18;
  --apa-gold-hover: #9A7D18;
  --apa-gold-light: #D4B84A;
  --apa-gold-dark: #8A7314;
  --apa-gold-glow: rgba(184, 148, 29, 0.25);
  --apa-gold-subtle: rgba(184, 148, 29, 0.08);
  --apa-gold-glow-shadow: 0 0 20px rgba(184, 148, 29, 0.3);

  /* Surface Colors */
  --apa-dark: #0A0A0A;
  --apa-dark-elevated: #141414;
  --apa-dark-card: #1E1E1E;
  --apa-ivory: #F5F0E8;
  --apa-ivory-dark: #EDE7DC;
  --apa-light: #FFFFFF;
  --apa-charcoal: #6B6B6B;

  /* Text Colors */
  --apa-text-dark: #0A0A0A;
  --apa-text-light: #FFFFFF;
  --apa-text-muted-dark: #5A5A5A;
  --apa-text-muted-light: #6B6B6B;
  --apa-text-ivory-muted: rgba(245, 240, 232, 0.7);

  /* Border Colors */
  --apa-border-subtle-light: rgba(10, 10, 10, 0.08);
  --apa-border-subtle-dark: rgba(255, 255, 255, 0.1);
  --apa-border-medium-light: rgba(10, 10, 10, 0.12);
  --apa-border-strong-light: #0A0A0A;
  --apa-border-strong-dark: #B8941D;
  --apa-border-gold: rgba(184, 148, 29, 0.4);
  --apa-border-charcoal: rgba(90, 90, 90, 0.15);

  /* Geometry - Sharp professional */
  --apa-radius: 0px;
  --apa-radius-sm: 0px;
  --apa-radius-md: 4px;
  --apa-radius-lg: 4px;
  --apa-grid-gap: 0px;
  --apa-stroke: 1px;

  /* Premium Shadows - Soft depth */
  --apa-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --apa-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --apa-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --apa-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --apa-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --apa-shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --apa-shadow-card-hover: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
  --apa-shadow-gold: 0 0 30px rgba(184, 148, 29, 0.2);
  
  /* Gold Glow */
  --apa-glow-gold: 0 0 30px rgba(184, 148, 29, 0.4);
  --apa-glow-gold-intense: 0 0 60px rgba(184, 148, 29, 0.5);
  
  /* Inner Glow for dark surfaces */
  --apa-inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --apa-inner-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);

  /* Transitions */
  --apa-transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --apa-transition-slow: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --apa-transition-medium: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --apa-transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --apa-transition-elegant: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Typography - Manrope + Newsreader */
  --apa-font-display: 'Newsreader', Georgia, serif;
  --apa-font-body: 'Manrope', 'Helvetica Neue', sans-serif;
  
  /* Font Weights */
  --apa-font-weight-light: 300;
  --apa-font-weight-regular: 400;
  --apa-font-weight-medium: 500;
  --apa-font-weight-semibold: 600;
  --apa-font-weight-bold: 700;

  /* Container - Tighter widths */
  --apa-container-nav: 80rem;
  --apa-container-hero: 56rem;
  --apa-container-lg: 72rem;
  --apa-container-md: 64rem;
  --apa-container-sm: 48rem;
  --apa-container-padding: clamp(1.5rem, 5vw, 3rem);

  /* Z-Index Scale */
  --apa-z-base: 1;
  --apa-z-dropdown: 100;
  --apa-z-sticky: 500;
  --apa-z-modal: 1000;
  --apa-z-overlay: 900;
}

/* ============================================
   BASE RESET & TYPOGRAPHY - PREMIUM
   ============================================ */

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--apa-font-body);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--apa-text-dark);
  background-color: var(--apa-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Headings - Display Serif Premium */
h1, h2, h3, h4, h5, h6,
.entry-title, .page-title {
  font-family: var(--apa-font-display);
  font-weight: var(--apa-font-weight-regular);
  color: var(--apa-text-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}

/* H1 - Hero Style (Italic) */
h1, .h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: var(--apa-font-weight-regular);
  font-style: italic;
}

h2, .h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: var(--apa-font-weight-regular);
}

h3, .h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0;
}

h4, .h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.3;
}

/* Paragraph Styles */
p {
  margin-bottom: 1.5rem;
  max-width: 65ch;
  font-weight: var(--apa-font-weight-light);
}

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

/* Technical Labels - Uppercase Sans Premium */
.apa-eyebrow,
.apa-label-technical,
[class*="eyebrow"],
[class*="badge"],
.uppercase {
  font-family: var(--apa-font-body);
  font-size: 0.65rem;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: var(--apa-font-weight-bold);
}

/* Premium Links */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--apa-transition-elegant);
}

a:hover {
  color: var(--apa-gold);
}

/* Premium Selection */
::selection {
  background: var(--apa-gold);
  color: var(--apa-dark);
}

::-moz-selection {
  background: var(--apa-gold);
  color: var(--apa-dark);
}

/* Premium Focus States */
:focus-visible {
  outline: 2px solid var(--apa-gold);
  outline-offset: 3px;
}

/* Diamond Icon Decoration */
.apa-diamond-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.apa-diamond-divider::before,
.apa-diamond-divider::after {
  content: '';
  width: 4rem;
  height: 1px;
  background: var(--apa-gold);
  opacity: 0.4;
}

/* Material Symbols Outlined */
.material-symbols-outlined {
  display: inline-block;
  vertical-align: middle;
}

body {
  font-family: var(--apa-font-body);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.005em;
  color: var(--apa-text-dark);
  background-color: var(--apa-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Headings - Display Serif Premium */
h1, h2, h3, h4, h5, h6,
.entry-title, .page-title {
  font-family: var(--apa-font-display);
  font-weight: var(--apa-font-weight-regular);
  color: var(--apa-text-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}

h1, .h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: var(--apa-font-weight-regular);
}

h2, .h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: var(--apa-font-weight-regular);
}

h3, .h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h4, .h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.3;
}

/* Premium Paragraph Styles */
p {
  margin-bottom: 1.5rem;
  max-width: 65ch;
}

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

/* Technical Labels - Uppercase Sans Premium */
.apa-eyebrow,
.apa-label-technical,
[class*="eyebrow"],
[class*="badge"],
.uppercase {
  font-family: var(--apa-font-body);
  font-size: 0.7rem;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: var(--apa-font-weight-medium);
  opacity: 0.9;
}

/* Premium Links with underline animation */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--apa-transition-elegant);
  position: relative;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--apa-gold);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover {
  color: var(--apa-gold);
}

a:hover::after {
  width: 100%;
}

/* Premium Selection */
::selection {
  background: var(--apa-gold);
  color: var(--apa-dark);
}

::-moz-selection {
  background: var(--apa-gold);
  color: var(--apa-dark);
}

/* Premium Focus States */
:focus-visible {
  outline: 2px solid var(--apa-gold);
  outline-offset: 3px;
}

/* ============================================
   LAYOUT UTILITIES - PREMIUM
   ============================================ */

.apa-container {
  max-width: var(--apa-container-md);
  margin: 0 auto;
  padding-left: var(--apa-container-padding);
  padding-right: var(--apa-container-padding);
}

.apa-container-lg {
  max-width: var(--apa-container-lg);
  margin: 0 auto;
  padding-left: var(--apa-container-padding);
  padding-right: var(--apa-container-padding);
}

.apa-container-sm {
  max-width: var(--apa-container-sm);
  margin: 0 auto;
  padding-left: var(--apa-container-padding);
  padding-right: var(--apa-container-padding);
}

/* Section Container with Padding */
.apa-section {
  padding: 6rem 0;
}

.apa-section-sm {
  padding: 4rem 0;
}

/* Section backgrounds */
.apa-section-dark {
  background-color: var(--apa-dark);
  color: var(--apa-text-light);
}

.apa-section-dark-elevated {
  background-color: var(--apa-dark-elevated);
  color: var(--apa-text-light);
}

.apa-section-ivory {
  background-color: var(--apa-ivory);
  color: var(--apa-text-dark);
}

.apa-section-light {
  background-color: var(--apa-light);
  color: var(--apa-text-dark);
}

/* Border utilities */
.apa-border-top-dark {
  border-top: var(--apa-stroke) solid var(--apa-border-strong-light);
}

.apa-border-bottom-dark {
  border-bottom: var(--apa-stroke) solid var(--apa-border-strong-light);
}

.apa-border-gold {
  border-top: 1px solid var(--apa-gold);
}

/* Gold Accent Line */
.apa-accent-line {
  width: 3rem;
  height: 2px;
  background: var(--apa-gold);
}

.apa-accent-line-center {
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.apa-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.apa-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.apa-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* ============================================
   NAVIGATION - PREMIUM
   ============================================ */

/* Navbar Base */
.apa-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
  color: white;
}

/* Navbar Scrolled State */
.apa-navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 148, 29, 0.3);
  color: #0A0A0A !important;
}

.apa-navbar.scrolled .nav-link {
  color: var(--apa-charcoal);
}

.apa-navbar.scrolled .nav-link:hover {
  color: var(--apa-gold);
}

.apa-navbar.scrolled .apa-logo {
  color: #0A0A0A;
}

/* Logo */
.apa-logo {
  font-family: var(--apa-font-display);
  font-size: 1.25rem;
  font-weight: var(--apa-font-weight-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.apa-logo-line {
  width: 100%;
  height: 1px;
  background: var(--apa-gold);
  opacity: 0.6;
}

/* Nav Links */
.apa-nav-link {
  font-family: var(--apa-font-body);
  font-size: 0.7rem;
  font-weight: var(--apa-font-weight-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.apa-nav-link:hover {
  color: var(--apa-gold);
}

.apa-nav-link.active {
  color: var(--apa-gold);
}

/* ============================================
   BUTTONS - PREMIUM LUXURY
   ============================================ */

.apa-btn,
.apa-btn-primary,
.apa-btn-secondary,
button.apa-btn,
input[type="submit"].apa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--apa-font-body);
  font-size: 0.8rem;
  font-weight: var(--apa-font-weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
}

/* Primary Button - Gold */
.apa-btn-primary {
  background: var(--apa-gold);
  color: var(--apa-dark);
  box-shadow: var(--apa-shadow-md);
}

.apa-btn-primary:hover {
  background: white;
  color: var(--apa-dark);
  box-shadow: var(--apa-glow-gold);
}

/* Secondary Button */
.apa-btn-secondary {
  background-color: transparent;
  color: var(--apa-text-dark);
  border: var(--apa-stroke) solid var(--apa-border-medium-light);
}

.apa-btn-secondary:hover {
  background-color: var(--apa-dark);
  color: var(--apa-text-light);
  border-color: var(--apa-dark);
}

/* Dark Button */
.apa-btn-dark {
  background: var(--apa-dark);
  color: var(--apa-text-light);
  box-shadow: var(--apa-shadow-md);
}

.apa-btn-dark:hover {
  background: var(--apa-gold);
  color: var(--apa-dark);
  box-shadow: var(--apa-glow-gold);
}

/* CTA Button with Glow */
.apa-btn-cta {
  background: var(--apa-gold);
  color: var(--apa-dark);
  box-shadow: var(--apa-glow-gold);
}

.apa-btn-cta:hover {
  background: white;
  color: var(--apa-dark);
  box-shadow: var(--apa-shadow-gold), 0 0 40px rgba(184, 148, 29, 0.5);
}

/* Full Width */
.apa-btn-full {
  width: 100%;
}

/* Button with Arrow */
.apa-btn-arrow {
  gap: 0.5rem;
}

.apa-btn-arrow .apa-btn-icon {
  transition: transform 0.3s ease;
}

.apa-btn-arrow:hover .apa-btn-icon {
  transform: translateY(2px);
}

/* Disabled State */
.apa-btn:disabled,
.apa-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================
   CARDS - PREMIUM SERVICE CARDS
   ============================================ */

.apa-card {
  background-color: var(--apa-light);
  border: 1px solid var(--apa-border-charcoal);
  border-top: 4px solid transparent;
  border-radius: var(--apa-radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--apa-shadow-card);
}

.apa-card:hover {
  border-top-color: var(--apa-gold);
  box-shadow: var(--apa-shadow-card-hover);
  transform: translateY(-4px);
}

/* Premium Card Image */
.apa-card-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.apa-card-image img {
  transition: transform 0.7s ease;
}

.apa-card:hover .apa-card-image img {
  transform: scale(1.05);
}

/* Card index number */
.apa-card-index {
  font-family: var(--apa-font-body);
  font-size: 0.65rem;
  font-weight: var(--apa-font-weight-semibold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--apa-gold);
  margin-bottom: 1rem;
}

/* Premium Card Title */
.apa-card-title {
  font-family: var(--apa-font-display);
  font-size: 1.5rem;
  font-weight: var(--apa-font-weight-regular);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

/* Premium Card Description */
.apa-card-description {
  font-size: 0.875rem;
  color: var(--apa-charcoal);
  line-height: 1.7;
  font-weight: var(--apa-font-weight-light);
}

/* Premium Card Icon */
.apa-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--apa-gold);
  transition: transform 0.3s ease;
}

.apa-card:hover .apa-card-icon {
  transform: scale(1.1);
}

/* Stat Box - Premium Dark with Gold */
.apa-stat-box {
  background: var(--apa-dark);
  color: var(--apa-text-light);
  padding: 3rem;
  text-align: center;
  border: none;
}

.apa-stat-box .stat-value {
  font-family: var(--apa-font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--apa-font-weight-regular);
  color: var(--apa-gold);
  line-height: 1;
}

.apa-stat-box .stat-label {
  font-family: var(--apa-font-body);
  font-size: 0.65rem;
  font-weight: var(--apa-font-weight-bold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--apa-charcoal);
  margin-top: 1rem;
  display: block;
}

.apa-stat-box .stat-subtext {
  font-family: var(--apa-font-body);
  font-size: 0.65rem;
  font-weight: var(--apa-font-weight-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--apa-charcoal);
  margin-top: 1rem;
}

/* Testimonial Card */
.apa-testimonial-card {
  background: var(--apa-light);
  padding: 2rem;
  border-left: 4px solid var(--apa-gold);
  box-shadow: var(--apa-shadow-card);
  border-radius: var(--apa-radius-sm);
}

.apa-testimonial-stars {
  color: var(--apa-gold);
  margin-bottom: 1.5rem;
}

.apa-testimonial-quote {
  font-family: var(--apa-font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--apa-text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.apa-testimonial-author {
  font-family: var(--apa-font-body);
  font-size: 0.65rem;
  font-weight: var(--apa-font-weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--apa-text-dark);
}

.apa-testimonial-author span {
  font-weight: var(--apa-font-weight-light);
  color: var(--apa-charcoal);
}

/* Team Card */
.apa-team-card {
  background: var(--apa-ivory);
  border-radius: var(--apa-radius-sm);
  overflow: hidden;
  transition: all 0.5s ease;
  border-top: 1px solid transparent;
}

.apa-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--apa-shadow-2xl);
  border-top-color: var(--apa-gold);
}

.apa-team-photo {
  height: 320px;
  overflow: hidden;
  position: relative;
  background: var(--apa-dark);
}

.apa-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.85;
  transition: all 0.7s ease;
}

.apa-team-card:hover .apa-team-photo img {
  filter: grayscale(0%) contrast(1);
  opacity: 1;
  transform: scale(1.08);
}

.apa-team-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--apa-dark);
  color: var(--apa-gold);
  padding: 0.5rem 0.75rem;
  font-size: 0.55rem;
  font-weight: var(--apa-font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.apa-team-content {
  padding: 2rem;
}

.apa-team-name {
  font-family: var(--apa-font-display);
  font-size: 1.5rem;
  color: var(--apa-text-dark);
  margin-bottom: 0.25rem;
}

.apa-team-role {
  font-size: 0.65rem;
  font-weight: var(--apa-font-weight-bold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--apa-gold);
  margin-bottom: 1rem;
}

.apa-team-bio {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--apa-charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: var(--apa-font-weight-light);
}

.apa-team-links {
  display: flex;
  gap: 1rem;
}

.apa-team-links a {
  font-size: 0.65rem;
  font-weight: var(--apa-font-weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--apa-text-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.apa-team-links a:hover {
  color: var(--apa-gold);
}

/* ============================================
   FORMS - PREMIUM
   ============================================ */

.apa-form-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.apa-form-col {
  flex: 1;
  min-width: 200px;
}

.apa-input,
.apa-select,
.apa-textarea,
input[type="text"].apa-input,
input[type="email"].apa-input,
input[type="tel"].apa-input,
input[type="url"].apa-input,
select.apa-input,
textarea.apa-input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid var(--apa-border-medium-light);
  padding: 1rem 0;
  font-family: var(--apa-font-body);
  font-size: 0.875rem;
  font-weight: var(--apa-font-weight-regular);
  letter-spacing: 0;
  color: var(--apa-text-dark);
  transition: border-color 0.3s ease;
  outline: none;
}

.apa-input:focus {
  border-bottom-color: var(--apa-gold);
}

.apa-input::placeholder {
  color: var(--apa-charcoal);
  font-weight: var(--apa-font-weight-light);
}

/* Select specific */
.apa-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C8973A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 2rem;
  cursor: pointer;
}

/* Textarea */
textarea.apa-input {
  resize: vertical;
  min-height: 100px;
}

/* FAQ Accordion */
.apa-faq-item {
  border-bottom: 1px solid rgba(107, 107, 107, 0.3);
  transition: all 0.3s ease;
}

.apa-faq-item:first-child {
  border-top: 1px solid rgba(107, 107, 107, 0.3);
}

.apa-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.apa-faq-question:hover .apa-faq-title {
  color: var(--apa-gold);
}

.apa-faq-title {
  font-family: var(--apa-font-body);
  font-size: 1.125rem;
  font-weight: var(--apa-font-weight-medium);
  color: var(--apa-text-light);
  transition: color 0.3s ease;
}

.apa-faq-icon {
  color: var(--apa-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.apa-faq-item.open .apa-faq-icon {
  transform: rotate(90deg);
}

.apa-faq-item.open .apa-faq-title {
  color: var(--apa-gold);
}

.apa-faq-item.open {
  border-top: 2px solid var(--apa-gold);
}

.apa-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  padding: 0;
}

.apa-faq-item.open .apa-faq-answer {
  max-height: 250px;
  opacity: 1;
  padding-bottom: 1rem;
}

.apa-faq-answer-text {
  font-size: 0.875rem;
  font-weight: var(--apa-font-weight-light);
  color: var(--apa-text-ivory-muted);
  line-height: 1.7;
}

/* ============================================
   IMAGES - PREMIUM BRUTAL FILTER
   ============================================ */

.apa-image-brutal {
  filter: grayscale(100%) contrast(115%);
  mix-blend-mode: luminosity;
  transition: var(--apa-transition-slow);
}

.apa-image-brutal:hover {
  filter: grayscale(0%) contrast(100%);
  mix-blend-mode: normal;
}

/* Premium Image with subtle overlay */
.apa-image-premium {
  position: relative;
  overflow: hidden;
}

.apa-image-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.apa-image-premium:hover::after {
  opacity: 0.6;
}

/* Premium Image with Gold Tint on Hover */
.apa-image-gold-tint {
  transition: var(--apa-transition-elegant);
}

.apa-image-gold-tint:hover {
  box-shadow: inset 0 0 60px rgba(184, 148, 29, 0.3);
}

/* Image wrapper for aspect ratio control */
.apa-image-wrapper {
  overflow: hidden;
  position: relative;
  background-color: var(--apa-dark);
}

.apa-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apa-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Premium Image Parallax Effect */
.apa-image-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Premium Vignette Effect */
.apa-vignette {
  position: relative;
}

.apa-vignette::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   GRID - BRUTAL NO-GAP ARCHITECTURAL
   ============================================ */

.apa-grid {
  display: grid;
  gap: var(--apa-grid-gap);
}

.apa-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.apa-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.apa-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   TRUST BAR - PREMIUM
   ============================================ */

.apa-trust-bar {
  background: linear-gradient(180deg, var(--apa-dark-elevated) 0%, var(--apa-dark) 100%);
  border-top: 1px solid var(--apa-border-subtle-dark);
  border-bottom: 1px solid var(--apa-border-subtle-dark);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

/* Premium gold accent line */
.apa-trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--apa-gold-glow), transparent);
}

.apa-trust-bar-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.apa-trust-bar-item {
  font-family: var(--apa-font-body);
  font-size: 0.65rem;
  font-weight: var(--apa-font-weight-semibold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--apa-gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  transition: var(--apa-transition-elegant);
}

.apa-trust-bar-item:hover {
  color: var(--apa-gold-light);
  transform: translateY(-2px);
}

.apa-trust-bar-item + .apa-trust-bar-item {
  border-left: 1px solid rgba(184, 148, 29, 0.15);
  padding-left: 4rem;
}

.apa-trust-bar-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.apa-trust-bar-item:hover svg {
  opacity: 1;
  transform: scale(1.1);
}

/* Premium Trust Badge */
.apa-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--apa-gold);
  background: rgba(184, 148, 29, 0.1);
}

.apa-trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--apa-gold);
}

/* ============================================
   PREMIUM OVERLAYS & EFFECTS
   ============================================ */

/* Premium Dark Overlay */
.apa-overlay-dark {
  position: relative;
}

.apa-overlay-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

/* Premium Gradient Overlay */
.apa-overlay-gradient {
  position: relative;
}

.apa-overlay-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 148, 29, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

/* Premium Noise Texture */
.apa-noise {
  position: relative;
}

.apa-noise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

/* Premium Loading Animation */
@keyframes apa-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.apa-loading {
  background: linear-gradient(90deg, var(--apa-light) 25%, var(--apa-ivory) 50%, var(--apa-light) 75%);
  background-size: 200% 100%;
  animation: apa-shimmer 1.5s infinite;
}

/* Premium Pulse Animation */
@keyframes apa-pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 var(--apa-gold-glow); }
  50% { box-shadow: 0 0 30px 10px var(--apa-gold-glow); }
}

.apa-pulse {
  animation: apa-pulse-gold 2s infinite;
}

/* Premium Fade In Animation */
@keyframes apa-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.apa-fade-in {
  animation: apa-fade-in 0.6s ease forwards;
}

/* Premium Stagger Animation */
.apa-stagger > * {
  opacity: 0;
  animation: apa-fade-in 0.6s ease forwards;
}

.apa-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.apa-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.apa-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.apa-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.apa-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.apa-stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   OVERRIDE BLOCKSY DEFAULTS - PREMIUM
   ============================================ */

/* Remove default border radius from blocksy buttons */
.ct-button, .ct-button-lg {
  border-radius: var(--apa-radius) !important;
}

/* Customizer CTA buttons */
.ct-footer .ct-button,
.ct-header .ct-button {
  box-shadow: var(--apa-shadow-brutalist);
  transition: var(--apa-transition-elegant);
}

.ct-footer .ct-button:hover,
.ct-header .ct-button:hover {
  box-shadow: var(--apa-shadow-brutalist-hover);
  transform: translate(2px, 2px);
}

/* Remove Blocksy default header styles on our custom pages */
.apa-home .ct-header {
  display: none;
}

.apa-home .ct-footer {
  margin-top: 0;
}

/* Premium Blocksy Overrides */
.apa-home .ct-footer {
  background: var(--apa-dark);
  padding: 4rem 0;
}

/* ============================================
   RESPONSIVE UTILITIES - PREMIUM
   ============================================ */

@media (max-width: 1200px) {
  .apa-grid-12 {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .apa-col-8,
  .apa-col-4 {
    grid-column: span 6;
  }
  
  .apa-col-6 {
    grid-column: span 6;
  }
  
  .apa-col-3 {
    grid-column: span 6;
  }
  
  .apa-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .apa-grid-12 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .apa-col-8,
  .apa-col-4,
  .apa-col-6,
  .apa-col-3 {
    grid-column: span 1;
  }
  
  .apa-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .apa-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .apa-grid-4,
  .apa-grid-3,
  .apa-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .apa-trust-bar-items {
    flex-direction: column;
    gap: 2rem;
  }
  
  .apa-trust-bar-item + .apa-trust-bar-item {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(184, 148, 29, 0.2);
    padding-top: 2rem;
  }
  
  .apa-form-row {
    flex-direction: column;
  }
  
  .apa-form-col {
    min-width: 100%;
  }
  
  h1, .h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  
  h2, .h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* Premium Print Styles */
@media print {
  .apa-section-dark {
    background: white !important;
    color: black !important;
  }

  .apa-btn {
    border: 1px solid black !important;
    box-shadow: none !important;
  }
}

/* ============================================
   HOME PAGE SPECIFIC STYLES - From front-page.php
   ============================================ */

/* Hero - Hook & Capture */
.apa-hero {
    min-height: 100vh;
    background: var(--apa-dark);
    position: relative;
    display: flex;
    align-items: center;
    padding: 6rem 0 3rem;
}

.apa-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.apa-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: grayscale(100%);
}

.apa-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 100%);
}

.apa-hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .apa-hero-content { grid-template-columns: 1fr; }
    .apa-hero-form { max-width: 32rem; margin: 0 auto; }
}

.apa-hero-text { color: white; }

.apa-hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--apa-gold);
    margin-bottom: 1.5rem;
}

.apa-hero-headline {
    font-family: var(--apa-font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.apa-hero-headline-accent {
    color: var(--apa-gold);
    font-style: italic;
}

.apa-hero-sub {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 28rem;
}

.apa-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
}

.apa-hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.apa-hero-trust .material-symbols-outlined {
    font-size: 1rem;
    color: var(--apa-gold);
}

/* Lead Capture Form in Hero */
.apa-hero-form {
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.apa-hero-form .apa-form-title {
    font-family: var(--apa-font-display);
    font-size: 1.5rem;
    color: var(--apa-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.apa-hero-form .apa-form-sub {
    font-size: 0.875rem;
    color: var(--apa-charcoal);
    text-align: center;
    margin-bottom: 1.5rem;
}

.apa-form-group {
    margin-bottom: 1rem;
}

.apa-form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--apa-charcoal);
    margin-bottom: 0.375rem;
}

.apa-form-group input,
.apa-form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 0px;
    font-family: var(--apa-font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.apa-form-group input:focus,
.apa-form-group select:focus {
    outline: none;
    border-color: var(--apa-gold);
}

.apa-form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--apa-gold);
    color: var(--apa-dark);
    border: none;
    border-radius: 0px;
    font-family: var(--apa-font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.apa-form-submit:hover {
    background: var(--apa-dark);
    color: white;
    transform: translateY(-2px);
}

.apa-form-privacy {
    font-size: 0.65rem;
    color: var(--apa-charcoal);
    text-align: center;
    margin-top: 1rem;
    opacity: 0.7;
}

/* Trust Strip */
.apa-trust-strip {
    background: var(--apa-ivory);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.apa-trust-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.apa-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--apa-charcoal);
}

.apa-trust-item .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--apa-gold);
}

.apa-trust-divider {
    width: 1px;
    height: 2rem;
    background: rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .apa-trust-divider { display: none; }
    .apa-trust-content { gap: 1.5rem; }
}

/* Problem Section - Agitation */
.apa-problem {
    background: var(--apa-light);
    padding: 6rem 0;
}

.apa-problem-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.apa-section-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--apa-gold);
    margin-bottom: 1rem;
    text-align: center;
    display: block;
}

.apa-section-title {
    font-family: var(--apa-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--apa-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.apa-section-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--apa-charcoal);
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.apa-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .apa-problem-grid { grid-template-columns: 1fr; }
}

.apa-problem-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 4px;
    transition: all 0.3s;
}

.apa-problem-card:hover {
    border-color: var(--apa-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.apa-problem-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: rgba(184, 148, 29, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apa-problem-icon .material-symbols-outlined {
    font-size: 2rem;
    color: var(--apa-gold);
}

.apa-problem-card h3 {
    font-family: var(--apa-font-display);
    font-size: 1.25rem;
    color: var(--apa-dark);
    margin-bottom: 0.75rem;
}

.apa-problem-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--apa-charcoal);
    line-height: 1.7;
}

/* Proof - Case Studies */
.apa-proof {
    background: var(--apa-dark);
    padding: 6rem 0;
}

.apa-proof-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.apa-proof .apa-section-title { color: white; }

.apa-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .apa-proof-grid { grid-template-columns: 1fr; }
}

.apa-case-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 2rem;
    transition: all 0.3s;
}

.apa-case-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--apa-gold);
    transform: translateY(-4px);
}

.apa-case-type {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--apa-gold);
    margin-bottom: 1rem;
    display: block;
}

.apa-case-stats {
    margin-bottom: 1.5rem;
}

.apa-case-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.apa-case-stat:last-child { border-bottom: none; }

.apa-case-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
}

.apa-case-stat-value {
    font-family: var(--apa-font-display);
    font-size: 1.25rem;
}

.apa-case-stat-value.initial { color: rgba(255,255,255,0.6); }
.apa-case-stat-value.final { color: var(--apa-gold); font-weight: 700; }

.apa-case-multiplier {
    display: inline-block;
    background: rgba(184, 148, 29, 0.2);
    color: var(--apa-gold);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0px;
    margin-bottom: 1rem;
}

.apa-case-quote {
    font-size: 0.875rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.apa-proof-cta {
    text-align: center;
}

.apa-proof-cta p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

/* CTA Buttons - Gold Action (Sobre fondo oscuro, compacto) */
.apa-btn-gold {
    display: inline-flex;
    align-items: center;
    background: var(--apa-gold);
    color: var(--apa-dark);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.875rem 1.75rem;
    border-radius: 0px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 3px 12px rgba(184, 148, 29, 0.25),
        0 0 20px rgba(184, 148, 29, 0.15);
}

.apa-btn-gold:hover {
    background: #ffffff;
    color: #0A0A0A;
    transform: translateY(-1px);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.12),
        0 0 25px rgba(255, 255, 255, 0.25);
}

/* Guarantee Section - Risk Reversal */
.apa-guarantee {
    background: var(--apa-ivory);
    padding: 6rem 0;
}

.apa-guarantee-content {
    max-width: 60rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.apa-guarantee-title {
    font-family: var(--apa-font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--apa-dark);
    margin-bottom: 1.5rem;
}

.apa-guarantee-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .apa-guarantee-list { grid-template-columns: 1fr; }
}

.apa-guarantee-item {
    text-align: center;
}

.apa-guarantee-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.apa-guarantee-icon .material-symbols-outlined {
    font-size: 1.75rem;
    color: var(--apa-gold);
}

.apa-guarantee-item h4 {
    font-family: var(--apa-font-display);
    font-size: 1.125rem;
    color: var(--apa-dark);
    margin-bottom: 0.5rem;
}

.apa-guarantee-item p {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--apa-charcoal);
    line-height: 1.6;
}

.apa-guarantee-cta {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--apa-charcoal);
    margin-bottom: 1.5rem;
}

/* How It Works - Process */
.apa-process {
    background: var(--apa-light);
    padding: 6rem 0;
}

.apa-process-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.apa-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.apa-process-grid::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--apa-gold), transparent);
}

@media (max-width: 768px) {
    .apa-process-grid { grid-template-columns: 1fr; }
    .apa-process-grid::before { display: none; }
}

.apa-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.apa-process-number {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: var(--apa-gold);
    color: var(--apa-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--apa-font-display);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(184, 148, 29, 0.3);
}

.apa-process-step h3 {
    font-family: var(--apa-font-display);
    font-size: 1.25rem;
    color: var(--apa-dark);
    margin-bottom: 0.75rem;
}

.apa-process-step p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--apa-charcoal);
    line-height: 1.7;
}

/* Testimonials Section */
.apa-testimonials-section {
    background: var(--apa-dark);
    padding: 6rem 0;
}

.apa-testimonials-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.apa-testimonials-section .apa-section-title { color: white; }

.apa-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .apa-testimonials-grid { grid-template-columns: 1fr; }
}

.apa-testimonial-card-home {
    background: rgba(255,255,255,0.03);
    border-left: 4px solid var(--apa-gold);
    padding: 2rem;
    border-radius: 4px;
}

.apa-testimonial-stars {
    color: var(--apa-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.apa-testimonial-quote-home {
    font-family: var(--apa-font-display);
    font-style: italic;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.apa-testimonial-author-home {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
}

.apa-testimonial-author-home span {
    font-weight: 400;
    color: var(--apa-charcoal);
    text-transform: none;
    letter-spacing: 0;
}

/* Final CTA - Urgency */
.apa-final-cta {
    background: var(--apa-dark);
    padding: 8rem 0;
    text-align: center;
    border-top: 1px solid rgba(184, 148, 29, 0.2);
}

.apa-final-cta-content {
    max-width: 50rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.apa-final-cta-title {
    font-family: var(--apa-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1rem;
}

.apa-final-cta-title em {
    color: var(--apa-gold);
    font-style: italic;
}

.apa-final-cta-sub {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* ============================================
   NEW HOME PAGE V2 - MOBILE FIRST
   Hero, Services, CTA Bar, Method, Reviews, Areas, Contact+FAQ
   ============================================ */

/* HERO V2 - Mobile First */
.apa-hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.apa-hero-v2 .apa-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.apa-hero-v2 .apa-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.apa-hero-v2 .apa-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.apa-hero-v2 .apa-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 1.5rem 4rem;
    max-width: 800px;
}

.apa-hero-v2 .apa-hero-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--apa-gold);
    margin-bottom: 1.5rem;
}

.apa-hero-v2 .apa-hero-headline {
    font-family: var(--apa-font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: var(--apa-light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.apa-hero-v2 .apa-hero-accent {
    color: var(--apa-gold);
    font-style: italic;
}

.apa-hero-v2 .apa-hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.apa-hero-v2 .apa-hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.apa-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--apa-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.apa-btn-outline:hover {
    background: var(--apa-light);
    color: var(--apa-dark);
    border-color: var(--apa-light);
}

/* Suprimir párrafos vacíos que Gutenberg puede generar entre bloques */
.site-main > p:empty,
.entry-content > p:empty {
    display: none;
    margin: 0;
    padding: 0;
}

/* ============================================
   ABOUT PAGE — Hero adjustments
   ============================================ */

/* Badge mobile-top: oculto en desktop con mayor especificidad */
.page-id-10 .apa-hero-v3 .apa-hero-badge--mobile-top { display: none; }

@media (max-width: 768px) {
    /* Ocultar "Or call" y trust pill */
    .page-id-10 .apa-hero-v3 .apa-cta-phone,
    .page-id-10 .apa-hero-v3 .apa-hero-trust-pill {
        display: none;
    }

    /* Badge mobile: visible y anclado al top del hero */
    .page-id-10 .apa-hero-v3 .apa-hero-badge--mobile-top {
        display: inline-flex;
        position: absolute;
        top: calc(70px + 0.4rem);
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        white-space: nowrap;
        font-size: 0.6rem;
        padding: 0.3rem 0.7rem;
    }

    /* Badge desktop: oculto en mobile */
    .page-id-10 .apa-hero-v3 .apa-hero-badge--desktop { display: none; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Ocultar "Or call" y trust pill en tablet — igual que mobile */
    .page-id-10 .apa-hero-v3 .apa-cta-phone,
    .page-id-10 .apa-hero-v3 .apa-hero-trust-pill {
        display: none;
    }

    /* Badge mobile-top: visible y anclado al top del hero en tablet */
    .page-id-10 .apa-hero-v3 .apa-hero-badge--mobile-top {
        display: inline-flex;
        position: absolute;
        top: calc(90px + 0.4rem);
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        white-space: nowrap;
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }

    /* Badge desktop: oculto en tablet */
    .page-id-10 .apa-hero-v3 .apa-hero-badge--desktop { display: none; }
}

/* ============================================
   HERO V3 - CRO Optimizado (Mobile First)
   ============================================ */
.apa-hero-v3 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--apa-dark);
}

.apa-hero-v3 .apa-hero-v3-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.apa-hero-v3 .apa-hero-v3-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(0.55);
}

/* ============================================
   HERO SERVICES - Layout izquierda
   ============================================ */

/* Badge y eyebrow en líneas separadas */
.apa-hero-services .apa-hero-badge {
    display: flex;
    width: fit-content;
}

.apa-hero-services .apa-hero-eyebrow {
    display: block;
}

/* Texto alineado a la izquierda - especificidad aumentada con doble clase en el section */
.apa-hero-services.apa-hero-v3 .apa-hero-v3-content,
.apa-hero-services.apa-hero-v3 .apa-hero-slogan,
.apa-hero-services.apa-hero-v3 .apa-hero-v3-content > .apa-cta-microcopy {
    text-align: left;
}

.apa-hero-services.apa-hero-v3 .apa-hero-sub {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.apa-hero-services .apa-hero-cta-group {
    align-items: flex-start;
}

.apa-hero-services .apa-cta-microcopy {
    justify-content: flex-start;
    text-align: left;
}

.apa-hero-services .apa-hero-trust {
    align-items: flex-start;
}

/* Layout izquierda solo en desktop */
@media (min-width: 768px) {
    .apa-hero-services {
        justify-content: flex-start;
        padding-left: clamp(2rem, 6vw, 8%);
    }

    /* Imagen empieza debajo del header fijo (90px desktop) — todas las páginas */
    .apa-hero-v3 .apa-hero-v3-bg {
        top: 90px;
    }

    .apa-hero-services .apa-hero-v3-overlay {
        background: linear-gradient(
            to right,
            rgba(0,0,0,0.88) 0%,
            rgba(0,0,0,0.70) 45%,
            rgba(0,0,0,0.15) 100%
        );
    }

    .apa-hero-services .apa-hero-v3-content {
        max-width: 560px;
        padding-left: 0;
        padding-right: 0;
    }

    .apa-hero-services .apa-hero-cta-group {
        justify-content: flex-start;
    }

    .apa-hero-services .apa-hero-trust {
        justify-content: flex-start;
    }
}

.apa-hero-v3 .apa-hero-v3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.apa-hero-v3 .apa-hero-v3-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 1.5rem 4rem;
    max-width: 850px;
}

/* Social Proof Badge - Arriba del todo */
.apa-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(184, 148, 29, 0.15);
    border: 1px solid rgba(184, 148, 29, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.apa-hero-badge .material-symbols-outlined {
    color: var(--apa-gold);
    font-size: 1rem;
}

.apa-hero-badge span:last-child {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.05em;
}

/* Headline optimizada para conversion */
.apa-hero-v3 .apa-hero-headline {
    font-family: var(--apa-font-display);
    font-size: clamp(2.25rem, 7vw, 4rem);
    color: var(--apa-light);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.apa-hero-v3 .apa-hero-accent {
    color: var(--apa-gold);
    font-style: italic;
    background-image: linear-gradient(to right, rgba(154, 125, 24, 0.3), rgba(154, 125, 24, 0.3));
    background-size: 100% 3px;
    background-position: 0 95%;
    background-repeat: no-repeat;
}

/* Slogan destacado con realce visual */
.apa-hero-slogan {
    margin-bottom: 1.25rem;
    text-align: center;
}

.apa-hero-slogan-text {
    display: inline-block;
    font-family: var(--apa-font-body);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 600;
    color: var(--apa-light);
    letter-spacing: 0.04em;
    padding: 0.6rem 1.5rem;
    border-left: 3px solid var(--apa-gold);
    background: rgba(200, 151, 58, 0.08);
}

.apa-hero-slogan-text strong {
    color: var(--apa-gold);
    font-weight: 700;
    font-size: 1.05em;
}

/* Subheadline con mayor peso */
.apa-hero-v3 .apa-hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.apa-hero-v3 .apa-hero-sub strong {
    color: var(--apa-light);
    font-weight: 600;
}

/* CTA Group - Unico boton con microcopy */
.apa-hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

/* Botones del hero con mismo ancho */
.apa-hero-cta-group .apa-btn-gold,
.apa-hero-cta-group .apa-btn-outline-gold {
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.apa-btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.apa-btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.apa-btn-large:hover .apa-btn-arrow {
    transform: translateX(4px);
}

.apa-cta-microcopy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.apa-hero-v3-content > .apa-cta-microcopy {
    /* Microcopy outside the CTA group - position below buttons */
    text-align: center;
}

.apa-cta-microcopy .material-symbols-outlined {
    font-size: 0.875rem;
}

.apa-cta-phone {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.apa-cta-phone a {
    color: var(--apa-gold);
    text-decoration: none;
    font-weight: 600;
}

.apa-cta-phone a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Trust indicators en el hero */
.apa-hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.apa-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
}

/* Trust pill dorado sobre fondo oscuro del hero */
.apa-hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 151, 58, 0.15);
    border: 1px solid rgba(200, 151, 58, 0.4);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-top: 1rem;
}

.apa-hero-trust-pill .material-symbols-outlined {
    font-size: 1.1rem;
    color: #fff;
}

.apa-trust-pill .material-symbols-outlined {
    color: var(--apa-gold);
    font-size: 1rem;
}

.apa-hero-states {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Responsive Hero V3 */
@media (min-width: 768px) {
    .apa-hero-v3 .apa-hero-v3-content {
        padding-top: 140px;
    }

    .apa-hero-badge {
        padding: 0.625rem 1.25rem;
    }

    .apa-hero-badge span:last-child {
        font-size: 0.8125rem;
    }

    .apa-hero-v3 .apa-hero-sub {
        font-size: 1.25rem;
    }

    .apa-hero-cta-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .apa-hero-trust {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .apa-hero-v3 .apa-hero-v3-content {
        max-width: 900px;
    }

    .apa-hero-v3 .apa-hero-headline {
        font-size: 4rem;
    }
}

/* TRUST BAR - Mobile First */
.apa-trust-bar {
    background: var(--apa-dark);
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.apa-trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
}

.apa-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

.apa-trust-item .material-symbols-outlined {
    color: var(--apa-gold);
    font-size: 1.25rem;
}

/* SERVICES HOME - Premium Light Cards (Alto Contraste) */
.apa-home-services {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f6f3 100%);
    position: relative;
}

.apa-home-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--apa-gold), transparent);
    opacity: 0.3;
}

.apa-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.apa-section-header.apa-text-left {
    text-align: left;
}

.apa-section-header .apa-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--apa-gold);
    margin-bottom: 1rem;
}

.apa-section-header h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--apa-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.apa-section-header p {
    color: var(--apa-charcoal);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1.125rem;
}

.apa-services-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* ============================================
   SERVICE CARDS - CLEAN PREMIUM DESIGN
   ============================================ */

/* Card Container */
.apa-service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.apa-service-card:hover {
    border-color: rgba(184, 148, 29, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Glow Layer */
.apa-service-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(184, 148, 29, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.apa-service-card:hover .apa-service-card-glow {
    opacity: 1;
}

.apa-service-card:hover .apa-service-icon {
    background: linear-gradient(135deg, rgba(184, 148, 29, 0.18) 0%, rgba(184, 148, 29, 0.06) 100%);
    border-color: rgba(184, 148, 29, 0.35);
}

.apa-service-card:hover .apa-service-cta-btn .apa-arrow {
    transform: translateX(3px);
}

/* Card Header - Centered Stack */
.apa-service-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Icon */
.apa-service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(184, 148, 29, 0.12) 0%, rgba(184, 148, 29, 0.04) 100%);
    border: 2px solid rgba(184, 148, 29, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.apa-service-icon .material-symbols-outlined {
    font-size: 2.25rem;
    color: var(--apa-gold);
}

/* Title Section */
.apa-service-title {
    text-align: center;
}

.apa-service-title h3 {
    font-family: var(--apa-font-display);
    font-size: 1.5rem;
    color: #0A0A0A;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.apa-service-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--apa-gold);
    padding: 0.5rem 1rem;
    background: rgba(184, 148, 29, 0.08);
    border: 1px solid rgba(184, 148, 29, 0.15);
}

/* Description */
.apa-service-desc {
    color: #525252;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: center;
    flex-shrink: 0;
}

/* Feature List - Clean bullets */
.apa-service-list.premium {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    text-align: center;
}

.apa-service-list.premium li {
    display: block;
    padding: 0.5rem 0;
    color: #333333;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.apa-service-list.premium li:last-child {
    border-bottom: none;
}

.apa-check-icon {
    display: none;
}

/* Footer */
.apa-service-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Result Badge */
.apa-service-result {
    font-size: 0.8125rem;
    color: #525252;
    font-weight: 500;
    text-align: center;
}

/* CTA Button */
.apa-service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--apa-gold);
    color: #0A0A0A;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.875rem 1.5rem;
    transition: all 0.25s ease;
}

.apa-service-cta-btn:hover {
    background: #0A0A0A;
    color: #ffffff;
}

.apa-arrow {
    transition: transform 0.25s ease;
}

.apa-service-cta-btn:hover .apa-arrow {
    transform: translateX(3px);
}

/* Responsive */
@media (min-width: 768px) {
    .apa-home-services {
        padding: 6rem 0;
    }

    .apa-service-card {
        padding: 3rem;
    }

    .apa-service-title h3 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .apa-services-split {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Mobile adjustments for service cards */
@media (max-width: 768px) {
    .apa-service-card {
        padding: 2rem 1.5rem;
    }

    .apa-service-title h3 {
        font-size: 1.5rem;
    }

    .apa-service-icon {
        width: 56px;
        height: 56px;
    }

    .apa-service-icon .material-symbols-outlined {
        font-size: 1.75rem;
    }
}

/* Gutenberg Columns for Services Grid - Home Page */
.apa-home-services .apa-services-grid {
    gap: 2.5rem !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
}

.apa-home-services .apa-services-grid .wp-block-column {
    padding: 0 !important;
    flex-basis: auto !important;
}

@media (min-width: 782px) {
    .apa-home-services .apa-services-grid {
        gap: 3rem !important;
        grid-template-columns: 1fr 1fr !important;
    }
}

/* Legacy support */
.apa-service-column {
    display: none;
}

.apa-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--apa-gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

.apa-service-link:hover {
    color: var(--apa-dark);
}

/* ============================================
   SERVICE CARDS V2 - HORIZONTAL HEADER DESIGN
   ============================================ */

/* Card Container V2 */
.apa-service-card-v2 {
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.apa-service-card-v2:hover {
    border-color: rgba(184, 148, 29, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Inner container for padding */
.apa-service-card-inner {
    padding: 2rem 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Horizontal Header - Icon beside title */
.apa-service-card-header-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Icon V2 - Mayor presencia visual */
.apa-service-icon-v2 {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(184, 148, 29, 0.12) 0%, rgba(184, 148, 29, 0.04) 100%);
    border: 2.5px solid rgba(184, 148, 29, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.apa-service-icon-v2 .material-symbols-outlined {
    font-size: 2.25rem;
    color: var(--apa-gold);
}

.apa-service-card-v2:hover .apa-service-icon-v2 {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, rgba(184, 148, 29, 0.18) 0%, rgba(184, 148, 29, 0.06) 100%);
    border-color: rgba(184, 148, 29, 0.35);
}

/* Title Section V2 */
.apa-service-title-v2 {
    flex: 1;
}

.apa-service-title-v2 h3 {
    font-family: var(--apa-font-display);
    font-size: 1.375rem;
    color: #0A0A0A;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Eyebrow text above title */
.apa-service-eyebrow-v2 {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--apa-gold);
    margin-bottom: 0.25rem;
}

/* Metric Box - Prominent stats */
.apa-service-metric {
    background: linear-gradient(135deg, rgba(184, 148, 29, 0.12) 0%, rgba(184, 148, 29, 0.06) 100%);
    border: 1px solid rgba(184, 148, 29, 0.25);
    padding: 0.875rem 1.25rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.apa-metric-value {
    display: block;
    font-family: var(--apa-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--apa-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.apa-metric-label {
    display: block;
    font-size: 0.75rem;
    color: #525252;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Description V2 - Italic quote style */
.apa-service-desc-v2 {
    color: #525252;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    font-style: italic;
    padding-left: 1rem;
    border-left: 2px solid rgba(184, 148, 29, 0.3);
}

/* Feature List V2 - With check icons */
.apa-service-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
}

.apa-service-list-v2 li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: #333333;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.apa-service-list-v2 li:last-child {
    border-bottom: none;
}

.apa-service-list-v2 li .material-symbols-outlined {
    color: var(--apa-gold);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: -0.125rem;
}

/* Full-width CTA Button */
.apa-service-cta-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--apa-gold);
    color: #0A0A0A;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem;
    margin: 0;
    transition: all 0.25s ease;
    border-top: 1px solid rgba(184, 148, 29, 0.3);
}

.apa-service-cta-v2:hover {
    background: #0A0A0A;
    color: #ffffff;
}

.apa-service-cta-v2 .apa-arrow {
    transition: transform 0.25s ease;
}

.apa-service-cta-v2:hover .apa-arrow {
    transform: translateX(3px);
}

/* Modest Link CTA for service cards */
.apa-service-link-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 1rem 1.5rem;
    color: #525252;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.apa-service-link-more:hover {
    color: var(--apa-gold);
    background: rgba(184, 148, 29, 0.04);
}

.apa-service-link-more .apa-arrow {
    transition: transform 0.25s ease;
}

.apa-service-link-more:hover .apa-arrow {
    transform: translateX(4px);
}

/* Responsive for V2 Cards */
@media (max-width: 768px) {
    .apa-service-card-inner {
        padding: 1.5rem 1.5rem 1rem;
    }

    .apa-service-card-header-v2 {
        gap: 0.875rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }

    .apa-service-icon-v2 {
        width: 60px;
        height: 60px;
    }

    .apa-service-icon-v2 .material-symbols-outlined {
        font-size: 1.875rem;
    }

    .apa-service-title-v2 h3 {
        font-size: 1.25rem;
    }

    .apa-metric-value {
        font-size: 1.75rem;
    }

    .apa-service-desc-v2 {
        font-size: 0.875rem;
        padding-left: 0.875rem;
    }
}

/* CTA BAR - Dark Elite Style */
.apa-cta-elite {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: linear-gradient(180deg, #0a0a0a 0%, #0A0A0A 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(184, 148, 29, 0.3);
    border-bottom: 1px solid rgba(184, 148, 29, 0.3);
    min-height: 400px;
}

/* Glow sutil de fondo */
.apa-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(184, 148, 29, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.apa-cta-elite .apa-container {
    position: relative;
    z-index: 1;
}

/* Headline con tipografía mixta */
.apa-cta-headline {
    font-family: var(--apa-font-display);
    font-size: clamp(1.75rem, 5vw, 3rem);
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    font-style: normal;
}

.apa-cta-headline .apa-cta-accent {
    color: var(--apa-gold);
    font-style: italic;
    position: relative;
}

.apa-cta-headline .apa-cta-accent::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--apa-gold);
    opacity: 0.4;
}

.apa-cta-sub {
    font-family: var(--apa-font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 460px;
    margin: -1.25rem auto 2.5rem;
    line-height: 1.7;
}

/* Contenedor de botones */
.apa-cta-buttons-elite {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* CTA PRIMARIO - El rey, sólido dorado */
.apa-btn-elite-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--apa-gold);
    color: #0A0A0A;
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0px;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 15px rgba(184, 148, 29, 0.3),
        0 0 30px rgba(184, 148, 29, 0.15);
}

.apa-btn-elite-primary .material-symbols-outlined {
    font-size: 1.125rem;
}

.apa-btn-elite-primary:hover {
    background: #ffffff;
    color: #0A0A0A;
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(255, 255, 255, 0.2);
}

/* CTA SECUNDARIO - Discreto, no compite */
.apa-btn-elite-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.apa-btn-elite-secondary .material-symbols-outlined {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.apa-btn-elite-secondary:hover {
    color: var(--apa-gold);
    border-bottom-color: var(--apa-gold);
}

.apa-btn-elite-secondary:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* Responsive */
@media (min-width: 768px) {
    .apa-cta-elite {
        padding: 6rem 2rem;
    }

    .apa-cta-buttons-elite {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }

    .hide-mobile {
        display: block !important;
    }
}

/* Hide on mobile by default */
.hide-mobile {
    display: none;
}

/* Legacy support */
.apa-cta-bar,
.apa-cta-text,
.apa-cta-buttons,
.apa-btn-outline-light {
    display: none;
}

/* ALPHA METHOD - Gold Luxury Style (Reglas de Lujo) */
.apa-method-gold {
    padding: 6rem 0;
    background: linear-gradient(180deg, #C8973A 0%, #A67C2E 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(184, 148, 29, 0.5);
    border-bottom: 1px solid rgba(184, 148, 29, 0.5);
}

/* Glow deshabilitado - fondo mate */
.apa-method-glow {
    display: none;
}

.apa-method-gold .apa-container {
    position: relative;
    z-index: 1;
}

/* Header Styles - Dorado mate */
.apa-eyebrow-gold {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #0A0A0A;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.apa-title-gold {
    font-family: var(--apa-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: #0A0A0A;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Subrayado animado con scroll reveal */
.apa-title-reveal {
    position: relative;
    display: inline-block;
}

/* Override: título no hace fade, solo subrayado animado */
.apa-title-reveal.reveal-element {
    opacity: 1;
    transform: none;
}

.apa-title-reveal::after {
    content: '';
    position: absolute;
    bottom: -0.15em;
    left: 0;
    width: 0;
    height: 3px;
    background: #0A0A0A;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apa-title-reveal.is-visible::after {
    width: 100%;
}

.apa-subtitle-gold {
    color: #ffffff;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Cards Grid */
.apa-method-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Individual Cards - Cálidas con acento gold */
.apa-method-card {
    background: #faf7f0;
    border-radius: 4px;
    padding: 2rem 1.5rem;
    position: relative;
    text-align: center;
    box-shadow:
        0 4px 12px -2px rgba(0,0,0,0.08),
        0 2px 6px -1px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(184, 148, 29, 0.2);
    border-top: 3px solid #B8941D;
}

.apa-method-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 16px 40px -8px rgba(0,0,0,0.15),
        0 8px 20px -4px rgba(0,0,0,0.08);
    border-top-color: #C8973A;
    background: #ffffff;
}

/* Eyebrow con subrayado decorativo */
.apa-card-eyebrow {
    display: inline-block;
    font-family: var(--apa-font-body);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #B8941D;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(184, 148, 29, 0.4);
    margin-bottom: 1.25rem;
}

/* Icon Container - Tinte gold visible */
.apa-card-icon {
    width: 68px;
    height: 68px;
    background: rgba(184, 148, 29, 0.1);
    border: 1px solid rgba(184, 148, 29, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.apa-method-card:hover .apa-card-icon {
    background: #0A0A0A;
    border-color: #0A0A0A;
    transform: scale(1.08);
}

.apa-card-icon .material-symbols-outlined {
    font-size: 2rem;
    color: #B8941D;
    transition: color 0.3s ease;
}

.apa-method-card:hover .apa-card-icon .material-symbols-outlined {
    color: #C8973A;
}

/* Card Content */
.apa-method-card h3 {
    font-family: var(--apa-font-display);
    font-size: 1.25rem;
    color: #0A0A0A;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.apa-method-card p {
    color: #555555;
    font-size: 0.9375rem;
    line-height: 1.7;
    border-left: 2px solid rgba(184, 148, 29, 0.3);
    padding-left: 0.75rem;
    text-align: left;
}

/* Legacy: conectores ya no se usan */
.apa-card-connector {
    display: none !important;
}

/* Responsive */
@media (min-width: 768px) {
    .apa-method-gold {
        padding: 7rem 0;
    }

    .apa-method-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1024px) {
    .apa-method-cards {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .apa-advantage-section .apa-method-cards {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
    }

    .apa-method-gold:not(.apa-advantage-section) .apa-method-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Legacy support */
.apa-method,
.apa-method-steps,
.apa-method-step,
.apa-step-number,
.apa-step-content,
.apa-card-number {
    display: none;
}

/* REVIEWS - Premium Dark Style */
.apa-reviews-premium {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0A0A0A 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(184, 148, 29, 0.1);
}

/* REVIEWS - Light Version */
.apa-reviews-light {
    background: var(--apa-ivory);
    border-top: none;
}

.apa-reviews-light .apa-reviews-glow {
    display: none;
}

.apa-reviews-light .apa-stars-rating .material-symbols-outlined {
    color: var(--apa-gold);
}

.apa-reviews-light .apa-eyebrow-reviews {
    color: var(--apa-gold);
}

.apa-reviews-light h2 {
    color: var(--apa-dark);
}

.apa-reviews-light .apa-reviews-subtitle {
    color: var(--apa-text-dark-muted);
}

/* FINAL CTA - Light Version */
.apa-final-cta-section.apa-final-cta-light {
    background: var(--apa-ivory);
}

.apa-final-cta-section.apa-final-cta-light h2 {
    color: var(--apa-dark);
}

.apa-final-cta-section.apa-final-cta-light p {
    color: var(--apa-text-dark-muted);
}

/* Review Cards - Light Version */
.apa-reviews-light .apa-review-card-premium {
    background: #ffffff;
    border: 1px solid var(--apa-border-subtle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.apa-reviews-light .apa-review-card-premium:hover {
    border-color: rgba(184, 148, 29, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.apa-reviews-light .apa-review-quote {
    color: var(--apa-dark);
}

.apa-reviews-light .apa-review-author strong {
    color: var(--apa-dark);
}

.apa-reviews-light .apa-review-author span {
    color: var(--apa-text-dark-muted);
}

/* Glow sutil de fondo */
.apa-reviews-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(184, 148, 29, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.apa-reviews-premium .apa-container {
    position: relative;
    z-index: 1;
}

/* Header Section */
.apa-reviews-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* 5 Stars Rating */
.apa-stars-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.apa-stars-rating .material-symbols-outlined {
    color: var(--apa-gold);
    font-size: 1.75rem;
    filter: drop-shadow(0 0 8px rgba(184, 148, 29, 0.4));
}

/* Eyebrow */
.apa-eyebrow-reviews {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

/* Title */
.apa-reviews-header h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Subtitle */
.apa-reviews-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Reviews Showcase Grid */
.apa-reviews-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Review Cards Premium - Testimonios escritos */
.apa-review-card-premium {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8) 0%, rgba(13, 13, 13, 0.9) 100%);
    border-radius: 4px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.apa-review-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 148, 29, 0.25);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(184, 148, 29, 0.08);
}

/* Review Header - Estrellas y badge */
.apa-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.apa-review-stars {
    display: flex;
    gap: 0.125rem;
}

.apa-review-stars .material-symbols-outlined {
    color: var(--apa-gold);
    font-size: 1.125rem;
    filter: drop-shadow(0 0 4px rgba(184, 148, 29, 0.4));
}

.apa-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(184, 148, 29, 0.1);
    border: 1px solid rgba(184, 148, 29, 0.25);
    padding: 0.375rem 0.625rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--apa-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.apa-verified-badge .material-symbols-outlined {
    font-size: 0.875rem;
}

/* Quote Block */
.apa-review-quote {
    font-family: var(--apa-font-display);
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    padding: 0;
    font-style: italic;
    position: relative;
}

.apa-review-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(184, 148, 29, 0.15);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Author Info */
.apa-review-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.apa-author-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(145deg, var(--apa-gold), #9A7D18);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0A0A0A;
}

.apa-author-info {
    display: flex;
    flex-direction: column;
}

.apa-author-info strong {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
}

.apa-author-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
}

/* Reviews CTA */
.apa-reviews-cta {
    text-align: center;
}

.apa-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 0px;
    transition: all 0.3s ease;
}

.apa-reviews-link:hover {
    color: var(--apa-gold);
    border-color: var(--apa-gold);
    background: rgba(184, 148, 29, 0.05);
}

.apa-reviews-link .material-symbols-outlined {
    font-size: 1rem;
}

.apa-reviews-link .apa-arrow {
    transition: transform 0.3s ease;
}

.apa-reviews-link:hover .apa-arrow {
    transform: translateX(4px);
}

/* Responsive */
@media (min-width: 768px) {
    .apa-reviews-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .apa-review-card-premium {
        padding: 2.5rem;
    }

    .apa-review-quote {
        font-size: 1.125rem;
    }
}

/* Legacy support */
.apa-reviews,
.apa-reviews-grid,
.apa-review-card,
.apa-review-image,
.apa-review-frame,
.apa-review-badge {
    display: none;
}

/* SERVICE AREAS - Bento Grid Premium */
.apa-areas-bento {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f6f3 0%, #ffffff 50%, #f8f6f3 100%);
}

/* Header */
.apa-areas-bento-header {
    text-align: center;
    margin-bottom: 3rem;
}

.apa-eyebrow-bento {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--apa-gold);
    margin-bottom: 1rem;
}

.apa-areas-bento-header h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: #0A0A0A;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.apa-bento-lead {
    color: #555555;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Bento Grid - Desktop: GA 50%, otros 16.67% */
.apa-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

/* Bento Cell */
.apa-bento-cell {
    background: #ffffff;
    border-radius: 4px;
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.apa-bento-cell:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.08),
        0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

/* Georgia HQ */
.apa-bento-hq {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(184, 148, 29, 0.25);
    color: #ffffff;
}

.apa-bento-hq:hover {
    border-color: rgba(184, 148, 29, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 40px rgba(184, 148, 29, 0.08);
}

/* Badge HQ */
.apa-bento-badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background: var(--apa-gold);
    color: #0A0A0A;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border-radius: 0 0 4px 4px;
}

/* State Header - Flag encima del título */
.apa-bento-state-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.apa-bento-flag {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background: #0A0A0A;
    color: var(--apa-gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.apa-bento-hq .apa-bento-flag {
    background: var(--apa-gold);
    color: #0A0A0A;
}

.apa-bento-state-header h3 {
    font-family: var(--apa-font-display);
    font-size: 1.25rem;
    color: #0A0A0A;
    font-weight: 600;
    margin: 0;
}

.apa-bento-hq .apa-bento-state-header h3 {
    color: #ffffff;
}

/* Cities Compact - todas las tarjetas */
.apa-bento-cities-compact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    color: #4A4A4A;
}

.apa-bento-hq .apa-bento-cities-compact {
    color: rgba(255, 255, 255, 0.75);
}

.apa-bento-city-item {
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.apa-bento-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: var(--apa-gold);
    border-radius: 4px;
    display: inline-block;
    margin-right: 0.5rem;
}

/* Link - todas las tarjetas */
.apa-bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #0A0A0A;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: auto;
    padding: 0.5rem 0.25rem;
}

.apa-bento-link:hover {
    color: var(--apa-gold);
}

.apa-bento-hq .apa-bento-link {
    color: var(--apa-gold);
}

.apa-bento-hq .apa-bento-link:hover {
    color: #ffffff;
}

/* ============================================
   LEAFLET MAP - Coverage Area Interactive
   ============================================ */

.apa-bento-map-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.2);
}

/* Leaflet Map Container */
.apa-leaflet-map {
    width: 100%;
    height: 350px;
    background: #e5e5e5;
    z-index: 1;
}

/* Custom Marker Styles */
.apa-custom-marker {
    background: var(--apa-gold);
    border: 3px solid white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    position: relative;
    transition: transform 0.2s ease;
}

.apa-custom-marker:hover {
    transform: scale(1.2);
}

/* HQ Marker - Larger and with pulse */
.apa-custom-marker-hq {
    width: 32px;
    height: 32px;
    background: var(--apa-gold);
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(184, 148, 29, 0.3);
}

.apa-custom-marker-hq::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Map Legend */
.apa-map-legend {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.25rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.apa-map-legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--apa-dark);
    cursor: pointer;
    padding: 0.35rem 0.5rem;
    margin: -0.35rem -0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.apa-map-legend-item:hover {
    background: rgba(184, 148, 29, 0.1);
}

.apa-map-legend-item:hover .apa-map-marker {
    transform: scale(1.2);
}

.apa-map-legend-item .apa-map-marker {
    transition: transform 0.3s ease;
}

/* HQ item destacado */
.apa-legend-hq {
    font-weight: 600;
}

.apa-map-marker {
    width: 16px;
    height: 16px;
    background: var(--apa-gold);
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.apa-map-marker-hq {
    width: 20px;
    height: 20px;
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(184, 148, 29, 0.3);
}

/* Leaflet Popup Customization */
.leaflet-popup-content-wrapper {
    background: rgba(10, 10, 10, 0.95);
    color: white;
    border-radius: 4px;
    padding: 0;
}

.leaflet-popup-content {
    margin: 0;
    padding: 1rem 1.25rem;
    font-family: var(--apa-font-body);
    font-size: 0.875rem;
}

.leaflet-popup-content h4 {
    color: var(--apa-gold);
    margin: 0 0 0.5rem 0;
    font-family: var(--apa-font-display);
    font-size: 1rem;
}

.leaflet-popup-content p {
    margin: 0;
    color: rgba(255,255,255,0.8);
}

.leaflet-popup-tip {
    background: rgba(10, 10, 10, 0.95);
}

/* Map Old Styles (for reference/backwards compatibility) */
.apa-bento-map {
    width: 100%;
    height: 250px;
    background: #e5e5e5;
}

.apa-bento-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Map Overlay Old Styles */
.apa-bento-map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.apa-map-pins {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.apa-map-pin {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 0.8125rem;
    color: #ffffff;
    font-weight: 600;
}

.apa-map-pin.active {
    background: var(--apa-gold);
    color: #0A0A0A;
    border-color: var(--apa-gold);
}

/* Responsive */
@media (min-width: 768px) {
    .apa-areas-bento {
        padding: 7rem 0;
    }

    .apa-areas-bento .apa-container {
        max-width: var(--apa-container-lg);
    }

    .apa-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apa-bento-map {
        height: 300px;
    }
}

@media (min-width: 1024px) {
    .apa-bento-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .apa-bento-cell {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
    }
}

/* Legacy support */
.apa-service-areas,
.apa-service-header,
.apa-service-layout,
.apa-service-states,
.apa-areas-premium,
.apa-areas-header,
.apa-areas-grid,
.apa-area-card {
    display: none;
}

/* CONTACT HOME - Mobile First */
.apa-contact-home {
    padding: 4rem 0;
    background: var(--apa-dark);
}

.apa-contact-home .apa-section-header h2 {
    color: var(--apa-light);
}

.apa-contact-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.apa-contact-form-home {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.apa-contact-form-home .apa-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.apa-contact-form-home .apa-form-field {
    margin-bottom: 1rem;
}

.apa-contact-form-home label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.apa-contact-form-home input,
.apa-contact-form-home select,
.apa-contact-form-home textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0px;
    background: rgba(255,255,255,0.05);
    color: var(--apa-light);
    font-family: var(--apa-font-body);
    font-size: 1rem;
}

.apa-contact-form-home input:focus,
.apa-contact-form-home select:focus,
.apa-contact-form-home textarea:focus {
    outline: none;
    border-color: var(--apa-gold);
}

.apa-contact-form-home .apa-form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--apa-gold);
    color: var(--apa-dark);
    border: none;
    border-radius: 0px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* FAQ HOME - Mobile First */
.apa-faq-section-home {
    color: var(--apa-light);
}

.apa-faq-list-home {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.apa-faq-item-home {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.apa-faq-question-home {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    background: none;
    border: none;
    color: var(--apa-light);
    font-family: var(--apa-font-body);
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
}

.apa-faq-question-home .material-symbols-outlined {
    color: var(--apa-gold);
    transition: transform 0.3s ease;
}

.apa-faq-question-home[aria-expanded="true"] .material-symbols-outlined {
    transform: rotate(45deg);
}

.apa-faq-answer-home {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.apa-faq-answer-home p {
    padding-bottom: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.apa-faq-link {
    display: block;
    text-align: left;
    padding: 1rem 0;
    color: var(--apa-gold);
    font-weight: 600;
    text-decoration: none;
}

/* FAQ HOME LIGHT - Para usar con fondo claro */
.apa-faq-home-light {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.apa-faq-home-light .apa-section-header {
    margin-bottom: 1.5rem;
}

.apa-faq-home-light .apa-eyebrow-home {
    color: var(--apa-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.5rem;
}

.apa-faq-home-light h2 {
    font-family: var(--apa-font-display);
    font-size: 1.5rem;
    color: var(--apa-light);
    margin: 0;
}

.apa-faq-list-home-light {
    display: flex;
    flex-direction: column;
}

.apa-faq-item-home-light {
    border-bottom: 1px solid var(--apa-gold);
}

.apa-faq-item-home-light:last-child {
    border-bottom: none;
}

.apa-faq-question-home-light {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--apa-light);
    font-family: var(--apa-font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.apa-faq-question-home-light:hover {
    color: var(--apa-gold);
}

.apa-faq-question-home-light .material-symbols-outlined {
    color: var(--apa-gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.apa-faq-question-home-light[aria-expanded="true"] .material-symbols-outlined {
    transform: rotate(45deg);
}

.apa-faq-answer-home-light {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.apa-faq-answer-home-light p {
    padding-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.apa-faq-link-home-light {
    display: block;
    text-align: left;
    padding: 1.25rem 0 0 0;
    color: var(--apa-gold);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.apa-faq-link-home-light:hover {
    color: #ffffff;
}

/* FAQ HOME DARK - Para usar con fondo oscuro de contact-home */
.apa-faq-home-dark {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.apa-faq-home-dark .apa-section-header {
    margin-bottom: 1.5rem;
}

.apa-faq-home-dark .apa-eyebrow-home-dark {
    color: var(--apa-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.5rem;
}

.apa-faq-home-dark h2 {
    font-family: var(--apa-font-display);
    font-size: 1.5rem;
    color: var(--apa-light);
    margin: 0;
}

.apa-faq-list-home-dark {
    display: flex;
    flex-direction: column;
}

.apa-faq-item-home-dark {
    border-bottom: 1px solid rgba(184, 148, 29, 0.3);
}

.apa-faq-item-home-dark:last-child {
    border-bottom: none;
}

.apa-faq-question-home-dark {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--apa-light);
    font-family: var(--apa-font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.apa-faq-question-home-dark:hover {
    color: var(--apa-gold);
}

.apa-faq-question-home-dark .material-symbols-outlined {
    color: var(--apa-gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.apa-faq-question-home-dark[aria-expanded="true"] .material-symbols-outlined {
    transform: rotate(45deg);
}

.apa-faq-answer-home-dark {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.apa-faq-answer-home-dark p {
    padding-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.apa-faq-link-home-dark {
    display: block;
    text-align: left;
    padding: 1.25rem 0 0 0;
    color: var(--apa-gold);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.apa-faq-link-home-dark:hover {
    color: #ffffff;
}

/* TABLET (768px+) */
@media (min-width: 768px) {
    .apa-hero-v2 .apa-hero-ctas {
        flex-direction: row;
        justify-content: center;
    }

    .apa-services-split {
        grid-template-columns: 1fr 1fr;
    }

    .apa-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .apa-method-steps {
        grid-template-columns: 1fr 1fr;
    }

    .apa-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apa-static-map {
        height: 400px;
    }

    .apa-contact-form-home .apa-form-row {
        grid-template-columns: 1fr 1fr;
    }

    .apa-contact-split {
        grid-template-columns: 1fr 1fr;
    }
}

/* DESKTOP (1024px+) */
@media (min-width: 1024px) {
    .apa-method-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .apa-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .apa-areas-content {
        grid-template-columns: 2fr 1fr;
    }

    .apa-trust-items {
        justify-content: space-between;
    }
}

/* ============================================
   PAGE TEMPLATES - MOBILE FIRST
   Services, Service Areas, Contact pages
   ============================================ */

/* Page Hero - Base (Mobile) */
.apa-page-hero {
    background: var(--apa-dark);
    padding: 120px 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.apa-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(184, 148, 29, 0.1) 0%, transparent 70%);
}

.apa-page-hero h1 {
    font-family: var(--apa-font-display);
    font-size: clamp(2rem, 8vw, 4rem);
    color: var(--apa-light);
    margin-bottom: 1rem;
    position: relative;
    font-style: italic;
}

.apa-page-subtitle {
    font-size: 1.125rem;
    color: var(--apa-text-ivory-muted);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    line-height: 1.6;
}

/* Container base (mobile-first) */
.apa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Services Section - Mobile First */
.apa-services-section {
    padding: 4rem 0;
    background: var(--apa-light);
}

.apa-services-dark {
    background: var(--apa-dark);
}

.apa-service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.apa-service-header .apa-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--apa-gold);
    margin-bottom: 1rem;
}

.apa-service-header h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: var(--apa-dark);
    margin-bottom: 1rem;
}

.apa-services-dark .apa-service-header h2 {
    color: var(--apa-light);
}

.apa-service-header p {
    font-size: 1rem;
    color: var(--apa-charcoal);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.apa-services-dark .apa-service-header p {
    color: var(--apa-text-ivory-muted);
}

/* Services Grid - Mobile First (1 column) */
.apa-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.apa-service-card {
    background: var(--apa-ivory);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid var(--apa-border-charcoal);
    transition: all 0.3s ease;
}

.apa-service-card:hover {
    border-color: var(--apa-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.apa-service-icon {
    width: 48px;
    height: 48px;
    background: var(--apa-gold-subtle);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.apa-service-icon .material-symbols-outlined {
    font-size: 24px;
    color: var(--apa-gold);
}

.apa-service-card h3 {
    font-family: var(--apa-font-display);
    font-size: 1.25rem;
    color: var(--apa-dark);
    margin-bottom: 0.75rem;
}

.apa-service-card p {
    font-size: 0.9rem;
    color: var(--apa-charcoal);
    line-height: 1.6;
}

/* Services CTA */
.apa-services-cta {
    background: var(--apa-ivory);
    padding: 4rem 1.5rem;
    text-align: center;
}

.apa-services-cta h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
}

.apa-services-cta p {
    color: var(--apa-charcoal);
    margin-bottom: 2rem;
}

/* Service Areas Page - Mobile First */
.apa-map-section {
    padding: 2rem 0;
    background: var(--apa-light);
}

.apa-map-container {
    width: 100%;
    height: 300px;
    background: var(--apa-ivory);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--apa-border-charcoal);
}

.apa-map-placeholder {
    text-align: center;
    color: var(--apa-charcoal);
}

.apa-map-placeholder .material-symbols-outlined {
    font-size: 48px;
    color: var(--apa-gold);
    margin-bottom: 1rem;
}

.apa-map-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.apa-map-note {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* States Section - Mobile First */
.apa-states-section {
    padding: 4rem 0;
    background: var(--apa-light);
}

.apa-state-card {
    background: var(--apa-ivory);
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--apa-border-charcoal);
}

.apa-state-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.apa-state-header h2 {
    font-family: var(--apa-font-display);
    font-size: 1.75rem;
    color: var(--apa-dark);
}

.apa-state-badge {
    background: var(--apa-gold);
    color: var(--apa-dark);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 0px;
}

.apa-state-office {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--apa-border-charcoal);
}

.apa-state-office h3 {
    font-size: 1.125rem;
    color: var(--apa-dark);
    margin-bottom: 0.75rem;
}

.apa-state-office address {
    font-style: normal;
    color: var(--apa-charcoal);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.apa-state-phone {
    color: var(--apa-gold);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
}

.apa-state-cities h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--apa-charcoal);
    margin-bottom: 1rem;
}

.apa-state-cities ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.apa-state-cities li {
    font-size: 0.9rem;
    color: var(--apa-charcoal);
    padding-left: 1rem;
    position: relative;
}

.apa-state-cities li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--apa-gold);
    font-size: 0.75rem;
}

/* Areas CTA */
.apa-areas-cta {
    background: var(--apa-dark);
    padding: 4rem 1.5rem;
    text-align: center;
}

.apa-areas-cta h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--apa-light);
    margin-bottom: 1rem;
}

.apa-areas-cta p {
    color: var(--apa-text-ivory-muted);
    margin-bottom: 2rem;
}

/* Contact Page - Mobile First */
.apa-contact-section {
    padding: 4rem 0;
    background: var(--apa-light);
}

.apa-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Contact Info */
.apa-contact-info h2,
.apa-contact-form-wrapper h2 {
    font-family: var(--apa-font-display);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.apa-contact-methods {
    margin-bottom: 3rem;
}

.apa-contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.apa-contact-method .material-symbols-outlined {
    font-size: 24px;
    color: var(--apa-gold);
    flex-shrink: 0;
}

.apa-contact-method h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--apa-charcoal);
    margin-bottom: 0.25rem;
}

.apa-contact-method a {
    display: block;
    color: var(--apa-dark);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    margin-bottom: 0.25rem;
}

.apa-contact-method address {
    font-style: normal;
    color: var(--apa-charcoal);
    font-size: 0.9rem;
    line-height: 1.5;
}

.apa-contact-hours,
.apa-contact-note {
    display: block;
    font-size: 0.75rem;
    color: var(--apa-charcoal);
    opacity: 0.7;
}

/* Social Links */
.apa-contact-social h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--apa-charcoal);
    margin-bottom: 1rem;
}

.apa-social-links {
    display: flex;
    gap: 1rem;
}

.apa-social-links a {
    width: 40px;
    height: 40px;
    background: var(--apa-ivory);
    border: 1px solid var(--apa-border-charcoal);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--apa-charcoal);
    transition: all 0.3s ease;
}

.apa-social-links a:hover {
    background: var(--apa-gold);
    color: var(--apa-dark);
    border-color: var(--apa-gold);
}

/* Contact Form */
.apa-contact-form-wrapper {
    background: var(--apa-ivory);
    padding: 2rem;
    border-radius: 4px;
}

.apa-contact-form .apa-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.apa-form-field {
    margin-bottom: 1.5rem;
}

.apa-form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--apa-charcoal);
    margin-bottom: 0.5rem;
}

.apa-form-field input,
.apa-form-field select,
.apa-form-field textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--apa-border-charcoal);
    border-radius: 0px;
    font-family: var(--apa-font-body);
    font-size: 1rem;
    background: var(--apa-light);
    transition: border-color 0.3s ease;
}

.apa-form-field input:focus,
.apa-form-field select:focus,
.apa-form-field textarea:focus {
    outline: none;
    border-color: var(--apa-gold);
}

.apa-form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--apa-gold);
    color: var(--apa-dark);
    border: none;
    border-radius: 0px;
    font-family: var(--apa-font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.apa-form-submit:hover {
    background: var(--apa-dark);
    color: var(--apa-light);
}

/* FAQ Section - Mobile First */
.apa-faq-section {
    background: var(--apa-dark);
    padding: 4rem 0;
}

.apa-faq-section h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--apa-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* FAQ Section - Light Version */
.apa-faq-section-light {
    background: #FFFFFF;
    padding: 4rem 0;
}

.apa-faq-section-light .apa-section-header .apa-eyebrow {
    color: var(--apa-gold);
}

.apa-faq-section-light .apa-section-header h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--apa-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.apa-faq-section-light h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--apa-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.apa-faq-section-light .apa-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.apa-faq-section-light .apa-faq-item {
    border-bottom: 1px solid var(--apa-border-subtle);
}

.apa-faq-section-light .apa-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--apa-dark);
    font-family: var(--apa-font-body);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.apa-faq-section-light .apa-faq-question:hover {
    color: var(--apa-gold);
}

.apa-faq-section-light .apa-faq-question .material-symbols-outlined {
    flex-shrink: 0;
    color: var(--apa-gold);
    transition: transform 0.3s ease;
}

.apa-faq-section-light .apa-faq-question[aria-expanded="true"] .material-symbols-outlined {
    transform: rotate(45deg);
}

.apa-faq-section-light .apa-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.apa-faq-section-light .apa-faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--apa-text-dark-muted);
    line-height: 1.7;
}

.apa-faq-section-light .apa-faq-link,
.apa-faq-link-light {
    display: block;
    text-align: center;
    padding: 1.5rem 0;
    color: var(--apa-gold);
    font-weight: 600;
    text-decoration: none;
}

.apa-faq-link-light:hover {
    color: var(--apa-dark);
}

.apa-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.apa-faq-item {
    border-bottom: 1px solid var(--apa-border-subtle-dark);
}

.apa-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--apa-light);
    font-family: var(--apa-font-body);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.apa-faq-question:hover {
    color: var(--apa-gold);
}

.apa-faq-question .material-symbols-outlined {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.apa-faq-question[aria-expanded="true"] .material-symbols-outlined {
    transform: rotate(45deg);
}

.apa-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.apa-faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--apa-text-ivory-muted);
    line-height: 1.7;
}

/* FAQ Light Version */
.apa-faq-section-light {
    background: #FFFFFF;
    padding: 4rem 0;
}

.apa-faq-section-light .apa-section-header .apa-eyebrow {
    color: var(--apa-gold);
}

.apa-faq-section-light .apa-section-header h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--apa-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.apa-faq-list-light {
    max-width: 800px;
    margin: 0 auto;
}

.apa-faq-item-light {
    border-bottom: 1px solid var(--apa-gold);
}

.apa-faq-question-light {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--apa-dark);
    font-family: var(--apa-font-body);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.apa-faq-question-light:hover {
    color: var(--apa-gold);
}

.apa-faq-question-light .material-symbols-outlined {
    flex-shrink: 0;
    color: var(--apa-gold);
    transition: transform 0.3s ease;
}

.apa-faq-question-light[aria-expanded="true"] .material-symbols-outlined {
    transform: rotate(45deg);
}

.apa-faq-answer-light {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.apa-faq-answer-light p {
    padding-bottom: 1.5rem;
    color: var(--apa-text-dark-muted);
    line-height: 1.7;
}

.apa-faq-section-light .apa-faq-link {
    display: block;
    text-align: center;
    padding: 1.5rem 0;
    color: var(--apa-gold);
    font-weight: 600;
    text-decoration: none;
}

/* ============================================
   FAQ PAGE — Inner Hero
   ============================================ */
.apa-inner-hero {
    position: relative;
    background: var(--apa-dark);
    padding: 9rem 1.5rem 5rem;
    text-align: center;
    overflow: hidden;
}

.apa-inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184,148,29,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.apa-inner-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184,148,29,0.4), transparent);
}

.apa-inner-hero-overlay {
    display: none;
}

.apa-inner-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.apa-inner-hero-content .apa-eyebrow-light {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--apa-gold);
    margin-bottom: 1rem;
}

.apa-inner-hero-content h1 {
    font-family: var(--apa-font-display);
    font-size: clamp(2rem, 6vw, 3.25rem);
    font-weight: 400;
    color: var(--apa-light);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.apa-inner-hero-content p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   FAQ PAGE — Category Nav
   ============================================ */
.apa-faq-page-nav {
    background: var(--apa-dark-elevated);
    border-bottom: 1px solid rgba(184,148,29,0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.apa-faq-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.apa-faq-nav-links::-webkit-scrollbar {
    display: none;
}

.apa-faq-nav-links a {
    display: inline-block;
    padding: 1rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.apa-faq-nav-links a:hover {
    color: var(--apa-gold);
    border-bottom-color: var(--apa-gold);
}

/* ============================================
   FAQ PAGE — Dark Section Variant
   ============================================ */
.apa-faq-section-dark {
    background: var(--apa-dark);
    padding: 5rem 0;
    position: relative;
}

.apa-faq-section-dark .apa-section-header h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--apa-light);
    text-align: center;
    margin-bottom: 3rem;
}

.apa-faq-section-dark .apa-section-header p {
    color: rgba(255,255,255,0.55);
}

.apa-faq-section-dark .apa-eyebrow-gold {
    color: var(--apa-gold);
}

.apa-faq-list-dark {
    max-width: 800px;
    margin: 0 auto;
}

.apa-faq-item-dark {
    border-bottom: 1px solid rgba(184,148,29,0.25);
}

.apa-faq-item-dark:first-child {
    border-top: 1px solid rgba(184,148,29,0.25);
}

.apa-faq-question-dark {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--apa-light);
    font-family: var(--apa-font-body);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.apa-faq-question-dark:hover {
    color: var(--apa-gold);
}

.apa-faq-question-dark .material-symbols-outlined {
    flex-shrink: 0;
    color: var(--apa-gold);
    transition: transform 0.3s ease;
}

.apa-faq-question-dark[aria-expanded="true"] {
    color: var(--apa-gold);
}

.apa-faq-question-dark[aria-expanded="true"] .material-symbols-outlined {
    transform: rotate(45deg);
}

.apa-faq-answer-dark {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.apa-faq-answer-dark p {
    padding-bottom: 1.5rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    font-size: 0.9375rem;
}

.apa-faq-answer-dark p strong {
    color: var(--apa-light);
    font-weight: 600;
}

.apa-faq-answer-dark p a {
    color: var(--apa-gold);
    text-decoration: underline;
    text-decoration-color: rgba(184,148,29,0.4);
    text-underline-offset: 3px;
}

.apa-faq-answer-dark p a:hover {
    color: var(--apa-gold-light);
}

/* Light section answer links */
.apa-faq-answer-light p a {
    color: var(--apa-gold);
    text-decoration: underline;
    text-decoration-color: rgba(184,148,29,0.4);
    text-underline-offset: 3px;
}

/* Light section: alternate background for visual rhythm */
.apa-faq-section-light:nth-of-type(even) {
    background: var(--apa-ivory, #F9F6F0);
}

/* Section header description text in light sections */
.apa-faq-section-light .apa-section-header p {
    color: rgba(0,0,0,0.5);
    margin-bottom: 2.5rem;
}

/* ============================================
   FAQ PAGE — Responsive
   ============================================ */
@media (max-width: 768px) {
    .apa-inner-hero {
        padding: 7rem 1.5rem 3.5rem;
    }

    .apa-inner-hero-content h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .apa-faq-page-nav {
        position: static;
    }

    .apa-faq-nav-links {
        gap: 0;
        padding: 0 0.5rem;
    }

    .apa-faq-nav-links a {
        padding: 0.875rem 0.875rem;
        font-size: 0.75rem;
    }

    .apa-faq-section-light,
    .apa-faq-section-dark {
        padding: 3rem 0;
    }

    .apa-faq-question-light,
    .apa-faq-question-dark {
        font-size: 0.9375rem;
        padding: 1.25rem 0;
    }
}

/* Contact CTA */
.apa-contact-cta {
    background: var(--apa-ivory);
    padding: 4rem 1.5rem;
    text-align: center;
}

.apa-contact-cta h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
}

.apa-contact-cta p {
    color: var(--apa-charcoal);
    margin-bottom: 2rem;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .apa-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apa-contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .apa-contact-form .apa-form-row {
        grid-template-columns: 1fr 1fr;
    }

    .apa-state-cities ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .apa-map-container {
        height: 400px;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .apa-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .apa-contact-grid {
        gap: 4rem;
    }

    .apa-map-container {
        height: 500px;
    }
}

/* ============================================
   SERVICES PAGE V3 - NEW DESIGN
   ============================================ */

/* Hero - Services Page */
.apa-services-hero {
    position: relative;
    min-height: 90vh;
    background: var(--apa-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.apa-services-hero-bg {
    position: absolute;
    inset: 0;
}

.apa-services-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.apa-nano-placeholder {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    background: linear-gradient(135deg, rgba(184, 148, 29, 0.05) 0%, rgba(184, 148, 29, 0.02) 100%);
    border: 1px dashed rgba(184, 148, 29, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.apa-nano-placeholder-text {
    font-family: var(--apa-font-body);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--apa-gold);
    opacity: 0.5;
}

.apa-services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
}

.apa-services-hero-content {
    position: relative;
    z-index: 10;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    color: var(--apa-light);
}

.apa-services-hero .apa-eyebrow-gold {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--apa-gold);
}

.apa-services-headline {
    font-family: var(--apa-font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.apa-headline-accent {
    color: var(--apa-gold);
    font-style: italic;
}

.apa-services-subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.apa-services-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.apa-btn-outline-light {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.875rem 1.75rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apa-btn-outline-light:hover {
    background: white;
    color: var(--apa-dark);
    border-color: white;
}

/* CTA OUTLINE DORADO - Premium secondary button */
.apa-btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--apa-gold);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.875rem 1.75rem;
    border: 2px solid var(--apa-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.apa-btn-outline-gold:hover {
    background: var(--apa-gold);
    color: var(--apa-dark);
}

.apa-btn-outline-gold:hover .apa-btn-arrow {
    transform: translateY(3px);
}

.apa-btn-large {
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
}

/* Fork in the Road Section */
.apa-fork-section {
    background: var(--apa-ivory);
    padding: 2rem 0;
    border-bottom: 1px solid var(--apa-border-subtle-light);
}

.apa-fork-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.apa-fork-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--apa-border-subtle-light);
    border-radius: 4px;
    text-decoration: none;
    color: var(--apa-dark);
    transition: all 0.3s ease;
}

.apa-fork-card:hover {
    border-color: var(--apa-gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.apa-fork-icon {
    width: 48px;
    height: 48px;
    background: var(--apa-gold-subtle);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.apa-fork-icon .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--apa-gold);
}

.apa-fork-content h3 {
    font-family: var(--apa-font-display);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.apa-fork-content p {
    font-size: 0.875rem;
    color: var(--apa-charcoal);
    margin: 0;
}

.apa-fork-arrow {
    margin-left: auto;
    color: var(--apa-gold);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.apa-fork-card:hover .apa-fork-arrow {
    transform: translateX(4px);
}

/* Residential Section */
.apa-residential-section {
    background: var(--apa-light);
    padding: 6rem 0;
}

.apa-text-center {
    text-align: center;
}

.apa-section-header {
    margin-bottom: 3rem;
}

.apa-section-header .apa-eyebrow {
    margin-bottom: 1rem;
    display: block;
}

.apa-section-header h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.apa-section-subtitle {
    font-size: 1.125rem;
    color: var(--apa-charcoal);
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.7;
}

.apa-residential-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.apa-service-detail-card {
    background: white;
    border: 1px solid var(--apa-border-subtle-light);
    border-radius: 4px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.apa-service-detail-card:hover {
    border-color: var(--apa-gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.apa-service-detail-icon {
    width: 56px;
    height: 56px;
    background: var(--apa-gold-subtle);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.apa-service-detail-icon .material-symbols-outlined {
    font-size: 1.75rem;
    color: var(--apa-gold);
}

.apa-service-detail-card h3 {
    font-family: var(--apa-font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.apa-service-detail-copy {
    font-size: 0.9375rem;
    color: var(--apa-charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.apa-service-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apa-service-detail-list li {
    font-size: 0.8125rem;
    color: var(--apa-dark);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--apa-border-subtle-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.apa-service-detail-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--apa-gold);
    border-radius: 4px;
    flex-shrink: 0;
}

/* Commercial Section */
.apa-commercial-section {
    background: var(--apa-dark);
    padding: 6rem 0;
}

.apa-commercial-section .apa-text-light {
    color: white;
}

.apa-commercial-section .apa-text-muted {
    color: rgba(255,255,255,0.6);
}

/* Forzar texto claro en sección commercial */
.apa-commercial-section .apa-section-subtitle {
    color: rgba(255,255,255,0.7) !important;
}

.apa-commercial-section .apa-section-header h2 {
    color: white !important;
}

.apa-commercial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.apa-card-dark {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.apa-card-dark:hover {
    border-color: var(--apa-gold);
    background: rgba(255,255,255,0.05);
}

.apa-card-dark .apa-service-detail-icon {
    background: rgba(184, 148, 29, 0.15);
}

.apa-card-dark h3 {
    color: white;
}

.apa-card-dark .apa-service-detail-copy {
    color: rgba(255,255,255,0.8);
}

/* Forzar eyebrow dorado en modo oscuro */
.apa-commercial-section .apa-eyebrow-gold {
    color: var(--apa-gold) !important;
}

/* Listas en cards oscuros */
.apa-card-dark .apa-service-detail-list li {
    color: rgba(255,255,255,0.85);
}

.apa-card-dark .apa-service-detail-list li {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.1);
}

.apa-card-dark .apa-service-detail-list li::before {
    background: var(--apa-gold);
}

/* Alpha Advantage Section */
/* Alpha Advantage - Ahora usa estilos de apa-method-gold */
.apa-advantage-section {
    /* Hereda estilos de .apa-method-gold */
}

.apa-advantage-item p {
    font-size: 0.9375rem;
    color: var(--apa-charcoal);
    line-height: 1.7;
    max-width: 28rem;
    margin: 0 auto;
}

/* Testimonials Cross Section */
.apa-testimonials-section {
    background: var(--apa-light);
    padding: 6rem 0;
}

.apa-testimonials-cross-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.apa-card-light {
    background: white;
    border: 1px solid var(--apa-border-subtle-light);
    padding: 2rem;
    border-radius: 4px;
}

.apa-testimonial-quote {
    font-family: var(--apa-font-display);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.apa-testimonial-author {
    font-family: var(--apa-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.apa-testimonial-author span {
    font-weight: 400;
    color: var(--apa-charcoal);
}

/* Final CTA Section */
.apa-final-cta-section {
    background: var(--apa-dark);
    padding: 6rem 0;
    text-align: center;
}

.apa-final-cta-content h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: 1rem;
}

.apa-final-cta-content p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.apa-btn-huge {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

.apa-final-cta-micro {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
}

/* Responsive */
@media (min-width: 768px) {
    .apa-fork-grid {
        gap: 1.5rem;
    }
    
    .apa-residential-grid,
    .apa-commercial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .apa-advantage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .apa-testimonials-cross-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .apa-services-hero {
        min-height: 85vh;
    }
    
    .apa-nano-placeholder {
        width: 45%;
        right: -5%;
    }
    
    .apa-residential-grid,
    .apa-commercial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .apa-fork-card {
        padding: 2rem;
    }
}

/* ============================================
   SERVICE AREAS PAGE - NEW DESIGN
   ============================================ */

/* Office Section */
.apa-office-section {
    background: var(--apa-ivory);
    padding: 4rem 0;
}

.apa-office-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.apa-office-info {
    padding: 1rem;
}

.apa-office-info .apa-eyebrow {
    margin-bottom: 0.5rem;
    display: block;
}

.apa-office-info h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.apa-office-address,
.apa-office-phone,
.apa-office-hours {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--apa-charcoal);
}

.apa-office-address .material-symbols-outlined,
.apa-office-phone .material-symbols-outlined,
.apa-office-hours .material-symbols-outlined {
    color: var(--apa-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.apa-office-phone a {
    color: var(--apa-dark);
    font-weight: 600;
    text-decoration: none;
}

.apa-office-phone a:hover {
    color: var(--apa-gold);
}

.apa-office-map {
    height: 300px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--apa-border-subtle-light);
}

/* States Grid Section */
.apa-states-grid-section {
    background: var(--apa-dark);
    padding: 6rem 0;
}

.apa-states-grid-section .apa-text-light {
    color: white;
}

.apa-states-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.apa-state-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.apa-state-card-inner {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.apa-state-card-link:hover .apa-state-card-inner {
    background: rgba(255,255,255,0.1);
    border-color: var(--apa-gold);
    transform: translateY(-4px);
}

.apa-state-flag {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--apa-gold);
    color: var(--apa-dark);
    font-family: var(--apa-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.apa-state-card-inner h3 {
    font-family: var(--apa-font-display);
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

.apa-state-card-inner p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.apa-state-arrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--apa-gold);
}

/* State Details Section */
.apa-state-details-section {
    background: var(--apa-light);
    padding: 4rem 0;
}

.apa-state-detail {
    margin-bottom: 4rem;
    padding-top: 2rem;
    scroll-margin-top: 100px;
}

.apa-state-detail:last-child {
    margin-bottom: 0;
}

.apa-state-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--apa-border-subtle-light);
}

.apa-state-detail-header h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.apa-state-detail-badge {
    display: inline-block;
    background: var(--apa-gold);
    color: var(--apa-dark);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    border-radius: 0px;
    margin-bottom: 0.75rem;
}

.apa-state-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.apa-state-detail-col h3 {
    font-family: var(--apa-font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.apa-city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.apa-city-list li {
    font-size: 0.9375rem;
    color: var(--apa-charcoal);
    padding: 0.5rem;
    background: var(--apa-ivory);
    border-radius: 0px;
    text-align: center;
}

.apa-claim-types {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.apa-claim-types li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--apa-dark);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--apa-border-subtle-light);
}

.apa-claim-types li:last-child {
    border-bottom: none;
}

.apa-claim-types .material-symbols-outlined {
    color: var(--apa-gold);
    font-size: 1.25rem;
}

.apa-state-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--apa-dark);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 0px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apa-state-cta:hover {
    background: var(--apa-gold);
    color: var(--apa-dark);
}

.apa-state-cta .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Not Area Section */
.apa-notarea-section {
    background: var(--apa-ivory);
    padding: 4rem 0;
    text-align: center;
}

.apa-notarea-content {
    max-width: 500px;
    margin: 0 auto;
}

.apa-notarea-content > .material-symbols-outlined {
    font-size: 3rem;
    color: var(--apa-gold);
    margin-bottom: 1rem;
}

.apa-notarea-content h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
}

.apa-notarea-content p {
    font-size: 1rem;
    color: var(--apa-charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (min-width: 768px) {
    .apa-office-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .apa-office-map {
        height: 400px;
    }
    
    .apa-states-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .apa-state-detail-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .apa-city-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .apa-office-map {
        height: 450px;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS - Intersection Observer
   Efectos premium de entrada al scroll
   ============================================ */

/* Clase base para elementos que se animarán */
.reveal-element {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease-out,
                transform 0.4s ease-out;
    will-change: opacity, transform;
}

/* Estado visible - cuando entra en viewport */
.reveal-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Respetar preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .reveal-element {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Ajustes específicos por elemento - solo para elementos no manejados por GSAP */
.apa-trust-item.reveal-element {
    transition-delay: 0.05s;
}

.apa-bento-cell.reveal-element {
    transition-duration: 0.35s;
}

/* ============================================
   SERVICES HUB - Página de Servicios
   Toggle tabs con imágenes y cards premium
   ============================================ */

/* Services Hub Section */
.apa-services-hub {
    padding: 6rem 0;
    background: var(--apa-ivory);
}

/* Toggle Tabs */
.apa-services-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.apa-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--apa-border-medium-light);
    color: var(--apa-text-dark);
    font-family: var(--apa-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apa-toggle-btn .material-symbols-outlined {
    font-size: 1.25rem;
}

.apa-toggle-btn.active {
    background: var(--apa-gold);
    color: var(--apa-dark);
    border-color: var(--apa-gold);
}

.apa-toggle-btn:hover:not(.active) {
    border-color: var(--apa-gold);
    color: var(--apa-gold);
}

/* Services Content */
.apa-services-content {
    display: none;
}

.apa-services-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

/* Services Grid */
.apa-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .apa-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Hub Cards - Premium Style */
.apa-service-hub-card {
    background: white;
    border: 1px solid var(--apa-border-subtle-light);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.apa-service-hub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--apa-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.apa-service-hub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.18);
    border-color: var(--apa-gold);
}

.apa-service-hub-card:hover::before {
    transform: scaleX(1);
}

.apa-service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--apa-light-gray);
    position: relative;
}

.apa-service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.apa-service-hub-card:hover .apa-service-image::after {
    opacity: 1;
}

.apa-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.apa-service-hub-card:hover .apa-service-image img {
    transform: scale(1.08);
}

.apa-service-content {
    padding: 2rem;
}

.apa-service-content h3 {
    font-family: var(--apa-font-display);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--apa-dark);
    font-weight: 500;
}

.apa-service-content p {
    font-size: 0.9375rem;
    color: var(--apa-charcoal);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.apa-service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--apa-border-subtle-light);
    padding-top: 1rem;
}

.apa-service-content li {
    font-size: 0.8125rem;
    color: var(--apa-text-dark);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

.apa-service-content li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--apa-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Forzar texto claro en sección commercial - más específico */
.apa-commercial-section .apa-section-header h2.apa-text-light {
    color: #ffffff !important;
}

.apa-commercial-section .apa-section-subtitle.apa-text-muted {
    color: rgba(255,255,255,0.75) !important;
}

.apa-commercial-section .apa-eyebrow-gold {
    color: var(--apa-gold) !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .apa-services-hub {
        padding: 4rem 0;
    }

    .apa-services-toggle {
        gap: 0.5rem;
    }

    .apa-toggle-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }

    .apa-service-image {
        height: 200px;
    }

    .apa-service-content {
        padding: 1.5rem;
    }

    .apa-service-content h3 {
        font-size: 1.2rem;
    }
}

/* Fallback para tabs sin JavaScript */
.no-js .apa-services-content {
    display: block !important;
}

.no-js .apa-services-toggle {
    display: none;
}

/* Add scroll reveal class to hub cards */
.apa-service-hub-card.reveal-element {
    transition-duration: 0.4s;
}

/* ============================================
   SERVICES HUB - Modo Oscuro (Commercial)
   ============================================ */

/* CTA del Services Hub */
.apa-services-hub-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Modo oscuro para Services Hub */
.apa-services-hub.apa-services-hub-dark {
    background: var(--apa-dark);
    transition: background 0.5s ease;
}

/* Ajustes de texto en modo oscuro */
.apa-services-hub-dark .apa-section-header h2 {
    color: var(--apa-white);
}

.apa-services-hub-dark .apa-section-header .apa-eyebrow {
    color: var(--apa-gold);
}

.apa-services-hub-dark .apa-section-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Forzar todos los textos claros en modo oscuro */
.apa-services-hub-dark .apa-section-header h2,
.apa-services-hub-dark h2 {
    color: #ffffff !important;
}

.apa-services-hub-dark .apa-eyebrow {
    color: var(--apa-gold) !important;
}

/* Cards en modo oscuro */
.apa-services-hub-dark .apa-service-hub-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.apa-services-hub-dark .apa-service-hub-card:hover {
    border-color: var(--apa-gold);
    background: rgba(255, 255, 255, 0.06);
}

.apa-services-hub-dark .apa-service-hub-card::before {
    background: var(--apa-gold);
}

.apa-services-hub-dark .apa-service-content {
    border-color: rgba(255, 255, 255, 0.1);
}

.apa-services-hub-dark .apa-service-content ul {
    border-color: rgba(255, 255, 255, 0.1);
}

.apa-services-hub-dark .apa-service-content h3 {
    color: var(--apa-white);
}

.apa-services-hub-dark .apa-service-content p {
    color: rgba(255, 255, 255, 0.7);
}

.apa-services-hub-dark .apa-service-content li {
    color: rgba(255, 255, 255, 0.85) !important;
}

.apa-services-hub-dark .apa-service-content h3 {
    color: #ffffff !important;
}

.apa-services-hub-dark .apa-service-content p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.apa-services-hub-dark .apa-service-content ul {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Toggle buttons en modo oscuro */
.apa-services-hub-dark .apa-toggle-btn:not(.active) {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9) !important;
}

.apa-services-hub-dark .apa-toggle-btn:hover:not(.active) {
    border-color: var(--apa-gold);
    color: var(--apa-gold) !important;
}

.apa-services-hub-dark .apa-toggle-btn.active {
    background: var(--apa-gold);
    color: var(--apa-dark) !important;
}

/* Animación suave para el cambio de fondo */
.apa-services-hub,
.apa-services-hub .apa-section-header h2,
.apa-services-hub .apa-section-subtitle,
.apa-services-hub .apa-service-content h3,
.apa-services-hub .apa-service-content p,
.apa-services-hub .apa-service-content li {
    transition: all 0.5s ease;
}

/* ============================================
   FOOTER - Premium Dark Style
   ============================================ */

.apa-footer {
    background: var(--apa-dark);
    padding: 5rem 0 2rem;
    border-top: 3px solid var(--apa-gold);
    position: relative;
}

/* Barra dorada superior brillante */
.apa-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--apa-gold) 20%,
        var(--apa-gold) 80%,
        transparent 100%
    );
}

.apa-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

/* Línea dorada decorativa sobre el grid */
.apa-footer-content::before {
    content: '';
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--apa-gold);
}

.apa-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .apa-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .apa-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
    }
}

/* Logo Section */
.apa-footer-logo {
    font-family: var(--apa-font-display);
    font-size: 1.75rem;
    color: var(--apa-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.apa-footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.apa-footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
}

/* Headings */
.apa-footer-heading {
    font-family: var(--apa-font-display);
    font-size: 1rem;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Links */
.apa-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.apa-footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
}

.apa-footer-links a:hover {
    color: var(--apa-gold);
}

.apa-footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--apa-gold);
    transition: width 0.3s ease;
}

.apa-footer-links a:hover::after {
    width: 100%;
}

/* Contact Info */
.apa-footer-location {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.apa-footer-location strong {
    color: white;
    font-weight: 500;
}

.apa-footer-location a {
    color: var(--apa-gold);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.apa-footer-location a:hover {
    opacity: 0.8;
}

/* Bottom Bar */
.apa-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .apa-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.apa-footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
}

/* Footer Badges */
.apa-footer-badges {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.apa-footer-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(184, 148, 29, 0.15);
    color: var(--apa-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(184, 148, 29, 0.3);
}

/* Footer Logo Link */
.apa-footer-logo-link {
    text-decoration: none;
    display: inline-block;
}

.apa-footer-logo-link:hover .apa-footer-logo {
    color: var(--apa-gold);
}

/* Footer Social Icons */
.apa-footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.apa-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.apa-footer-social a:hover {
    background: var(--apa-gold);
    color: #000000;
}

/* Footer CTA Button */
.apa-footer-cta {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.65rem 1.25rem;
    background: var(--apa-gold);
    color: #000000;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.apa-footer-cta:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* Footer Legal Links */
.apa-footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.apa-footer-legal a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.apa-footer-legal a:hover {
    color: var(--apa-gold);
}

.apa-footer-divider {
    color: rgba(255,255,255,0.2);
}

/* Email link in footer */
.apa-footer-location a[href^="mailto"] {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.apa-footer-location a[href^="mailto"]:hover {
    color: var(--apa-gold);
}

/* Mobile small - 480px */
@media (max-width: 480px) {
    /* Typography */
    .apa-hero-headline {
        font-size: 1.75rem;
    }
    
    .apa-hero-sub {
        font-size: 1rem;
    }
    
    h1, h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Buttons */
    .apa-btn-large {
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }
    
    /* Header */
    .apa-header-inner {
        padding: 0 1rem;
        height: 70px;
    }
    
    .apa-header-logo-text {
        font-size: 0.9rem;
    }
    
    /* Sections */
    .apa-container {
        padding: 0 1rem;
    }
    
    /* Hero */
    .apa-hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .apa-hero-cta-group .apa-btn-gold {
        width: 100%;
        text-align: center;
    }
    
    .apa-cta-phone {
        text-align: center;
        font-size: 0.875rem;
    }
    
    /* Trust bar */
    .apa-trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .apa-trust-item {
        padding: 0.75rem 0.5rem;
    }
    
    .apa-trust-item span:last-child {
        font-size: 0.7rem;
    }
    
    /* Service cards */
    .apa-service-card {
        padding: 1.5rem;
    }
    
    /* Forms */
    .apa-form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .apa-form-field input,
    .apa-form-field select,
    .apa-form-field textarea {
        font-size: 1rem;
    }
    
    /* Footer */
    .apa-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .apa-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ============================================
   STATS SECTION - PREMIUM COMPACT STRIP
   Elegant horizontal stats for About and Commercial pages
   ============================================ */
.about-stats-section {
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, var(--apa-dark) 0%, var(--apa-dark-elevated) 100%);
    color: var(--apa-text-light);
    border-top: 1px solid rgba(184, 148, 29, 0.1);
    border-bottom: 1px solid rgba(184, 148, 29, 0.1);
}

@media (min-width: 768px) {
    .about-stats-section {
        padding: 3rem 2.5rem;
    }
}

.about-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
}

.about-stat-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

@media (min-width: 768px) {
    .about-stat-item {
        padding: 0;
    }
}

.about-stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.75rem;
}

@media (min-width: 768px) {
    .about-stat-content {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .about-stat-content {
        padding: 0 3rem;
    }
}

.about-stat-divider {
    display: flex;
    align-items: center;
    color: var(--apa-gold);
    opacity: 0.4;
    font-weight: 300;
    font-size: 1rem;
    padding: 0 0.25rem;
}

@media (min-width: 768px) {
    .about-stat-divider {
        font-size: 1.25rem;
        padding: 0 0.5rem;
    }
}

.about-stat-item:last-child .about-stat-divider {
    display: none;
}

.about-stat-number {
    font-family: var(--apa-font-display);
    font-size: clamp(1.25rem, 3vw, 2.5rem);
    color: var(--apa-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .about-stat-number {
        margin-bottom: 0.375rem;
    }
}

.about-stat-label {
    font-size: 0.5rem;
    font-weight: var(--apa-font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .about-stat-label {
        font-size: 0.625rem;
        letter-spacing: 0.3em;
    }
}

/* ============================================
   ACCESSIBILITY UTILITIES
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   BREADCRUMBS - Global (Hidden - extend hero instead)
   ============================================ */
.apa-breadcrumbs {
    display: none;
}

.apa-breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.75rem;
    flex-wrap: wrap;
}

.apa-breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--apa-charcoal);
}

.apa-breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: var(--apa-gold);
    opacity: 0.5;
}

.apa-breadcrumbs a {
    color: var(--apa-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.apa-breadcrumbs a:hover {
    color: var(--apa-gold);
}

.apa-breadcrumbs li[aria-current="page"],
.apa-breadcrumbs li:last-child span {
    color: var(--apa-dark);
    font-weight: 600;
}

/* ============================================
   CONTACT PAGE - PREMIUM CONSISTENT
   ============================================ */

/* Section Header Alignment */
.apa-text-left {
    text-align: left;
}

.apa-text-left .apa-eyebrow,
.apa-text-left .apa-eyebrow-gold {
    justify-content: flex-start;
}

.apa-text-center {
    text-align: center;
}

/* Contact Section */
.apa-contact-section {
    padding: 6rem 0;
    background: var(--apa-light);
}

@media (min-width: 768px) {
    .apa-contact-section {
        padding: 8rem 0;
    }
}

/* Contact Columns - Gutenberg Compatible */
.apa-contact-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .apa-contact-columns {
        grid-template-columns: 1fr 1.5fr;
        gap: 5rem;
    }
}

/* Contact Info Panel */
.apa-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.apa-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.apa-contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.apa-contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 148, 29, 0.08);
    border: 1px solid rgba(184, 148, 29, 0.15);
    flex-shrink: 0;
}

.apa-contact-icon .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--apa-gold);
}

.apa-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.apa-contact-label {
    font-size: 0.65rem;
    font-weight: var(--apa-font-weight-bold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--apa-gold);
}

.apa-contact-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--apa-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.apa-contact-value:hover {
    color: var(--apa-gold);
}

address.apa-contact-value {
    font-style: normal;
    font-weight: var(--apa-font-weight-regular);
    line-height: 1.6;
}

.apa-contact-note {
    font-size: 0.8125rem;
    color: var(--apa-text-muted-dark);
}

.apa-contact-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--apa-gold);
    text-decoration: none;
    margin-top: 0.5rem;
}

.apa-contact-link:hover {
    text-decoration: underline;
}

/* Social Links */
.apa-contact-social {
    margin-top: 1rem;
}

.apa-contact-social .apa-contact-label {
    display: block;
    margin-bottom: 1rem;
}

.apa-social-links {
    display: flex;
    gap: 0.75rem;
}

.apa-social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(10, 10, 10, 0.1);
    color: var(--apa-charcoal);
    transition: all 0.3s ease;
}

.apa-social-links a:hover {
    background: var(--apa-gold);
    border-color: var(--apa-gold);
    color: var(--apa-dark);
    transform: translateY(-2px);
}

.apa-social-links .material-symbols-outlined {
    font-size: 1.25rem;
}

.apa-social-links svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.apa-social-links a:hover svg {
    transform: scale(1.1);
}

/* Contact Form Panel */
.apa-contact-form-wrapper {
    position: relative;
}

.apa-form-card {
    background: var(--apa-light);
    padding: 2rem;
    border: 1px solid rgba(184, 148, 29, 0.15);
    border-top: 3px solid var(--apa-gold);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .apa-form-card {
        padding: 2.5rem;
    }
}

/* Form Badge - Same Day Response */
.apa-form-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--apa-gold) 0%, #a67c2e 100%);
    color: var(--apa-dark);
    padding: 0.75rem 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: -2rem -2rem 1.5rem -2rem;
}

@media (min-width: 768px) {
    .apa-form-badge {
        margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    }
}

.apa-form-badge .material-symbols-outlined {
    font-size: 1rem;
}

/* Form Fields - Consistent with global styles */
.apa-form-field {
    margin-bottom: 1.5rem;
    flex: 1;
    min-width: 200px;
}

.apa-form-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: var(--apa-font-weight-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--apa-charcoal);
    margin-bottom: 0.5rem;
}

.apa-form-field input,
.apa-form-field select,
.apa-form-field textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(10, 10, 10, 0.1);
    border-radius: 0;
    font-family: var(--apa-font-body);
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.apa-form-field input:focus,
.apa-form-field select:focus,
.apa-form-field textarea:focus {
    outline: none;
    border-color: var(--apa-gold);
    box-shadow: 0 0 0 3px rgba(184, 148, 29, 0.1);
}

.apa-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.apa-form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

/* Form Submit Button */
.apa-form-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--apa-gold);
    color: var(--apa-dark);
    font-family: var(--apa-font-body);
    font-size: 0.875rem;
    font-weight: var(--apa-font-weight-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 2px solid var(--apa-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.apa-form-submit:hover {
    background: var(--apa-dark);
    color: var(--apa-gold);
    border-color: var(--apa-dark);
}

.apa-form-submit .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Form Disclaimer */
.apa-form-disclaimer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--apa-charcoal);
    opacity: 0.7;
}

.apa-form-disclaimer .material-symbols-outlined {
    font-size: 1rem;
    color: var(--apa-gold);
}

/* ============================================
   FAQ SECTION - CONTACT SPECIFIC
   ============================================ */

.apa-faq-section {
    padding: 6rem 0;
    background: var(--apa-ivory);
}

@media (min-width: 768px) {
    .apa-faq-section {
        padding: 8rem 0;
    }
}

.apa-faq-list {
    max-width: 50rem;
    margin: 0 auto;
}

.apa-faq-item {
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.apa-faq-item:first-child {
    border-top: 1px solid rgba(10, 10, 10, 0.1);
}

.apa-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-family: var(--apa-font-body);
    font-size: 1.125rem;
    font-weight: var(--apa-font-weight-medium);
    color: var(--apa-text-dark);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.apa-faq-question:hover {
    color: var(--apa-gold);
}

.apa-faq-question .material-symbols-outlined {
    color: var(--apa-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.apa-faq-question[aria-expanded="true"] .material-symbols-outlined {
    transform: rotate(45deg);
}

.apa-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.apa-faq-answer p {
    font-size: 0.9375rem;
    font-weight: var(--apa-font-weight-light);
    color: var(--apa-charcoal);
    line-height: 1.7;
    padding-bottom: 1.5rem;
    margin: 0;
}

/* FAQ Link */
.apa-faq-link {
    display: inline-block;
    margin-top: 2rem;
    font-size: 0.8125rem;
    font-weight: var(--apa-font-weight-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--apa-gold);
    text-decoration: none;
}

.apa-faq-link:hover {
    text-decoration: underline;
}

/* ============================================
   FINAL CTA SECTION - GLOBAL
   ============================================ */

.apa-final-cta-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, var(--apa-dark) 0%, var(--apa-dark-elevated) 100%);
    color: var(--apa-text-light);
    text-align: center;
}

@media (min-width: 768px) {
    .apa-final-cta-section {
        padding: 8rem 2.5rem;
    }
}

.apa-final-cta-content {
    max-width: 48rem;
    margin: 0 auto;
}

.apa-final-cta-content h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--apa-text-light);
    margin-bottom: 1rem;
}

.apa-final-cta-content > p {
    font-size: 1.125rem;
    font-weight: var(--apa-font-weight-light);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.apa-final-cta-micro {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

/* Button Huge */
.apa-btn-huge {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .apa-contact-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .apa-form-card {
        padding: 1.5rem;
    }

    .apa-form-row {
        flex-direction: column;
        gap: 0;
    }

    .apa-contact-method {
        gap: 0.75rem;
    }

    .apa-contact-icon {
        width: 40px;
        height: 40px;
    }

    .apa-contact-icon .material-symbols-outlined {
        font-size: 1.25rem;
    }

    .apa-contact-value {
        font-size: 1rem;
    }

    .apa-faq-question {
        font-size: 1rem;
        padding: 1.25rem 0;
    }
}

/* ============================================
   MAP SECTION - Contact Page
   ============================================ */
.apa-map-section {
    padding: 6rem 0;
    background: var(--apa-dark);
}

.apa-map-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 400px;
}

@media (min-width: 1024px) {
    .apa-map-wrapper {
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
        min-height: 450px;
    }
}

.apa-map-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--apa-text-light);
}

.apa-map-info h3 {
    font-family: var(--apa-font-display);
    font-size: 1.75rem;
    color: var(--apa-text-light);
    margin-bottom: 1rem;
}

.apa-map-info > p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.apa-map-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.apa-map-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.apa-map-detail .material-symbols-outlined {
    color: var(--apa-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.apa-map-detail div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.apa-map-detail strong {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.apa-map-detail span {
    font-size: 0.9375rem;
    color: var(--apa-text-light);
    line-height: 1.5;
}

.apa-map-detail a {
    color: var(--apa-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.apa-map-detail a:hover {
    color: white;
}

/* Map Embed */
.apa-map-embed {
    border: 2px solid rgba(184, 148, 29, 0.2);
    overflow: hidden;
    min-height: 300px;
}

@media (min-width: 1024px) {
    .apa-map-embed {
        min-height: 450px;
    }
}

/* ============================================
   RESIDENTIAL PAGE - SERVICE CARDS
   ============================================ */

/* Services Section */
.apa-services-section {
    padding: 6rem 0;
    background: var(--apa-light);
}

@media (min-width: 768px) {
    .apa-services-section {
        padding: 8rem 0;
    }
}

/* Services Grid */
.apa-services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .apa-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .apa-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 4rem;
    }
}

/* Service Card */
.apa-service-card {
    background: var(--apa-ivory);
    padding: 2rem;
    border-top: 3px solid transparent;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .apa-service-card {
        padding: 2.5rem;
    }
}

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

.apa-service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 148, 29, 0.08);
    border: 1px solid rgba(184, 148, 29, 0.15);
    margin-bottom: 1.5rem;
}

.apa-service-card-icon .material-symbols-outlined {
    font-size: 2rem;
    color: var(--apa-gold);
}

.apa-service-card h3 {
    font-family: var(--apa-font-display);
    font-size: 1.375rem;
    color: var(--apa-text-dark);
    margin-bottom: 0.75rem;
}

.apa-service-card p {
    font-size: 0.9375rem;
    font-weight: var(--apa-font-weight-light);
    color: var(--apa-charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.apa-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apa-service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--apa-charcoal);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.apa-service-list li:last-child {
    border-bottom: none;
}

.apa-service-list .material-symbols-outlined {
    font-size: 1rem;
    color: var(--apa-gold);
    flex-shrink: 0;
}

/* ============================================
   SERVICES PAGE - GUTENBERG COLUMNS SUPPORT
   ============================================ */

/* Services Grid con columnas Gutenberg */
.apa-services-section .apa-services-grid {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 1.5rem !important;
    margin-top: 3rem !important;
}

.apa-services-section .apa-services-grid .wp-block-column {
    flex-basis: auto !important;
    padding: 0 !important;
}

@media (min-width: 640px) {
    .apa-services-section .apa-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .apa-services-section .apa-services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        margin-top: 4rem !important;
    }
}

/* Service Card con imagen - estructura Gutenberg */
.apa-services-section .apa-service-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.apa-services-section .apa-service-card:hover {
    border-color: var(--apa-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.apa-services-section .apa-service-card .apa-service-image {
    height: 200px;
    overflow: hidden;
    background: var(--apa-dark);
}

.apa-services-section .apa-service-card .apa-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.apa-services-section .apa-service-card:hover .apa-service-image img {
    transform: scale(1.08);
}

.apa-services-section .apa-service-card .apa-service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.apa-services-section .apa-service-card .apa-service-content h3 {
    font-family: var(--apa-font-display);
    font-size: 1.25rem;
    color: var(--apa-dark);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.apa-services-section .apa-service-card .apa-service-content p {
    font-size: 0.875rem;
    color: var(--apa-charcoal);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.apa-services-section .apa-service-card .apa-service-list {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.apa-services-section .apa-service-card .apa-service-list li {
    font-size: 0.8125rem;
    padding: 0.35rem 0;
    color: var(--apa-charcoal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.apa-services-section .apa-service-card .apa-service-list li::before {
    content: '•';
    color: var(--apa-gold);
    font-weight: bold;
}

/* Service Card Dark (Commercial) */
.apa-services-dark .apa-service-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.apa-services-dark .apa-service-card:hover {
    border-color: var(--apa-gold);
    background: rgba(255, 255, 255, 0.05);
}

.apa-services-dark .apa-service-card .apa-service-content h3 {
    color: var(--apa-light);
}

.apa-services-dark .apa-service-card .apa-service-content p {
    color: rgba(255, 255, 255, 0.7);
}

.apa-services-dark .apa-service-card .apa-service-list {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.apa-services-dark .apa-service-card .apa-service-list li {
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Button en service cards */
.apa-services-section .apa-service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--apa-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.apa-services-section .apa-service-cta-btn:hover {
    color: var(--apa-dark);
    gap: 0.625rem;
}

.apa-services-section .apa-service-cta-btn .apa-arrow {
    transition: transform 0.3s ease;
}

.apa-services-section .apa-service-cta-btn:hover .apa-arrow {
    transform: translateX(4px);
}

/* ============================================
   CASES/SUCCESS STORIES SECTION
   ============================================ */

.apa-cases-section {
    padding: 6rem 0;
    background: var(--apa-ivory);
}

@media (min-width: 768px) {
    .apa-cases-section {
        padding: 8rem 0;
    }
}

/* Cases Grid */
.apa-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .apa-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .apa-cases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 4rem;
    }
}

/* Case Card */
.apa-case-card {
    background: white;
    border: 1px solid rgba(184, 148, 29, 0.15);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--apa-shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.apa-case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 148, 29, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Gold line at top */
.apa-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--apa-gold), rgba(184, 148, 29, 0.5), var(--apa-gold));
}

.apa-case-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: var(--apa-font-weight-bold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--apa-gold);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(184, 148, 29, 0.08);
    border: 1px solid rgba(184, 148, 29, 0.2);
}

.apa-case-location::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--apa-gold);
    border-radius: 50%;
}

.apa-case-amounts {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(184, 148, 29, 0.1);
    flex-wrap: wrap;
}

.apa-case-before {
    font-family: var(--apa-font-display);
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.35);
    text-decoration: line-through;
}

.apa-case-after {
    font-family: var(--apa-font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--apa-dark);
    letter-spacing: -0.02em;
}

.apa-case-after::before {
    content: '→';
    font-family: var(--apa-font-body);
    font-size: 1.125rem;
    color: var(--apa-gold);
    margin-right: 0.375rem;
    font-weight: 300;
    opacity: 0.8;
}

.apa-case-increment {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: var(--apa-font-weight-bold);
    color: #2E7D32;
    background: rgba(46, 125, 50, 0.1);
    padding: 0.375rem 0.75rem;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.apa-case-increment::before {
    content: '↑';
    font-size: 0.875rem;
}

.apa-case-type {
    font-size: 0.8125rem;
    font-weight: var(--apa-font-weight-bold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--apa-dark);
    margin-bottom: 0.75rem;
}

.apa-case-card p {
    font-size: 0.9375rem;
    font-weight: var(--apa-font-weight-light);
    color: var(--apa-charcoal);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   STATS SECTION - Commercial Statistics
   ============================================ */

.apa-stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--apa-dark) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.apa-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(184, 148, 29, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .apa-stats-section {
        padding: 7rem 0;
    }
}

/* Stats Grid */
.apa-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .apa-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .apa-stats-grid {
        gap: 3rem;
    }
}

/* Stat Item */
.apa-stat-item {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid rgba(184, 148, 29, 0.2);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.apa-stat-item:hover {
    border-color: rgba(184, 148, 29, 0.4);
    background: rgba(184, 148, 29, 0.05);
    transform: translateY(-4px);
}

.apa-stat-number {
    font-family: var(--apa-font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--apa-gold);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .apa-stat-number {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .apa-stat-number {
        font-size: 3.5rem;
    }
}

.apa-stat-label {
    font-size: 0.875rem;
    font-weight: var(--apa-font-weight-medium);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   GUTENBERG CONTENT NORMALIZATION
   Normalize oversized text from WordPress editor blocks
   ============================================ */
.contact-page .wp-block-column p,
.contact-page .wp-block-group p,
.contact-page .entry-content p,
.contact-page main p {
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    margin-bottom: 1rem !important;
    color: var(--apa-charcoal) !important;
}

.contact-page h2,
.contact-page .wp-block-heading h2,
.contact-page .entry-content h2 {
    font-family: var(--apa-font-display) !important;
    font-size: 1.5rem !important;
    color: var(--apa-dark) !important;
    margin-bottom: 1rem !important;
}

.contact-page h3,
.contact-page .wp-block-heading h3,
.contact-page .entry-content h3 {
    font-family: var(--apa-font-display) !important;
    font-size: 1.125rem !important;
    color: var(--apa-dark) !important;
    margin-bottom: 0.75rem !important;
}

.contact-page ul,
.contact-page ol,
.contact-page .wp-block-list {
    margin-left: 1.5rem !important;
    margin-bottom: 1rem !important;
}

.contact-page li {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.5rem !important;
}

.contact-page strong {
    font-weight: 700 !important;
}

/* ============================================
   QUICK CONTACT FORM - Contact Page Hero CTA
   ============================================ */
.apa-quick-contact {
    padding: 5rem 0;
    background: var(--apa-ivory);
    border-bottom: 1px solid rgba(184, 148, 29, 0.15);
}

.apa-quick-contact-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.apa-quick-contact-header {
    margin-bottom: 2.5rem;
}

.apa-quick-contact-header h2 {
    font-family: var(--apa-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--apa-dark);
    margin-bottom: 0.75rem;
}

.apa-quick-contact-header p {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--apa-text-muted-dark);
}

.apa-quick-contact-form {
    background: var(--apa-light);
    padding: 2.5rem;
    border: 1px solid rgba(184, 148, 29, 0.15);
    border-top: 3px solid var(--apa-gold);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
}

.apa-quick-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .apa-quick-form-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .apa-quick-form-row:last-of-type {
        grid-template-columns: 2fr 1fr;
    }
}

.apa-quick-contact-form .apa-form-field {
    margin-bottom: 0;
}

.apa-quick-contact-form input,
.apa-quick-contact-form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(10, 10, 10, 0.1);
    font-family: var(--apa-font-body);
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.apa-quick-contact-form input:focus,
.apa-quick-contact-form select:focus {
    outline: none;
    border-color: var(--apa-gold);
    box-shadow: 0 0 0 3px rgba(184, 148, 29, 0.1);
}

.apa-quick-contact-form input::placeholder {
    color: var(--apa-charcoal);
    opacity: 0.5;
}

.apa-quick-contact-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--apa-text-muted-dark);
}

.apa-quick-contact-note .material-symbols-outlined {
    font-size: 1rem;
    color: var(--apa-gold);
}

/* ============================================
   FAQ ANSWERS - Override for contact page
   ============================================ */
.contact-page .apa-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0;
}

.contact-page .apa-faq-item.open .apa-faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.contact-page .apa-faq-answer p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--apa-charcoal);
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* ============================================
   POWERED BY BAR
   ============================================ */
.apa-powered-bar {
    background: #000;
    padding: 0.6rem 1rem;
    text-align: center;
}

.apa-powered-bar a {
    font-family: var(--apa-font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s ease;
}

.apa-powered-bar a:hover {
    color: rgba(255,255,255,0.7);
}

/* Ensure answer is visible when open */
.apa-faq-item.open .apa-faq-answer {
    max-height: 500px !important;
    padding-bottom: 1.5rem !important;
    overflow: visible !important;
}

/* ============================================
   SEO BREADCRUMBS
   ============================================ */

.apa-breadcrumbs-wrapper {
    padding: 0.75rem 0;
    background: transparent;
    font-size: 0.75rem;
    color: var(--apa-text-muted-light);
}

.apa-breadcrumbs-wrapper ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.apa-breadcrumbs-wrapper li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.apa-breadcrumbs-wrapper li:not(:last-child)::after {
    content: '›';
    color: var(--apa-gold);
    font-weight: 600;
}

.apa-breadcrumbs-wrapper a {
    color: var(--apa-text-muted-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.apa-breadcrumbs-wrapper a:hover {
    color: var(--apa-gold);
}

.apa-breadcrumbs-wrapper [aria-current="page"] {
    color: var(--apa-text-dark);
    font-weight: 500;
}

/* ============================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Touch targets mínimos 48x48px para accesibilidad mobile */
@media (pointer: coarse) {
    /* Asegurar que botones y links sean fáciles de tocar */
    .apa-header-nav a,
    .apa-header-menu a,
    .apa-header-cta a,
    .apa-btn-gold,
    .apa-btn-elite-primary,
    .apa-btn-elite-secondary,
    .apa-service-cta-v2,
    .apa-bento-btn-primary,
    .apa-bento-btn-secondary,
    .apa-form-submit,
    .apa-faq-question-home-dark {
        min-height: 48px;
        min-width: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Espaciado adicional entre elementos clickeables */
    .apa-header-menu li {
        margin: 4px 0;
    }

    /* Aumentar área táctil de iconos */
    .material-symbols-outlined {
        min-width: 24px;
        min-height: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile menu toggle más grande */
    .apa-header-mobile-toggle {
        min-height: 48px;
        min-width: 48px;
        padding: 12px;
    }

    /* Form fields más grandes en mobile */
    .apa-contact-form-home input,
    .apa-contact-form-home select,
    .apa-contact-form-home textarea,
    .apa-form-submit {
        min-height: 48px;
        font-size: 16px; /* Previene zoom en iOS */
    }

    /* Links en trust bar más grandes */
    .apa-trust-item {
        padding: 12px 8px;
    }

    /* Service cards más táctiles */
    .apa-service-cta-v2 {
        padding: 16px 24px;
        min-height: 48px;
    }

    /* FAQ questions más grandes */
    .apa-faq-question-home-dark {
        padding: 16px;
        min-height: 56px;
    }

    /* Mapa no interactivo hasta click (evita scroll blocking) */
    .apa-leaflet-map {
        pointer-events: none;
    }
    .apa-leaflet-map.interactive {
        pointer-events: auto;
    }
}

/* Prevenir layout shifts en carga de fonts mobile */
@media (max-width: 768px) {
    /* Font display swap para evitar FOIT */
    h1, h2, h3, h4, h5, h6 {
        font-display: swap;
    }

    /* Reducir CLS en mobile con alturas mínimas */
    .apa-hero-v3 {
        min-height: 100vh;
        min-height: 100svh; /* Small viewport height (móviles) */
    }

    /* Imagen empieza debajo del header fijo (70px mobile) — todas las páginas */
    .apa-hero-v3 .apa-hero-v3-bg {
        top: 70px;
    }

    /* ── Mobile heroes: todos los .apa-hero-v3 ───────────────────────────────
       Foto completa (object-fit: contain), overlay claro, sin sub, CTAs proporcionales
       ──────────────────────────────────────────────────────────────────────── */

    /* Foto 16:9 visible completa */
    .apa-hero-v3 .apa-hero-v3-bg img {
        object-fit: contain;
        object-position: top center;
    }

    /* Overlay claro sobre la foto, degradado a oscuro en zona de contenido */
    .apa-hero-v3 .apa-hero-v3-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.2) 0%,
            rgba(0,0,0,0.15) 60%,
            rgba(0,0,0,0.75) 100%
        );
    }

    /* Altura: foto (56.25vw) + header (70px) + zona contenido (190px) */
    .apa-hero-v3 {
        min-height: unset;
        height: calc(56.25vw + 70px + 190px);
    }

    /* Contenido anclado al fondo, sobre la zona oscura */
    .apa-hero-v3 .apa-hero-v3-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        padding: 1.25rem 1.25rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.6rem;
    }

    /* Forzar centrado también en Services (sobreescribe text-align: left) */
    .apa-hero-services.apa-hero-v3 .apa-hero-v3-content,
    .apa-hero-services.apa-hero-v3 .apa-hero-v3-content > * {
        text-align: center;
        align-items: center;
    }

    /* Headline proporcional */
    .apa-hero-v3 .apa-hero-headline {
        font-size: clamp(1.4rem, 5.5vw, 2rem);
        margin-bottom: 0;
    }

    /* Ocultar párrafo sub, slogan, trust bar y eyebrow de services */
    .apa-hero-v3 .apa-hero-sub,
    .apa-hero-v3 .apa-hero-slogan,
    .apa-hero-v3 .apa-hero-trust,
    .apa-hero-services .apa-hero-eyebrow {
        display: none;
    }

    /* Badge compacto */
    .apa-hero-v3 .apa-hero-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.7rem;
        margin-bottom: 0.4rem;
    }

    /* CTAs en fila centrada */
    .apa-hero-v3 .apa-hero-cta-group,
    .apa-hero-services .apa-hero-cta-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        margin-top: 0.25rem;
    }

    .apa-hero-v3 .apa-btn-gold {
        font-size: clamp(0.65rem, 2.8vw, 0.8rem);
        padding: 0.55rem 1rem;
        letter-spacing: 0.06em;
    }

    .apa-hero-v3 .apa-cta-phone {
        font-size: clamp(0.65rem, 2.8vw, 0.8rem);
    }

    /* Contenido hero más compacto en mobile */
    .apa-hero-v3-content {
        padding: 1rem;
    }

    .apa-hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* Reducir spacing en secciones para menos scroll */
    .apa-home-services,
    .apa-method-gold,
    .apa-reviews-premium,
    .apa-areas-bento {
        padding: 3rem 0;
    }

    /* Cards en single column sin gap excesivo */
    .apa-services-grid {
        gap: 1.5rem;
    }

    .apa-method-cards {
        gap: 1.5rem;
    }

    /* Reviews más compactas */
    .apa-reviews-showcase {
        gap: 1rem;
    }

    /* Bento grid en single column */
    .apa-bento-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

/* ── Tablet heroes: todos los .apa-hero-v3 (769px–1024px) ──────────────────
   Foto completa (object-fit: contain), overlay claro, contenido anclado al fondo.
   Header en tablet usa altura desktop (90px).
   ──────────────────────────────────────────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Imagen empieza debajo del header fijo (90px tablet/desktop) */
    .apa-hero-v3 .apa-hero-v3-bg {
        top: 90px;
    }

    /* Foto 16:9 visible completa */
    .apa-hero-v3 .apa-hero-v3-bg img {
        object-fit: contain;
        object-position: top center;
    }

    /* Overlay claro sobre foto, degradado oscuro en zona de contenido */
    .apa-hero-v3 .apa-hero-v3-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.2) 0%,
            rgba(0,0,0,0.15) 60%,
            rgba(0,0,0,0.75) 100%
        );
    }

    /* Altura: foto (56.25vw) + header (90px) + zona contenido (220px) */
    .apa-hero-v3 {
        min-height: unset;
        height: calc(56.25vw + 90px + 220px);
    }

    /* Contenido anclado al fondo, sobre la zona oscura */
    .apa-hero-v3 .apa-hero-v3-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        padding: 1.5rem 2rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    /* Forzar centrado también en Services (sobreescribe text-align: left) */
    .apa-hero-services.apa-hero-v3 .apa-hero-v3-content,
    .apa-hero-services.apa-hero-v3 .apa-hero-v3-content > * {
        text-align: center;
        align-items: center;
    }

    /* Ocultar párrafo sub, slogan, trust bar y eyebrow de services */
    .apa-hero-v3 .apa-hero-sub,
    .apa-hero-v3 .apa-hero-slogan,
    .apa-hero-v3 .apa-hero-trust,
    .apa-hero-services .apa-hero-eyebrow {
        display: none;
    }

    /* CTAs en fila centrada */
    .apa-hero-v3 .apa-hero-cta-group,
    .apa-hero-services .apa-hero-cta-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
        justify-content: center;
        margin-top: 0.25rem;
    }
}

/* Optimización para dispositivos de gama baja */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Optimización para conexiones lentas */
@media (prefers-reduced-data: reduce) {
    .apa-hero-v3-bg img {
        content: url('/wp-content/uploads/2026/04/alpha-public-adjustung-hero-home-768x432.jpg');
    }
}

/* ============================================
   SEO UTILITIES - Clases para SEO accesible
   ============================================ */

/* Ocultar visualmente pero mantener accesible para crawlers */
.seo-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   MAPA LEAFLET - Service Areas & Home
   ============================================ */

/* Contenedor del mapa */
.sa-map-container,
.apa-bento-map-wrap {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Mapa de Leaflet */
.sa-leaflet-map,
.apa-leaflet-map,
#service-areas-map,
#coverage-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
    z-index: 1;
}

/* Asegurar que Leaflet se renderice correctamente */
.leaflet-container {
    width: 100%;
    height: 100%;
    font-family: inherit;
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
    position: absolute;
    left: 0;
    top: 0;
}

.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
    max-width: none !important;
    max-height: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .sa-map-container,
    .apa-bento-map-wrap,
    .sa-leaflet-map,
    .apa-leaflet-map,
    #service-areas-map,
    #coverage-map {
        height: 400px;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .sa-map-container,
    .apa-bento-map-wrap,
    .sa-leaflet-map,
    .apa-leaflet-map,
    #service-areas-map,
    #coverage-map {
        height: 350px;
        min-height: 350px;
    }
}

/* ============================================
   CUSTOM HEADER - Moved from header.php inline
   ============================================ */
.apa-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: 90px !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
}

.apa-header.scrolled {
    background: rgba(255, 255, 255, 0.99) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(200, 151, 58, 0.3) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12) !important;
}

.apa-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.apa-header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.apa-header.scrolled .apa-header-logo {
    color: #000000;
}

.apa-header.scrolled .apa-header-logo-text {
    color: #000000;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.apa-header.scrolled .apa-header-logo-tag {
    color: #333333;
    opacity: 0.9;
}

.apa-header-logo-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-right: 12px;
}

.apa-header-logo-line {
    width: 24px;
    height: 1px;
    background: #C8973A;
}

.apa-header-logo-text {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 1.125rem;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.apa-header-logo-tag {
    font-family: 'Manrope', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.9);
}

.apa-header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.apa-header-nav ul,
.apa-header-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.apa-header-nav li,
.apa-header-menu li {
    list-style: none;
}

.apa-header-nav a,
.apa-header-menu a {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.apa-header.scrolled .apa-header-nav a,
.apa-header.scrolled .apa-header-menu a {
    color: #333333;
    font-weight: 600;
}

.apa-header.scrolled .apa-header-cta a {
    background: #C8973A;
    color: #000000;
    font-weight: 700;
}

.apa-header-nav a:hover,
.apa-header-nav a:focus,
.apa-header-nav a.active,
.apa-header-menu a:hover,
.apa-header-menu a:focus,
.apa-header-menu .current-menu-item a {
    color: #C8973A;
}

.apa-header-nav a::after,
.apa-header-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #C8973A;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.apa-header-nav a:hover::after,
.apa-header-menu a:hover::after {
    transform: scaleX(1);
}

.apa-header-cta {
    flex: 0 0 auto;
}

.apa-header-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C8973A;
    color: #000000;
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(200, 151, 58, 0.3);
}

.apa-header-cta a:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 151, 58, 0.4);
}

.apa-header-cta .material-symbols-outlined {
    font-size: 1rem;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
}

.menu-item-has-children .sub-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333333;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: normal;
}

.menu-item-has-children .sub-menu li a:hover {
    background: rgba(184, 148, 29, 0.1);
    color: var(--apa-gold, #C8973A);
}

.apa-header-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.apa-header.scrolled .apa-header-mobile-toggle {
    color: #000000;
}

.apa-header-mobile-toggle .material-symbols-outlined {
    font-size: 1.75rem;
}

.apa-header-mobile-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1.5rem 2rem 2rem;
    border-bottom: 2px solid #C8973A;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.apa-header-mobile-menu.active {
    display: block;
}

.apa-header-mobile-menu ul,
.apa-header-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.apa-header-mobile-menu li,
.apa-header-mobile-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.apa-header-mobile-menu li:last-child,
.apa-header-mobile-list li:last-child {
    border-bottom: none;
}

.apa-header-mobile-menu a,
.apa-header-mobile-list a {
    display: block;
    padding: 1rem 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6B6B6B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.apa-header-mobile-menu a:hover,
.apa-header-mobile-list a:hover {
    color: #C8973A;
}

.apa-header-mobile-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.apa-header-mobile-cta a {
    display: block;
    background: #C8973A;
    color: #000000;
    padding: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    text-decoration: none;
}

.mobile-has-submenu {
    position: relative;
}

.mobile-parent-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-submenu-toggle {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: rgba(184, 148, 29, 0.1);
    border-radius: 4px;
    font-weight: 700;
    color: #C8973A;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-submenu-toggle:hover {
    background: #C8973A;
    color: #000000;
}

.mobile-submenu {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.mobile-has-submenu.opened > .mobile-submenu {
    display: block;
}

.mobile-submenu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-submenu a {
    padding: 0.75rem 0 !important;
    font-size: 0.85rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

@media (max-width: 1024px) {
    .apa-header-nav {
        display: none;
    }

    .apa-header-cta {
        display: none;
    }

    .apa-header-mobile-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .apa-header-inner {
        padding: 0 1rem;
        height: 70px;
    }

    .apa-header-logo-text {
        font-size: 1rem;
    }
}

/* ============================================
   GHL FORM - Thank You Message
   ============================================ */
.apa-ghl-form-wrap {
    position: relative;
}

.apa-form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.75rem;
    padding: 4rem 2.5rem;
    min-height: 460px;
    position: relative;
    overflow: hidden;
    /* Mismo tratamiento visual que .apa-review-card-premium */
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 1px solid var(--apa-border-gold);
    border-radius: var(--apa-radius-md);
    backdrop-filter: blur(10px);
}

/* Glow radial dorado de fondo — igual que .apa-cta-elite */
.apa-form-success::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(184, 148, 29, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.apa-form-success > * {
    position: relative;
    z-index: 1;
}

/* Icono check con glow dorado */
.apa-success-icon {
    font-size: 3.5rem;
    color: var(--apa-gold);
    line-height: 1;
    filter: drop-shadow(0 0 16px rgba(184, 148, 29, 0.55));
    animation: apa-success-pulse 2.5s ease-in-out infinite;
}

@keyframes apa-success-pulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(184, 148, 29, 0.4)); }
    50%       { filter: drop-shadow(0 0 22px rgba(184, 148, 29, 0.7)); }
}

/* Eyebrow encima del título */
.apa-form-success h3::before {
    content: 'Message Received';
    display: block;
    font-family: var(--apa-font-body);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--apa-gold);
    margin-bottom: 0.75rem;
}

.apa-form-success h3 {
    font-family: var(--apa-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--apa-text-light);
    margin: 0;
    line-height: 1.3;
}

/* Línea separadora dorada */
.apa-form-success p::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--apa-gold);
    margin: 0 auto 1.25rem;
    opacity: 0.6;
}

.apa-form-success p {
    font-family: var(--apa-font-body);
    font-size: 0.9375rem;
    color: var(--apa-text-ivory-muted);
    max-width: 360px;
    margin: 0;
    line-height: 1.75;
}

/* CTA phone button */
.apa-form-success .apa-btn-gold {
    gap: 0.5rem;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
}

.apa-form-success .apa-btn-gold .material-symbols-outlined {
    font-size: 1.125rem;
}

@media (max-width: 640px) {
    .apa-form-success {
        padding: 3rem 1.5rem;
        min-height: 400px;
        gap: 1.5rem;
    }
}

/* ============================================
   VALUES SECTION - About Page
   ============================================ */
.apa-values-section {
    padding: 6rem 0;
    background: #f8f7f4;
}

.apa-values-intro {
    font-size: 1rem;
    color: #666;
    max-width: 540px;
    margin: 0.75rem auto 0;
    line-height: 1.75;
}

.apa-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.apa-value-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-top: 3px solid #C8973A;
    border-radius: 4px;
    padding: 2rem 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apa-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
}

.apa-value-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 151, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.apa-value-icon .material-symbols-outlined {
    color: #C8973A;
    font-size: 1.375rem;
}

.apa-value-card h3 {
    font-family: var(--apa-font-body, 'Manrope', sans-serif);
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 0.625rem;
    font-style: normal;
    letter-spacing: 0;
}

.apa-value-card p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

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

@media (max-width: 600px) {
    .apa-values-section {
        padding: 4rem 0;
    }
    .apa-values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
