/*
Theme Name: Construction Poirier & CO
Theme URI: https://constructionpoirier.co
Author: Construction Poirier & CO
Author URI: https://constructionpoirier.co
Description: Thème professionnel pour Construction Poirier & CO - Excavation et aménagement extérieur à Laval et sur la Rive-Nord.
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: construction-poirier
Tags: construction, excavation, business, mobile-first, one-page
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --gray-dark: #2d2d2d;
  --gray: #555555;
  --gray-light: #888888;
  --gray-lighter: #c0c0c0;
  --white: #ffffff;
  --white-off: #f5f5f5;
  --orange: #e85d04;
  --orange-light: #ff7700;
  --orange-dark: #c44d00;
  --orange-glow: rgba(232, 93, 4, 0.15);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-orange: 0 4px 24px rgba(232,93,4,0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

*, *::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;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

input, textarea, select, button {
  font-family: var(--font-body);
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.section-title span {
  color: var(--orange);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}

.orange-line {
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 16px 0 32px;
}

.orange-line.center {
  margin: 16px auto 32px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.1);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,93,4,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.nav-logo-tag {
  font-size: 0.65rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-lighter);
  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: none;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: 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 Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--orange);
}

.mobile-menu-footer {
  position: absolute;
  bottom: 40px;
  text-align: center;
}

.mobile-menu-footer p {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.mobile-menu-footer a {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--orange) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.8) 100%),
    url('images/hero-excavation.jpg') center/cover no-repeat;
  background-attachment: scroll;
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, #0a0a0a 0%, #1a1008 50%, #0a0a0a 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
}

/* Animated dirt/texture overlay */
.hero-texture {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(232,93,4,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232,93,4,0.05) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 20px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.4);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  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-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .line-orange {
  color: var(--orange);
  display: block;
}

.hero-title .line-stroke {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
  display: block;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--gray-lighter);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.35s both;
}

.hero-text {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease 0.65s both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--gray-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-light);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   TRUST BAR
   ============================================ */
#trust-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: 20px 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1;
  min-width: 160px;
  justify-content: center;
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-text {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-lighter);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
  padding: 100px 0;
  background: var(--black);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--orange);
  transition: height 0.4s ease;
}

.service-card:hover {
  background: var(--dark-3);
  border-color: rgba(232, 93, 4, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
#why-us {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.why-us-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 18rem);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.why-us-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.why-us-content {
  position: relative;
  z-index: 1;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(232,93,4,0.06);
  border-color: rgba(232,93,4,0.2);
}

.why-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,93,4,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-item-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.why-item-content p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.why-us-visual {
  position: relative;
  z-index: 1;
}

.why-us-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.why-us-image-placeholder span {
  font-size: 4rem;
}

.why-us-image-placeholder p {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
}

.cta-banner {
  background: var(--orange);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 24px;
}

.cta-banner h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.cta-banner p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 16px;
}

.cta-banner .btn {
  background: var(--black);
  color: var(--white);
}

.cta-banner .btn:hover {
  background: var(--dark-3);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
#gallery {
  padding: 100px 0;
  background: var(--black);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--dark-3);
  cursor: pointer;
}

.gallery-item:first-child,
.gallery-item.large {
  grid-column: 1 / -1;
}

.gallery-item-inner {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.gallery-item:first-child .gallery-item-inner,
.gallery-item.large .gallery-item-inner {
  aspect-ratio: 16/9;
}

.gallery-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
}

.gallery-item:hover .gallery-img-placeholder {
  transform: scale(1.05);
}

.gallery-img-placeholder span {
  font-size: 2.5rem;
}

.gallery-img-placeholder p {
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  text-align: center;
  padding: 0 12px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* ============================================
   QUOTE / CTA SECTION
   ============================================ */
#quote {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

#quote::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,93,4,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.quote-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.quote-info {
  position: relative;
  z-index: 1;
}

.quote-info h2 {
  margin-bottom: 20px;
}

.quote-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.quote-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-lighter);
}

.quote-feature-check {
  width: 24px;
  height: 24px;
  background: rgba(232,93,4,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.quote-form-wrap {
  position: relative;
  z-index: 1;
}

.quote-form {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}

.quote-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: var(--white);
}

.quote-form h3 span {
  color: var(--orange);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

/* Force dropdown options to be readable — dark bg + white text */
.form-group select option {
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 10px 14px;
  font-size: 1rem;
}

.form-group select option:checked,
.form-group select option:hover,
.form-group select option:focus {
  background-color: #e85d04;
  color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: rgba(232,93,4,0.05);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 18px;
  font-size: 1.1rem;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 12px;
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--orange);
}

.form-success p {
  color: var(--gray-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  padding: 100px 0;
  background: var(--black);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.contact-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(232,93,4,0.3);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,93,4,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-card-text h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  margin-bottom: 6px;
}

.contact-card-text p,
.contact-card-text a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.contact-card-text a:hover {
  color: var(--orange);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(60%) invert(10%) contrast(90%);
}

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 64px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.footer-logo-tag {
  font-size: 0.65rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-lighter);
}

.footer-contact-item a {
  color: var(--gray-lighter);
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-contact-icon {
  color: var(--orange);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--orange);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  color: var(--orange);
  font-size: 0.8rem;
  transition: transform 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links a:hover::before {
  transform: translateX(4px);
}

.footer-cta {
  background: linear-gradient(135deg, rgba(232,93,4,0.15) 0%, rgba(232,93,4,0.05) 100%);
  border: 1px solid rgba(232,93,4,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.footer-cta h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-cta p {
  font-size: 0.88rem;
  color: var(--gray-light);
  margin-bottom: 16px;
}

.footer-cta .btn {
  width: 100%;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 20px;
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--gray);
}

.footer-copy span {
  color: var(--orange);
}

.footer-area {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray);
}

/* ============================================
   FLOATING CTA (MOBILE)
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  gap: 12px;
  animation: slideUp 1s ease 1.5s both;
  pointer-events: none;
}

.floating-cta .btn {
  pointer-events: all;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================
   BACK TO TOP
   ============================================ */
#back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
  color: white;
  font-size: 1.2rem;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

/* ============================================
   MEDIA QUERIES
   ============================================ */
@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar-inner {
    flex-wrap: nowrap;
  }

  .why-us-inner {
    flex-direction: row;
    gap: 80px;
  }

  .why-us-content,
  .why-us-visual {
    flex: 1;
  }

  .quote-inner {
    flex-direction: row;
    gap: 80px;
  }

  .quote-info,
  .quote-form-wrap {
    flex: 1;
  }

  .contact-inner {
    flex-direction: row;
    gap: 80px;
  }

  .contact-inner > * {
    flex: 1;
  }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
  }

  .floating-cta {
    display: none;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-item:first-child {
    grid-column: span 2;
  }

  .gallery-item.large {
    grid-column: span 2;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-top {
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }