/*
Theme Name: Oficina Virtual Chile
Theme URI: https://www.oficinavirtualchile.cl
Author: Oficina Virtual Chile
Author URI: https://www.oficinavirtualchile.cl
Description: Tema oficial de Oficina Virtual Chile – Servicios de oficina virtual, dirección tributaria, creación de empresas y más en Chile y Miami.
Version: 2.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: ovc
*/

/* ===================================================
   VARIABLES & RESET
=================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

:root {
  --navy:      #0B2545;
  --navy-dark: #071A33;
  --navy-mid:  #143461;
  --orange:    #E8712A;
  --orange-lt: #F5924D;
  --orange-dk: #C85E1E;
  --white:     #FFFFFF;
  --off-white: #F7F8FC;
  --gray-100:  #EEF0F6;
  --gray-200:  #D8DCE8;
  --gray-500:  #8892AA;
  --gray-700:  #4A5568;
  --text:      #1E2A3A;

  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(11,37,69,.10);
  --shadow-lg: 0 12px 48px rgba(11,37,69,.18);
  --trans:     all .3s ease;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ===================================================
   TYPOGRAPHY
=================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 52px;
}
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }

/* ===================================================
   BUTTONS
=================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,113,42,.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-lg { padding: 16px 38px; font-size: 1rem; }

/* ===================================================
   TOP BAR
=================================================== */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar a { color: rgba(255,255,255,.75); transition: color .2s; }
.top-bar a:hover { color: var(--orange); }
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-left span { display: flex; align-items: center; gap: 5px; }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-bar-right a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: var(--trans);
}
.top-bar-right a:hover { background: var(--orange); color: white; }

/* ===================================================
   HEADER / NAVIGATION
=================================================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(11,37,69,.08);
  transition: var(--trans);
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(11,37,69,.14);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}
.site-logo img { height: 46px; width: auto; }
.site-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.1;
}
.site-logo-text span { color: var(--orange); }

/* Main Nav */
#main-nav { display: flex; align-items: center; gap: 4px; }
#main-nav > li { position: relative; }
#main-nav > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  border-radius: 6px;
  transition: var(--trans);
}
#main-nav > li > a:hover,
#main-nav > li.current-menu-item > a {
  color: var(--orange);
  background: rgba(232,113,42,.07);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 580px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border: 1px solid var(--gray-100);
}
#main-nav > li:hover .dropdown { display: grid; }

.dropdown-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 0 12px 10px;
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  transition: var(--trans);
  cursor: pointer;
}
.dropdown-item:hover { background: var(--off-white); }
.dropdown-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(232,113,42,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
}
.dropdown-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.dropdown-text span { font-size: .8rem; color: var(--gray-500); line-height: 1.3; }

/* CTA in header */
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-portal-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  padding: 7px 14px;
  border-radius: 6px;
  transition: var(--trans);
}
.header-portal-link:hover { color: var(--orange); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}

/* ===================================================
   HERO SECTION
=================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  overflow: hidden;
  padding: 100px 0 90px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-blob {
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,113,42,.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,113,42,.15);
  border: 1px solid rgba(232,113,42,.3);
  color: var(--orange-lt);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero h1 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-subtitle {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 38px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 52px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-trust-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hero-trust-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
}
.hero-trust-label { font-size: .75rem; color: rgba(255,255,255,.55); text-align: center; }
.hero-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.12);
}

/* Hero floating card */
.hero-visual {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 40px;
  z-index: 2;
}
.hero-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(0);
  animation: slideIn .6s ease forwards;
}
.hero-card:nth-child(2) { animation-delay: .15s; margin-left: 40px; }
.hero-card:nth-child(3) { animation-delay: .3s; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-card-icon {
  width: 48px; height: 48px;
  background: rgba(232,113,42,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-card-text strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: .95rem;
}
.hero-card-text span { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ===================================================
   SERVICIOS RÁPIDOS (strip)
=================================================== */
.services-strip {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 4px 20px rgba(11,37,69,.06);
}
.services-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  border-right: 1px solid var(--gray-100);
  cursor: pointer;
  transition: var(--trans);
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { color: var(--orange); }
.strip-item-icon { font-size: 1.3rem; color: var(--orange); }

/* ===================================================
   SERVICES SECTION
=================================================== */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--gray-100);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: rgba(232,113,42,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  transition: var(--trans);
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: white;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p { color: var(--gray-700); font-size: .9rem; line-height: 1.6; margin-bottom: 16px; }
.service-features { margin-bottom: 24px; }
.service-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .85rem; color: var(--gray-700);
  padding: 4px 0;
}
.service-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 20px;
}
.service-price .from { font-size: .8rem; color: var(--gray-500); }
.service-price .amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
}
.service-price .period { font-size: .8rem; color: var(--gray-500); }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .88rem; font-weight: 600;
  color: var(--orange);
  transition: var(--trans);
}
.service-link:hover { gap: 10px; }

