/*
Theme Name: Curatare Aer Conditionat Bucuresti
Theme URI: https://curatare-aerconditionat.ro/
Author: Curatare Aer Conditionat
Author URI: https://curatare-aerconditionat.ro/
Description: Tema profesionala pentru servicii de curatare, igienizare si dezinfectare aer conditionat in Bucuresti si Ilfov.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: curatare-ac
Tags: services, local-business, seo, responsive
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --primary: #0057b8;
  --primary-dark: #003d8a;
  --primary-light: #e6f0ff;
  --secondary: #ff6b00;
  --secondary-dark: #e05a00;
  --text-dark: #0a1628;
  --text-body: #1a2a45;
  --text-muted: #4a6080;
  --bg-white: #ffffff;
  --bg-light: #f5f9ff;
  --bg-section: #eef4ff;
  --border: #c5d8f5;
  --shadow-sm: 0 2px 8px rgba(0,87,184,0.10);
  --shadow-md: 0 4px 20px rgba(0,87,184,0.16);
  --shadow-lg: 0 8px 40px rgba(0,87,184,0.22);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', sans-serif;
  --transition: 0.25s 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-body);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 70px 0; }
.section-pad-sm { padding: 40px 0; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.bg-primary { background: var(--primary); }
.bg-light { background: var(--bg-light); }
.bg-section { background: var(--bg-section); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(26,111,196,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26,111,196,0.45);
}
.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(240,165,0,0.35);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(26,111,196,0.10);
  transition: box-shadow var(--transition);
}
.header-top {
  background: var(--primary);
  padding: 7px 0;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.header-top-info {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header-top-info a {
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-top-info a:hover { color: #fff; }
.header-top-cta { display: flex; gap: 10px; }
.header-top-cta a {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
  background: rgba(255,255,255,0.18);
  padding: 4px 14px;
  border-radius: 100px;
  transition: background var(--transition);
}
.header-top-cta a:hover { background: rgba(255,255,255,0.3); }

.header-main { padding: 0; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}
.site-logo-text { line-height: 1.2; }
.site-logo-text .logo-main {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}
.site-logo-text .logo-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* 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;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--primary);
  background: var(--primary-light);
}
.main-nav > li > a .nav-arrow { font-size: 0.7rem; transition: transform var(--transition); }
.main-nav > li:hover > a .nav-arrow { transform: rotate(180deg); }

/* DROPDOWN */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
  padding: 8px;
}
.main-nav > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text-body);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-dropdown a:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.nav-dropdown a .dd-icon {
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.nav-locations { display: flex; gap: 4px; }
.nav-dropdown-locations {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.main-nav > li:hover .nav-dropdown-locations {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-cta-btn {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-heading);
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  box-shadow: 0 3px 12px rgba(26,111,196,0.35);
}
.nav-cta-btn:hover { background: var(--primary-dark) !important; color: #fff !important; }

/* MOBILE NAV 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(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: linear-gradient(135deg, #0d4a8c 0%, #1a6fc4 45%, #2889e8 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
}
.hero-section::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.04'%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-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 380px;
  height: 380px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-badge .badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.6; transform:scale(1.3); }
}
.hero-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hero-title em { font-style: normal; color: #fbbf24; }
.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.1);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-align: center;
  gap: 12px;
}
.hero-img-placeholder .hero-placeholder-icon { font-size: 3rem; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hero-float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-float-badge.badge-1 { bottom: -16px; left: -20px; }
.hero-float-badge.badge-2 { top: -16px; right: -20px; }
.hero-float-badge .fb-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.hero-float-badge .fb-icon.green { background: #d1fae5; }
.hero-float-badge .fb-icon.blue { background: var(--primary-light); }
.hero-float-badge .fb-text {}
.hero-float-badge .fb-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1;
}
.hero-float-badge .fb-label { font-size: 0.7rem; color: var(--text-muted); }

/* ===== ABOUT SPLIT ===== */
.about-split {
    padding: 100px 0;
    background: var(--bg-white);
}
.about-split__inner {
    display: flex;
    align-items: center;
    gap: 80px;
}
.about-split__text {
    flex: 1;
    min-width: 0;
}
.about-split__label {
    display: inline-block;
    color: var(--secondary);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.about-split__title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 24px;
}
.about-split__desc {
    color: var(--text-body);
    font-size: .97rem;
    line-height: 1.75;
    margin-bottom: 18px;
}
.about-split__stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.about-split__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about-split__stat strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}
.about-split__stat span {
    font-size: .82rem;
    color: var(--text-muted);
    max-width: 100px;
    line-height: 1.4;
}

/* Image card */
.about-split__image {
    flex: 0 0 420px;
    background: var(--bg-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .about-split__inner { flex-direction: column; gap: 40px; }
    .about-split__image { flex: none; width: 100%; max-height: 400px; }
}

/* ===== SERVICES SECTION V2 ===== */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-header h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px;
}
.section-header p {
    color: var(--text-muted);
    font-size: .97rem;
    line-height: 1.7;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card-v2 {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.service-card-v2:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.service-card-v2__icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
}
.service-card-v2 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 14px;
}
.service-card-v2 p {
    color: var(--text-body);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-card-v2__link {
    color: var(--primary);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}
.service-card-v2__link:hover { color: var(--secondary); }

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

/* ============================================
   ADVANTAGES SECTION
   ============================================ */
/* ===== HOW SECTION ===== */
.how-section {
    padding: 100px 0;
    background: var(--bg-white);
}
.how-section__inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}
.how-section__text {
    flex: 1;
    min-width: 0;
}
.how-section__title {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 24px;
}
.how-section__desc {
    color: var(--text-body);
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 16px;
}
.how-section__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.how-section__tags span {
    background: var(--bg-light);
    color: var(--text-body);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .85rem;
}

/* Steps */
.how-section__steps {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.how-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.how-step:hover {
    box-shadow: var(--shadow-md);
}
.how-step__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff0e8;
    color: var(--secondary);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-step__body strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.how-step__body p {
    margin: 0;
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .how-section__inner { flex-direction: column; gap: 40px; }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section { background: var(--bg-section); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 2px solid var(--border);
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26,111,196,0.08), var(--shadow-lg);
}
.pricing-card.featured::before {
  content: '⭐ Recomandat';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 100px;
}
.pricing-card-header { margin-bottom: 28px; }
.pricing-plan-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-price .amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.pricing-price .currency { font-size: 1.3rem; font-weight: 700; color: var(--primary); align-self: flex-start; padding-top: 8px; }
.pricing-price .period { color: var(--text-muted); font-size: 0.85rem; }
.pricing-desc { font-size: 0.88rem; color: var(--text-muted); margin-top: 8px; }
.pricing-divider { height: 1px; background: var(--border); margin: 20px 0; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}
.pricing-feature .feat-check {
  width: 20px; height: 20px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #16a34a;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================
   LOCATIONS / ZONE SECTION
   ============================================ */
.locations-section { background: var(--bg-light); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.location-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}
.location-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  transform: translateX(3px);
}
.location-item .loc-icon { color: var(--primary); font-size: 1rem; }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.testimonial-location { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-section { background: var(--primary); padding: 40px 0; }
.trust-badges { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 20px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--transition);
}
.trust-badge:hover { background: rgba(255,255,255,0.18); }
.trust-badge .tb-icon { font-size: 2rem; }
.trust-badge .tb-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
}
.trust-badge .tb-label { font-size: 0.82rem; color: rgba(255,255,255,0.8); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #0d4a8c, #1a6fc4);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
  margin-bottom: 14px;
}
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section { background: var(--bg-light); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  overflow: hidden;
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-placeholder-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 30px;
  color: var(--text-muted);
}
.blog-placeholder-img .blog-ph-icon { font-size: 2.5rem; opacity: 0.5; }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}
.blog-card h3 { font-size: 1.0rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card h3 a { color: var(--text-dark); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info { }
.contact-info h3 { font-size: 1.4rem; margin-bottom: 20px; }
.contact-info-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.ci-text .ci-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; margin-bottom: 2px; }
.ci-text .ci-value { font-size: 0.95rem; color: var(--text-dark); font-weight: 600; }
.ci-text .ci-value a { color: var(--primary); }

.contact-form-wrap { background: var(--bg-light); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); }
.contact-form-wrap h3 { font-size: 1.3rem; margin-bottom: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; font-family: var(--font-heading); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; }
.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 14px;
}
.form-error-msg {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

/* MAP */
.map-section { padding: 0; }
.map-section iframe { display: block; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #0d4a8c 0%, #1a6fc4 100%);
  padding: 56px 0 48px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ============================================
   SERVICE PAGE CONTENT
   ============================================ */
.service-content-section {}
.service-content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.service-content-main h2 { font-size: 1.5rem; margin: 28px 0 12px; color: var(--text-dark); }
.service-content-main h2:first-child { margin-top: 0; }
.service-content-main p { font-size: 0.95rem; line-height: 1.75; color: var(--text-body); margin-bottom: 14px; }
.service-content-main ul { margin: 12px 0 18px 0; display: flex; flex-direction: column; gap: 8px; }
.service-content-main ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-body);
}
.service-content-main ul li::before {
  content: '✓';
  background: var(--primary);
  color: #fff;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-sidebar {}
.service-sidebar-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.service-sidebar-card h4 { font-size: 1.0rem; margin-bottom: 14px; }
.service-sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-decoration: none;
}
.sidebar-phone:hover { border-color: var(--primary); background: var(--primary-light); }
.sidebar-phone .sp-num { font-family: var(--font-heading); font-weight: 700; color: var(--primary); font-size: 1.1rem; }
.sidebar-phone .sp-label { font-size: 0.75rem; color: var(--text-muted); }

