/*
Theme Name:  Black Eagle Transport
Theme URI:   http://blackeagle.local
Author:      Autonix Systems
Description: Custom theme for Black Eagle Transport Ltd. — Abbotsford, BC
Version:     1.0.0
Text Domain: black-eagle-transport
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --black:       #0A0A0A;
  --dark:        #1A1A1A;
  --dark2:       #242424;
  --red:         #C41E3A;
  --red-hover:   #A01830;
  --silver:      #A8A8A8;
  --white:       #FFFFFF;
  --off-white:   #F7F7F7;
  --light-gray:  #EEEEEE;
  --text-dark:   #1E1E1E;
  --text-mid:    #555555;
  --border:      #DEDEDE;
  --font-head:   'Oswald', sans-serif;
  --font-body:   'Open Sans', sans-serif;
  --shadow:      0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
  --radius:      6px;
  --transition:  0.3s ease;
}

/* ============================================================
   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);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-wrap .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 14px auto 0;
  border-radius: 2px;
}

.section-title-wrap.left-align { text-align: left; }
.section-title-wrap.left-align .section-title::after { margin: 14px 0 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,30,58,0.4);
}

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

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

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--black);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--silver);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar a { color: var(--silver); }
.topbar a:hover { color: var(--white); }

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item i { color: var(--red); font-size: 0.8rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  transition: background var(--transition);
}

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

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo img {
  height: 55px;
  width: auto;
  filter: invert(1) drop-shadow(0 0 6px rgba(255,255,255,0.15));
  transition: filter var(--transition);
}
.site-logo:hover img {
  filter: invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

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

.logo-text .brand-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.logo-text .brand-tagline {
  font-size: 0.68rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  color: var(--silver);
  font-family: var(--font-head);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.primary-nav a.current-menu-item { color: var(--red); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--red-hover) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--dark2);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.mobile-nav.open {
  display: block;
  max-height: 400px;
  padding: 10px 0 20px;
}

.mobile-nav a {
  display: block;
  color: var(--silver);
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition);
}

.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); padding-left: 32px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background-color: var(--black);
  background-image: url('images/hero-truck.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Dark gradient overlay — heavier on the left so text stays readable */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.80) 45%,
    rgba(0,0,0,0.45) 75%,
    rgba(0,0,0,0.25) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Subtle red tint on the right */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(196,30,58,0.12) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,30,58,0.15);
  border: 1px solid rgba(196,30,58,0.4);
  color: #E87070;
  font-size: 0.78rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero-badge i { font-size: 0.7rem; color: var(--red); }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-title span { color: var(--red); }

.hero-subtitle {
  font-size: 1rem;
  color: var(--silver);
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.hero-phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-phone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--silver);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.hero-phone-item:hover { color: var(--white); }

.hero-phone-item i {
  color: var(--red);
  width: 16px;
  font-size: 0.85rem;
}

/* Hero Logo Side */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo-wrap {
  position: relative;
  z-index: 2;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(196,30,58,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-logo-wrap img {
  width: 100%;
  max-width: 420px;
  /* Invert: black eagle → white, white bg → black (matches hero dark bg perfectly) */
  filter: invert(1) drop-shadow(0 0 30px rgba(255,255,255,0.08));
  /* Radial mask: fades the edges so logo blends seamlessly into the dark background */
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 50% 50%,
    black 40%, rgba(0,0,0,0.95) 55%, rgba(0,0,0,0.6) 70%, transparent 90%);
  mask-image: radial-gradient(ellipse 78% 78% at 50% 50%,
    black 40%, rgba(0,0,0,0.95) 55%, rgba(0,0,0,0.6) 70%, transparent 90%);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--red);
  padding: 18px 0;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--white);
  padding: 6px 10px;
  border-right: 1px solid rgba(255,255,255,0.25);
}

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

.stat-number {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 38px 30px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--border);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: transparent;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--black), var(--dark2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--red), var(--red-hover));
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--black);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,0.02) 80px,
    rgba(255,255,255,0.02) 160px
  );
}

.why-us-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 44px 30px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

.why-icon {
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(196,30,58,0.15);
}

.why-card h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.8;
}

/* ============================================================
   TRUCK STRIP (parallax banner between sections)
   ============================================================ */
.truck-strip {
  position: relative;
  background-image: url('images/truck-banner.jpg');
  background-size: cover;
  background-position: center 55%;
  background-attachment: fixed;
  padding: 100px 0;
  overflow: hidden;
}

.truck-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 1;
}