/* ===================================================
   ABOUT SECTION
=================================================== */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.about-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--orange);
}
.about-text p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .95rem;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.highlight-item {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--gray-100);
}
.highlight-icon { font-size: 1.5rem; margin-bottom: 8px; }
.highlight-item strong { display: block; font-weight: 700; font-size: .92rem; color: var(--navy); margin-bottom: 4px; }
.highlight-item span { font-size: .82rem; color: var(--gray-500); }

/* Stats visual */
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--trans);
}
.stat-box:hover { transform: scale(1.03); }
.stat-box.accent { background: var(--orange); }
.stat-box.light { background: var(--gray-100); }
.stat-box.light .stat-num { color: var(--navy); }
.stat-box.light .stat-label { color: var(--gray-700); }
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.7); line-height: 1.3; }

/* ===================================================
   BRANCHES SECTION
=================================================== */
.branches-section { background: var(--off-white); }
.branches-intro { text-align: center; margin-bottom: 52px; }
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.branch-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--trans);
}
.branch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.branch-header {
  background: var(--navy);
  padding: 24px;
  display: flex; align-items: center; gap: 16px;
}
.branch-flag { font-size: 2rem; }
.branch-header h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 2px; }
.branch-header span { color: rgba(255,255,255,.6); font-size: .8rem; }
.branch-body { padding: 20px 24px; }
.branch-detail {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: var(--gray-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
}
.branch-detail:last-child { border-bottom: none; }
.branch-detail-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.branch-miami {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: none;
  color: var(--white);
}
.branch-miami h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.branch-miami p { color: rgba(255,255,255,.7); font-size: .9rem; }

/* ===================================================
   WHY US
=================================================== */
.whyus-section { background: var(--white); }
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.whyus-item { text-align: center; padding: 20px; }
.whyus-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(232,113,42,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--trans);
}
.whyus-item:hover .whyus-icon {
  background: var(--orange);
  transform: scale(1.1);
}
.whyus-item h4 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 8px;
}
.whyus-item p { font-size: .85rem; color: var(--gray-700); line-height: 1.6; }

/* ===================================================
   CTA BANNER
=================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,113,42,.15) 0%, transparent 70%);
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===================================================
   FOOTER
=================================================== */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin: 16px 0 24px;
  color: rgba(255,255,255,.55);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: var(--trans);
}
.footer-social a:hover { background: var(--orange); color: white; }
.footer-col h5 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.55); transition: var(--trans); }
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.footer-contact-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo { height: 36px; filter: brightness(0) invert(1); opacity: .7; }
.footer-tagline {
  font-style: italic;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}

/* ===================================================
   MOBILE NAV OVERLAY
=================================================== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 9999;
  padding: 24px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px;
}
.mobile-nav-close {
  background: rgba(255,255,255,.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 40px; height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav ul li a {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--trans);
}
.mobile-nav ul li a:hover { color: var(--orange); padding-left: 8px; }
.mobile-nav-cta { margin-top: 32px; }

/* ===================================================
   SCROLL TO TOP
=================================================== */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(232,113,42,.4);
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: var(--trans);
  z-index: 999;
  border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .branches-grid { grid-template-columns: 1fr 1fr; }
  .branch-miami { grid-column: span 2; }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  #main-nav, .header-cta, .top-bar-left { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .branch-miami { grid-column: span 1; flex-direction: column; text-align: center; }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { grid-template-columns: 1fr 1fr; }
  .hero { padding: 80px 0 70px; min-height: auto; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .hero-divider { display: none; }
  .top-bar-right { display: none; }
}

@media (max-width: 480px) {
  .services-strip-inner { flex-direction: column; gap: 0; }
  .strip-item { border-right: none; border-bottom: 1px solid var(--gray-100); width: 100%; }
  .whyus-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .about-visual { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ===================================================
   ANIMATIONS
=================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }
.fade-up-delay-5 { transition-delay: .5s; }