/* FAQ */
.faq-section { background: var(--bg-light); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  text-align: left;
  transition: background var(--transition);
  gap: 12px;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question.active { background: var(--primary-light); color: var(--primary); }
.faq-toggle {
  width: 24px; height: 24px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
  font-weight: 300;
}
.faq-question.active .faq-toggle { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  padding-bottom: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: #0d1b2e;
  color: rgba(255,255,255,0.75);
}
.footer-main { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-about {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .fl-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.footer-logo .fl-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.2;
}
.footer-about p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: .88rem;
    margin-top: 10px;
}
.footer-contact-line a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color .2s;
}
.footer-contact-line a:hover { color: #fff; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--primary); }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 999;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  white-space: nowrap;
}
.whatsapp-float a:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.whatsapp-float .wa-icon { font-size: 1.3rem; }

.call-float-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--primary);
  padding: 14px 20px;
  box-shadow: 0 -4px 20px rgba(26,111,196,0.25);
}
.call-float-mobile a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .adv-grid { grid-template-columns: repeat(2,1fr); }
  .trust-badges { grid-template-columns: repeat(2,1fr); }
  .locations-grid { grid-template-columns: repeat(3,1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-section { padding: 60px 0 50px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 80px 24px 24px; gap: 4px; z-index: 999; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav > li { width: 100%; }
  .main-nav > li > a { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--bg-light); padding: 4px 8px; display: none; }
  .main-nav > li.dd-open .nav-dropdown { display: block; }
  .nav-dropdown-locations { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--bg-light); display: none; grid-template-columns: 1fr; }
  .main-nav > li.dd-open .nav-dropdown-locations { display: grid; }
  .nav-toggle { display: flex; z-index: 1000; }
  .nav-cta-btn { margin-top: 12px; display: inline-flex !important; }
  .header-top { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: repeat(2,1fr); }
  .trust-badges { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-content-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2,1fr); }
  .whatsapp-float { bottom: 80px; }
  .call-float-mobile { display: block; }
  body { padding-bottom: 66px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .section-pad { padding: 50px 0; }
}
@media (max-width: 480px) {
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
}

