/*
Theme Name: GL Excavation
Theme URI: https://gl-excavation.com
Author: GL Excavation
Author URI: https://gl-excavation.com
Description: Thème premium pour GL Excavation - Excavation & Terrassement à Québec
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: gl-excavation
Tags: construction, excavation, business, one-page
*/

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --gray: #333333;
  --gray-mid: #555555;
  --gray-light: #888888;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --orange: #e8610a;
  --orange-dark: #c45208;
  --orange-light: #ff7a1a;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 30px rgba(0,0,0,0.3);
  --shadow-orange: 0 0 40px rgba(232,97,10,0.25);
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::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(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--orange);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 0 100%);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-orange-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.btn-orange-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
  background: var(--orange);
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 100;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.top-bar-item {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item::after {
  content: '|';
  margin-left: 32px;
  opacity: 0.4;
}

.top-bar-item:last-child::after { display: none; }

/* ===========================
   NAVIGATION
   =========================== */
.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  top: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.site-logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}

.logo-main span { color: var(--orange); }

.logo-sub {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 3px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.05em;
}

/* Mobile Menu */
.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);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--orange); }

.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.65) 55%, rgba(0,0,0,0.4) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,97,10,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,97,10,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 160px 0 100px;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,97,10,0.15);
  border: 1px solid rgba(232,97,10,0.4);
  padding: 8px 20px;
  margin-bottom: 28px;
}

.hero-badge span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  margin-bottom: 28px;
  color: var(--white);
}

.hero h1 .highlight {
  color: var(--orange);
  display: block;
}

.hero h1 .line-separator {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin: 8px 0;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-checkmarks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.hero-check .check-icon {
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero-scroll span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

/* ===========================
   STATS BAND
   =========================== */
.stats-band {
  background: var(--orange);
  padding: 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0,0,0,0.05) 10px,
    rgba(0,0,0,0.05) 20px
  );
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.stat-number sup {
  font-size: 0.5em;
  margin-top: 8px;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
}

/* ===========================
   SECTION CONFIANCE
   =========================== */
.trust-section {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: 'GL';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 320px;
  font-weight: 900;
  color: rgba(255,255,255,0.015);
  line-height: 1;
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust-content h2 {
  font-size: clamp(38px, 5vw, 62px);
  margin-bottom: 24px;
  color: var(--white);
}

.trust-content h2 span { color: var(--orange); }

.trust-content p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}

.trust-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--orange);
}

.trust-check-icon {
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}

.trust-check-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.trust-visual {
  position: relative;
}

.trust-card-main {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.trust-card-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.trust-card-img-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: rgba(232,97,10,0.15);
  letter-spacing: 0.1em;
}

.trust-card-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
}

.trust-card-badge .badge-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.trust-card-badge .badge-text {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0 8px;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
  padding: 120px 0;
  background: var(--black);
  position: relative;
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.services-header .section-label {
  justify-content: center;
}

.services-header .section-label::before { display: none; }

.services-header h2 {
  font-size: clamp(40px, 5vw, 68px);
  color: var(--white);
  margin-bottom: 20px;
}

.services-header h2 span { color: var(--orange); }

.services-header p {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  line-height: 1.7;
}

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

.service-card {
  background: var(--dark-2);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  background: var(--dark-3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(232,97,10,0.2);
}

.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 20px;
  opacity: 0.7;
}

.service-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
}

.service-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  font-size: 16px;
}

.service-card:hover .service-arrow {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232,97,10,0.1);
}

/* ===========================
   PROCESS SECTION
   =========================== */
.process-section {
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.process-header h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 20px;
}

.process-header h2 span { color: var(--orange); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, var(--orange), rgba(232,97,10,0.2));
  z-index: 0;
}

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

.step-number {
  width: 88px;
  height: 88px;
  background: var(--dark-2);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  color: var(--orange);
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 800;
}

.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  font-weight: 300;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232,97,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(42px, 6vw, 80px);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section h2 span { color: var(--orange); }

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  line-height: 1.7;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.guarantee-item .check { color: var(--orange); }

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info h2 span { color: var(--orange); }

.contact-info > p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--orange);
  transition: all 0.3s ease;
}

.contact-detail-item:hover {
  background: rgba(255,255,255,0.06);
  transform: translateX(4px);
}

.contact-detail-icon {
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-content {}

.contact-detail-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}

.contact-detail-value a:hover { color: var(--orange); }

/* Contact Form */
.contact-form-wrap {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  font-weight: 300;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(232,97,10,0.06);
}

.form-group select option { background: var(--dark-2); color: var(--white); }

.form-group textarea {
  height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  background: var(--orange-light);
  box-shadow: var(--shadow-orange);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {}

.footer-logo-main {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.footer-logo-main span { color: var(--orange); }

.footer-logo-sub {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  font-weight: 300;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  transition: all 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.footer-copy span { color: var(--orange); }

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--orange); }

/* ===========================
   MOBILE CTA BAR
   =========================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--dark);
  border-top: 2px solid var(--orange);
  padding: 12px 16px;
  gap: 12px;
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-cta-call {
  background: var(--orange);
  color: var(--white);
}

.mobile-cta-form {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: 1fr; gap: 60px; }
  .trust-visual { max-width: 500px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: flex; }
  .hero-content { padding-bottom: 140px; }
  .trust-checks { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .top-bar-inner { gap: 16px; }
  .top-bar-item { font-size: 10px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-item:last-child { border-bottom: none; }
}

/* ===========================
   WORDPRESS ALIGNMENTS
   =========================== */
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter, div.aligncenter { display: block; margin: 5px auto 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
.wp-caption { max-width: 100%; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; }