/* Red left border accent */
.truck-strip::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--red);
  z-index: 2;
}

.truck-strip-inner {
  position: relative;
  z-index: 3;
  text-align: center;
}

.truck-strip-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.truck-strip-inner h2 span { color: var(--red); }

.truck-strip-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 34px;
  line-height: 1.8;
}

.truck-strip-phones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.truck-strip-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 40px;
  transition: all var(--transition);
}

.truck-strip-phone i { color: var(--red); }

.truck-strip-phone:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(196,30,58,0.4);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--white);
}

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

.about-logo-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* Truck photo fills the entire left panel */
.about-truck-photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
}

/* Overlay with logo at bottom */
.about-logo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 30px 24px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-logo-overlay img {
  height: 55px;
  filter: invert(1);
  flex-shrink: 0;
}

.about-logo-overlay-text .brand-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.about-logo-overlay-text .brand-sub {
  font-size: 0.72rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.about-content .section-title { text-align: left; }
.about-content .section-title::after { margin: 14px 0 0; }

.about-content p {
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
}

.highlight-item i { color: var(--red); font-size: 0.8rem; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section {
  background: var(--off-white);
  padding: 60px 0;
}

.areas-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.areas-label {
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.areas-label span { color: var(--red); }

.areas-divider {
  width: 2px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  transition: all var(--transition);
}

.area-tag:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(196,30,58,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-info .section-title { color: var(--white); text-align: left; }
.contact-info .section-title::after { margin: 14px 0 0; }
.contact-info .section-subtitle { color: var(--silver); text-align: left; margin: 0 0 36px; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(196,30,58,0.15);
  border: 1px solid rgba(196,30,58,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon i { color: var(--red); font-size: 1rem; }

.contact-item-content { display: flex; flex-direction: column; }

.contact-item-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--silver);
  margin-bottom: 4px;
}

.contact-item-value {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-item-value a {
  color: var(--white);
  transition: color var(--transition);
}

.contact-item-value a:hover { color: var(--red); }

/* Phone list */
.phone-list { display: flex; flex-direction: column; gap: 4px; }
.phone-list a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color var(--transition);
}
.phone-list a:hover { color: var(--red); }

/* Contact Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 40px;
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--silver);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.09);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23aaa' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

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

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

.form-note {
  font-size: 0.78rem;
  color: var(--silver);
  margin-top: 10px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark2);
  color: var(--silver);
}

.footer-main {
  padding: 70px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

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

.footer-brand .footer-logo img {
  height: 60px;
  filter: invert(1) drop-shadow(0 0 6px rgba(255,255,255,0.1));
  margin-bottom: 16px;
}

.footer-brand .brand-name-footer {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--silver);
  max-width: 280px;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 0.9rem;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.07);
}

.footer-social-link:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: var(--silver);
  font-size: 0.88rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--red);
  font-size: 1rem;
  line-height: 1;
}

.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--silver);
}

.footer-contact-item i {
  color: var(--red);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

.footer-contact-item a { color: var(--silver); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(168,168,168,0.6);
}

.footer-bottom a { color: var(--silver); }
.footer-bottom a:hover { color: var(--red); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(168,168,168,0.6);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--red); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(196,30,58,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  cursor: pointer;
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--red-hover); transform: translateY(-3px); }

/* ============================================================
   NOTIFICATION / FORM STATUS
   ============================================================ */
.form-success, .form-error {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-top: 14px;
  font-size: 0.9rem;
  display: none;
}
.form-success { background: rgba(39,174,96,0.15); border: 1px solid rgba(39,174,96,0.3); color: #6fcf97; }
.form-error   { background: rgba(196,30,58,0.15); border: 1px solid rgba(196,30,58,0.3); color: #e87070; }
.form-success.show, .form-error.show { display: block; }

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--black), var(--dark));
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-55deg, transparent, transparent 60px,
    rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 120px);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}

.page-hero .breadcrumb {
  position: relative;
  z-index: 1;
  color: var(--silver);
  font-size: 0.85rem;
  margin-top: 10px;
}

.page-hero .breadcrumb a { color: var(--red); }

.page-content { padding: 70px 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-subtitle { margin: 0 auto 30px; }
  .hero-btns { justify-content: center; }
  .hero-phones { align-items: center; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-logo-side { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .topbar { display: none; }
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-us-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-highlights { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .areas-inner { flex-direction: column; align-items: flex-start; }
  .areas-divider { display: none; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .stats-bar .container { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 14px; }
  .stat-item:last-child { border-bottom: none; }
}