/* ============================================
   WORDPRESS ALIGNMENTS
   ============================================ */
.alignleft { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-block-image { margin-bottom: 20px; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 9999;
  font-weight: 600;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { top: 0; }



/* ===== HERO V2 ===== */
.hero-v2 {
    background: linear-gradient(160deg, #0a1628 0%, #0d2348 40%, #1a2e50 70%, #2a1f3d 100%);
    padding: 60px 0 0;
    overflow: hidden;
}
.hero-v2__inner {
    text-align: center;
    padding-bottom: 50px;
}
.hero-v2__badge {
    display: inline-block;
    color: rgba(255,255,255,0.5);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-v2__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 24px;
}
.hero-v2__subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
}
.hero-v2__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-v2__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: all .3s;
    letter-spacing: .5px;
}
.hero-v2__btn-icon {
    font-size: 1.2rem;
}
.hero-v2__btn--primary {
    background: #e85d20;
    color: #fff;
    text-align: left;
    line-height: 1.3;
}
.hero-v2__btn--primary:hover { background: #cf4f16; transform: translateY(-2px); }
.hero-v2__btn--secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-v2__btn--secondary:hover { background: rgba(255,255,255,0.15); }
.hero-v2__btn-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    flex-shrink: 0;
}

/* Cards row */
.hero-v2__cards {
    display: flex;
    gap: 0;
    width: 90%;
    max-width: 1100px;
    height: 260px;
    margin: 0 auto;
}
.hero-v2__card {
    flex: 1;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    border-radius: 16px;
    margin: 0 6px;
}
.hero-v2__card--middle {
    flex: 1.15;
}
.hero-v2__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .5s;
}
.hero-v2__card:hover img { transform: scale(1.05); }
.hero-v2__card-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.3) 60%, transparent 100%);
    padding: 50px 20px 20px;
    color: #fff;
}
.hero-v2__card-label strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.hero-v2__card-label span {
    font-size: .82rem;
    opacity: .8;
    line-height: 1.4;
}

/* Footer links */
.hero-v2__links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 14px 20px;
    background: rgba(0,0,0,0.25);
}
.hero-v2__links a {
    color: rgba(255,255,255,0.5);
    font-size: .8rem;
    text-decoration: none;
    transition: color .2s;
}
.hero-v2__links a:hover { color: #fff; }

/* Responsive */
@media (max-width: 768px) {
    .hero-v2__cards { height: 180px; width: 95%; }
    .hero-v2__card { margin: 0 4px; }
    .hero-v2__card-label span { display: none; }
    .hero-v2__links { gap: 15px; }
}
@media (max-width: 480px) {
    .hero-v2__cards { height: 180px; }
    .hero-v2__card-label strong { font-size: .95rem; }
}