/*
Theme Name: Sarasota Softwash Elementor
Theme URI: https://srqsoftwash.com
Author: Sarasota Softwash
Author URI: https://srqsoftwash.com
Description: Professional softwash and exterior cleaning services for Sarasota, FL - Fully Elementor compatible
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: srqsoftwash
*/

/* ============================================================
   CSS VARIABLES & BASE RESET
   ============================================================ */
:root {
  --navy:       #0a1628;
  --navy-mid:   #112240;
  --navy-light: #1a3560;
  --teal:       #2ab4c8;
  --teal-light: #5ecfdf;
  --teal-dark:  #1a8fa3;
  --white:      #f8fafc;
  --gray-light: #e8edf5;
  --gray:       #9aabbf;
  --gold:       #f0c040;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', sans-serif;
  --shadow-card:  0 8px 32px rgba(10,22,40,0.14);
  --shadow-hover: 0 16px 48px rgba(10,22,40,0.24);
  --radius:       12px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }

/* ============================================================
   ELEMENTOR COMPATIBILITY
   ============================================================ */

/* Remove default margins that conflict with Elementor */
.elementor-section,
.elementor-container,
.elementor-widget-wrap { max-width: 100%; }

/* Ensure Elementor full-width sections work */
.elementor-section.elementor-section-full_width { padding-left: 0; padding-right: 0; }

/* Elementor top-level container fix */
body.elementor-page #page,
body.elementor-page .site-content { margin-top: 0; padding-top: 0; }

/* Header height compensation for fixed header */
body.has-fixed-header .elementor-section:first-child { padding-top: 90px; }

/* Elementor widget overrides */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-display);
}

.elementor-widget-button .elementor-button {
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 50px;
  transition: all var(--transition);
}

/* Global Elementor color variables */
body {
  --e-global-color-primary: #2ab4c8;
  --e-global-color-secondary: #0a1628;
  --e-global-color-text: #0a1628;
  --e-global-color-accent: #f0c040;
  --e-global-typography-primary-font-family: 'Playfair Display';
  --e-global-typography-secondary-font-family: 'Source Sans 3';
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem);   font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1rem; }
.lead { font-size: 1.2rem; color: #4a6080; line-height: 1.75; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }

.section--dark  { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--teal  { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); color: var(--white); }
.section--gray  { background: var(--gray-light); }
.section--light { background: var(--white); }

.text-center { text-align: center; }
.text-teal   { color: var(--teal) !important; }
.text-white  { color: var(--white) !important; }
.text-navy   { color: var(--navy) !important; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section--dark .section-label { color: var(--teal-light); }

.section-title    { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: #4a6080; max-width: 560px; }
.section--dark .section-subtitle { color: var(--gray); }

.grid   { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,180,200,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-ghost:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 42px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER & NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42,180,200,0.15);
  transition: all var(--transition);
}

#site-header.scrolled {
  background: rgba(10,22,40,0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 52px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text .name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-text .tagline {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
}

.site-nav { display: flex; align-items: center; gap: 4px; }

.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(248,250,252,0.85);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--teal-light);
  background: rgba(42,180,200,0.1);
}

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--navy-mid);
  padding: 20px 24px 28px;
  border-bottom: 1px solid rgba(42,180,200,0.2);
  z-index: 9998;
  animation: slideDown 0.25s ease;
}
@keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }

.mobile-nav.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav .nav-link { display: block; padding: 12px 16px; font-size: 1rem; }

/* ============================================================
   PAGE HERO — full-screen
   ============================================================ */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(10,22,40,0.93) 0%, rgba(10,22,40,0.72) 50%, rgba(17,34,64,0.88) 100%),
    url('assets/images/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

/* Decorative water-drop effect */
#hero::before {
  content: '';
  position: absolute;
  top: 10%; right: 5%;
  width: 420px; height: 420px;
  background: radial-gradient(ellipse, rgba(42,180,200,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(42,180,200,0.15);
  border: 1px solid rgba(42,180,200,0.35);
  border-radius: 50px;
  padding: 9px 20px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-light);
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(1.4); }
}

#hero h1 { color: var(--white); margin-bottom: 20px; }
#hero h1 span { color: var(--teal-light); }

.hero-desc {
  font-size: 1.18rem;
  color: rgba(248,250,252,0.82);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.72;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }

.hero-stat { text-align: left; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(248,250,252,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
#trust-bar {
  background: var(--white);
  padding: 26px 0;
  border-bottom: 1px solid var(--gray-light);
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a6080;
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid rgba(42,180,200,0.1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(42,180,200,0.3);
}

.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card-img .icon { font-size: 3.5rem; }

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(42,180,200,0.18), transparent);
}

.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { margin-bottom: 10px; font-size: 1.22rem; }
.service-card-body p  { font-size: 0.95rem; color: #4a6080; margin-bottom: 16px; flex: 1; }

.service-features { list-style: none; margin-bottom: 20px; }
.service-features li {
  font-size: 0.87rem;
  color: #4a6080;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}
.why-feature:last-child { margin-bottom: 0; }

.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(42,180,200,0.15), rgba(42,180,200,0.05));
  border: 1px solid rgba(42,180,200,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.why-feature:hover .why-icon {
  background: linear-gradient(135deg, rgba(42,180,200,0.25), rgba(42,180,200,0.1));
  transform: scale(1.08);
}

.why-text h4 { margin-bottom: 5px; color: var(--navy); }
.why-text p  { font-size: 0.93rem; color: #4a6080; margin: 0; }

.why-image-panel {
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  border-radius: 20px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.why-image-panel::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(ellipse, rgba(42,180,200,0.15) 0%, transparent 70%);
}

.why-image-panel img {
  height: 130px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(42,180,200,0.45));
}

.why-panel-title {
  text-align: center;
}
.why-panel-title strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.why-panel-title span {
  color: var(--teal-light);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.why-stat-box {
  background: rgba(42,180,200,0.1);
  border: 1px solid rgba(42,180,200,0.25);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.why-stat-box .val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}
.why-stat-box .lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

.why-badge {
  background: var(--teal);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-weight: 700;
  font-size: 0.9rem;
}
.why-badge .icon { font-size: 1.3rem; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--teal), rgba(42,180,200,0.2));
  z-index: 0;
}

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

.step-num {
  width: 80px; height: 80px;
  background: var(--navy-mid);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  box-shadow: 0 0 0 6px rgba(42,180,200,0.1);
  transition: all var(--transition);
}
.process-step:hover .step-num {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(42,180,200,0.2);
}

.process-step h4 { margin-bottom: 8px; color: var(--white); }
.process-step p  { font-size: 0.9rem; color: var(--gray); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-light);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(42,180,200,0.2);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px; right: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--teal);
  opacity: 0.1;
  line-height: 1;
}

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: #4a6080; margin-bottom: 20px; font-style: italic; line-height: 1.7; }

.reviewer { display: flex; align-items: center; gap: 12px; }

.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.88rem;
  flex-shrink: 0;
}

.reviewer-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.reviewer-loc  { font-size: 0.78rem; color: var(--gray); }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.area-tag {
  background: rgba(42,180,200,0.08);
  border: 1px solid rgba(42,180,200,0.22);
  color: var(--teal-dark);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: default;
}
.area-tag:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-2px);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--teal-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-section::before {
  content: '';
  position: absolute;
  top: -40%; left: -15%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(42,180,200,0.14) 0%, transparent 65%);
  pointer-events: none;
}

#cta-section h2 { color: var(--white); margin-bottom: 12px; }
#cta-section .sub { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.1rem; }

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.cta-phone a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal-light);
  transition: color var(--transition);
}
.cta-phone a:hover { color: var(--white); }
.cta-phone .icon  { font-size: 1.4rem; }

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-item .icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item .label  { font-weight: 700; color: var(--navy); font-size: 0.88rem; margin-bottom: 3px; }
.contact-item .detail { color: #4a6080; font-size: 0.93rem; }

.contact-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,180,200,0.08);
  border: 1px solid rgba(42,180,200,0.25);
  color: var(--teal-dark);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-form-wrap {
  background: var(--white);
  padding: 36px;
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
}
.contact-form-wrap h3 { margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,180,200,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: #9aabbf;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy);
  color: rgba(248,250,252,0.7);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 16px;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.65; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal-light);
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(248,250,252,0.62);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal-light); }

.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(42,180,200,0.12);
  border: 1px solid rgba(42,180,200,0.25);
  border-radius: 8px;
  padding: 8px 14px;
  color: var(--teal-light);
  font-size: 0.83rem;
  font-weight: 600;
  transition: all var(--transition);
}
.footer-social-btn:hover {
  background: rgba(42,180,200,0.25);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.83rem;
}
.footer-bottom a { color: var(--teal-light); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   ELEMENTOR SECTION OVERRIDES
   These ensure Elementor-built sections look great
   ============================================================ */
.e-con,
.elementor-section > .elementor-container {
  max-width: 1200px;
}

/* Elementor sticky header support */
.elementor-sticky--effects #site-header {
  background: rgba(10,22,40,0.99) !important;
}

/* Ensure Elementor popups appear above our header */
.elementor-popup-modal { z-index: 99999 !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .why-stats { grid-template-columns: 1fr; }
}
