/*
Theme Name: Groupe Peltex
Theme URI: https://peltex.ca
Author: Groupe Peltex
Author URI: https://peltex.ca
Description: Thème professionnel haut de gamme pour Groupe Peltex - Experts en excavation et terrassement à Québec. Optimisé pour la conversion et la génération d'appels.
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: peltex
Tags: construction, excavation, responsive, conversion
*/

/* =============================================
   VARIABLES & RESET
   ============================================= */
:root {
  --pink: #E0196E;
  --pink-dark: #b01558;
  --pink-light: #ff4d95;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --gray: #888888;
  --gray-light: #cccccc;
  --white: #ffffff;
  --off-white: #f8f8f6;
  --font-display: 'Barlow Condensed', 'Impact', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.20);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* =============================================
   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;
}

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

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

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

.text-center { text-align: center; }
.text-pink { color: var(--pink); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn-primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 25, 110, 0.35);
}

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

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

.btn-lg {
  padding: 20px 40px;
  font-size: 16px;
}

.btn-icon { font-size: 18px; }

/* =============================================
   STICKY CTA BAR (mobile)
   ============================================= */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 3px solid var(--pink);
  padding: 12px 16px;
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--pink);
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

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

.site-logo img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

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

.site-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.site-nav a:hover { color: var(--pink); }

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.header-phone .ph-icon {
  width: 36px;
  height: 36px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.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(10,10,10,0.92) 45%, rgba(10,10,10,0.6) 100%),
    url('assets/images/hero-bg.jpg') center/cover no-repeat;
}

/* Animated diagonal pink accent */
.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(224, 25, 110, 0.08) 100%);
  pointer-events: none;
}

.hero-accent-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--pink) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 25, 110, 0.15);
  border: 1px solid rgba(224, 25, 110, 0.4);
  border-radius: 50px;
  padding: 6px 16px;
  color: var(--pink-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(52px, 8vw, 96px);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 10px;
}
.hero-title .highlight { color: var(--pink); }

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 8px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
}
.trust-badge .check {
  width: 18px;
  height: 18px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* =============================================
   IMPACT SECTION
   ============================================= */
.impact-section {
  background: var(--off-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pink);
}

.impact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.impact-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(224, 25, 110, 0.08);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.impact-title {
  font-size: clamp(36px, 4vw, 54px);
  color: var(--dark);
  margin-bottom: 20px;
}
.impact-title .accent { color: var(--pink); }

.impact-text {
  font-size: 17px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 32px;
}

.impact-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.impact-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.impact-feature:hover {
  border-color: rgba(224, 25, 110, 0.3);
  transform: translateX(4px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--white);
}

.feature-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}
.feature-text span {
  font-size: 13px;
  color: var(--gray);
}

.impact-visual {
  position: relative;
}

.impact-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-img-placeholder {
  color: rgba(255,255,255,0.15);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 20px;
}
.impact-img-placeholder span {
  display: block;
  color: var(--pink);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  margin-top: 8px;
}

.impact-card-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  min-width: 180px;
  border: 2px solid var(--pink);
}
.impact-card-float .card-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}
.impact-card-float .card-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.rbq-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.12);
}
.rbq-badge .rbq-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rbq-badge .rbq-number {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-top: 2px;
}

/* =============================================
   SERVICES
   ============================================= */
.services-section {
  background: var(--dark);
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}

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

.section-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--dark-2);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  background: var(--dark-3);
}
.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(224, 25, 110, 0.12);
  border: 1px solid rgba(224, 25, 110, 0.25);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.service-card h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
}

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

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  margin-top: 18px;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-arrow { opacity: 1; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
  background: var(--white);
  padding: 90px 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}

.why-left .section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}

.why-left h2 {
  font-size: clamp(36px, 4vw, 54px);
  color: var(--dark);
  margin-bottom: 20px;
}
.why-left h2 .accent { color: var(--pink); }

.why-left p {
  font-size: 17px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 32px;
}

.why-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.reason-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.reason-card:hover {
  border-color: rgba(224, 25, 110, 0.2);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.reason-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.reason-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.reason-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

/* =============================================
   URGENCY BANNER
   ============================================= */
.urgency-banner {
  background: var(--pink);
  padding: 20px 0;
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.urgency-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.urgency-icon {
  font-size: 28px;
}

.urgency-left strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.urgency-left span {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.urgency-banner .btn-outline {
  border-color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.urgency-banner .btn-outline:hover {
  background: var(--white);
  color: var(--pink);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: var(--dark);
  padding: 90px 0;
}

.testimonials-section .section-header h2 { color: var(--white); }

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

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(224, 25, 110, 0.3);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 40px;
  color: var(--pink);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star {
  color: #FFB800;
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.author-location {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* Google badge */
.testimonial-google {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pink);
}

.cta-bg-text {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -5px;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content h2 .accent { color: var(--pink); }

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

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

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

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.cta-trust-item .check-icon {
  width: 18px;
  height: 18px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--white);
  flex-shrink: 0;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  background: var(--off-white);
  padding: 90px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-left .section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}

.contact-left h2 {
  font-size: clamp(32px, 4vw, 50px);
  color: var(--dark);
  margin-bottom: 16px;
}
.contact-left h2 .accent { color: var(--pink); }

.contact-left p {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.contact-info-item:hover {
  border-color: rgba(224, 25, 110, 0.2);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--pink);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--white);
}

.info-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 2px;
}
.info-value a { color: var(--pink); }
.info-value a:hover { text-decoration: underline; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-form-wrap .form-subtitle {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--off-white);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(224, 25, 110, 0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin-top: 12px;
}
.form-note strong { color: var(--dark); }

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

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

.footer-brand img {
  height: 72px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-rbq {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-rbq strong { color: var(--white); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--pink); padding-left: 4px; }

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-row .fc-icon {
  color: var(--pink);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-row span {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-contact-row a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.footer-contact-row a:hover { color: var(--pink); }

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

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

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--white); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 16px 0; }
  .stat-item:nth-child(3), .stat-item:last-child { border-bottom: none; }
  .impact-inner { grid-template-columns: 1fr; gap: 40px; }
  .impact-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .header-phone .ph-text { display: none; }

  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }
  .site-nav.open a {
    font-size: 28px;
    font-family: var(--font-display);
    font-weight: 800;
  }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .urgency-inner { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-trust-badges { display: none; }
  .reasons-grid { grid-template-columns: 1fr; }

  .sticky-cta { display: block; }
  body { padding-bottom: 70px; }

  .contact-form-wrap { padding: 24px; }
}

/* =============================================
   MOBILE NAV CLOSE BUTTON
   ============================================= */
.nav-close {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  font-size: 30px;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
}
.site-nav.open + .nav-close,
.nav-close.visible { display: block; }

/* =============================================
   SCROLL ANIMATION
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
