/* ==========================================================================
   GLOBAL APPLIANCE REPAIRS - MODERN LUXURY DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Brand Palette */
  --brand-red: #e60012;
  --brand-red-hover: #ff1f2d;
  --brand-red-dark: #b8000e;
  --brand-red-glow: rgba(230, 0, 18, 0.35);
  
  /* Dark Atmosphere */
  --bg-black: #090a0f;
  --bg-card: rgba(18, 20, 29, 0.85);
  --bg-card-border: rgba(255, 255, 255, 0.12);
  --bg-input: rgba(255, 255, 255, 0.05);

  /* Typography Colors */
  --text-white: #ffffff;
  --text-primary: #f3f4f6;
  --text-secondary: #c0c4d4;
  --text-muted: #8a8fa3;

  /* Typography Families */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing & Layout */
  --header-height: 84px;
  --container-max: 1360px;
  --border-radius-pill: 9999px;
  --border-radius-card: 20px;
  --transition-smooth: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 990;
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease, border-bottom 0.35s ease, height 0.35s ease;
  background: linear-gradient(180deg, rgba(9, 10, 15, 0.85) 0%, rgba(9, 10, 15, 0.4) 70%, transparent 100%);
}

.site-header.scrolled {
  background: rgba(9, 10, 15, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 74px;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo-link {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1000;
  transition: transform 0.25s ease;
}

.brand-logo-link:hover {
  transform: scale(1.02);
}

.brand-logo-img {
  height: 67px; /* 40% larger (was 48px) */
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.site-header.scrolled .brand-logo-img {
  height: 58px; /* 40% larger (was 42px) */
}

/* Desktop Navigation */
.desktop-nav {
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.65rem);
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.2rem;
  position: relative;
  display: inline-block;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-white);
}

/* Active State with Red Underline */
.nav-link.active {
  color: var(--text-white);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 3px;
  background-color: var(--brand-red);
  border-radius: 3px;
  box-shadow: 0 2px 8px var(--brand-red-glow);
}

/* Header Action */
.header-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Nav Phone CTA Button */
.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background-color: var(--brand-red);
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.65rem 1.45rem;
  border-radius: var(--border-radius-pill);
  box-shadow: 0 4px 16px rgba(230, 0, 18, 0.35);
  transition: var(--transition-smooth);
  letter-spacing: 0.02em;
}

.nav-phone-btn:hover {
  background-color: var(--brand-red-hover);
  transform: translateY(-1.5px);
  box-shadow: 0 8px 24px rgba(230, 0, 18, 0.5);
}

.nav-phone-btn .btn-icon {
  display: flex;
  align-items: center;
  animation: phoneRinging 3s infinite ease-in-out;
}

@keyframes phoneRinging {
  0%, 80%, 100% { transform: rotate(0deg); }
  85% { transform: rotate(-14deg); }
  90% { transform: rotate(14deg); }
  95% { transform: rotate(-7deg); }
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background: rgba(12, 14, 20, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--bg-card-border);
  z-index: 1000;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.drawer-logo {
  height: 38px;
  width: auto;
}

.drawer-close {
  font-size: 2rem;
  color: var(--text-white);
  line-height: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--brand-red);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--brand-red);
  color: var(--text-white);
  padding: 0.85rem;
  border-radius: var(--border-radius-pill);
  font-weight: 700;
  font-size: 1rem;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 995;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-black);
}

/* Background Image Layer */
.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right 15% center;
  z-index: 1;
  transform: scale(1.01);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Primary Left-to-Right Contrast Gradient */
.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(9, 10, 15, 0.98) 0%,
    rgba(9, 10, 15, 0.94) 34%,
    rgba(9, 10, 15, 0.72) 52%,
    rgba(9, 10, 15, 0.32) 72%,
    rgba(9, 10, 15, 0.08) 100%
  );
}

/* Top Vignette for Nav Contrast */
.hero-vignette-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(9, 10, 15, 0.8) 0%, transparent 100%);
  pointer-events: none;
}

/* Bottom Vignette for Smooth Transition */
.hero-vignette-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 2;
  background: linear-gradient(0deg, rgba(9, 10, 15, 0.85) 0%, transparent 100%);
  pointer-events: none;
}

/* Content Container */
.hero-container {
  position: relative;
  z-index: 10;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--header-height) + 2rem) 2.5rem 3rem;
  width: 100%;
  display: flex;
}

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

/* Tagline Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.badge-line {
  display: inline-block;
  width: 32px;
  height: 3.5px;
  background-color: var(--brand-red);
  border-radius: 2px;
  box-shadow: 0 1px 6px var(--brand-red-glow);
}

.badge-text {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* Main Hero Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
}

.title-white {
  color: var(--text-white);
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
}

.title-red {
  color: var(--brand-red);
  text-shadow: 0 4px 24px rgba(230, 0, 18, 0.4);
}

/* Hero Description */
.hero-description {
  font-size: 1.06rem;
  line-height: 1.68;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 2.2rem;
  max-width: 530px;
}

/* Action Buttons Group */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.2rem;
  flex-wrap: wrap;
}

/* Base Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 1.85rem;
  border-radius: var(--border-radius-pill);
  transition: var(--transition-smooth);
  letter-spacing: 0.01em;
  text-align: center;
}

/* Primary Button (Red Call) */
.btn-primary {
  background-color: var(--brand-red);
  color: var(--text-white);
  box-shadow: 0 6px 20px rgba(230, 0, 18, 0.38);
}

.btn-primary:hover {
  background-color: var(--brand-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(230, 0, 18, 0.55);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-icon-pulse {
  display: flex;
  align-items: center;
}

/* Secondary Button (Free Quote Pill) */
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.32);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-secondary .btn-icon {
  display: flex;
  align-items: center;
}

/* Trust Bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 530px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.mouse-scroll {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 3px;
  height: 7px;
  background-color: var(--brand-red);
  border-radius: 2px;
  animation: scrollAnim 1.8s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   INTERACTIVE QUOTE MODAL
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 7, 10, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  background: rgba(18, 20, 29, 0.95);
  border: 1px solid var(--bg-card-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(230, 0, 18, 0.12);
  border-radius: var(--border-radius-card);
  width: 100%;
  max-width: 580px;
  padding: 2.5rem;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 92vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.8rem;
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.12);
}

.modal-header {
  margin-bottom: 1.8rem;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  background: rgba(230, 0, 18, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.8rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-red);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.modal-subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* Quote Form Styling */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0.75rem 0.95rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px var(--brand-red-glow);
  background: rgba(255, 255, 255, 0.08);
}

.form-group select {
  cursor: pointer;
}

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

.submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 12px;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
  margin-top: 0.25rem;
}

.form-disclaimer a {
  color: var(--brand-red);
  font-weight: 600;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(18, 22, 32, 0.96);
  border: 1px solid rgba(34, 197, 94, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(34, 197, 94, 0.2);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1200;
  max-width: 420px;
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  flex-shrink: 0;
}

.toast-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.toast-message {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   ENTRANCE KEYFRAME ANIMATIONS
   ========================================================================== */

.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */

.about-section {
  position: relative;
  background-color: #ffffff;
  padding: 6.5rem 0;
  z-index: 20;
  overflow: hidden;
}

.about-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.28fr;
  gap: 4.5rem;
  align-items: center;
}

/* Left Column: Content */
.about-content {
  display: flex;
  flex-direction: column;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.about-badge .badge-line {
  display: inline-block;
  width: 32px;
  height: 3.5px;
  background-color: var(--brand-red);
  border-radius: 2px;
  box-shadow: 0 1px 6px var(--brand-red-glow);
}

.about-badge .badge-text {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0f172a;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.8vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #0a0c12;
  margin-bottom: 1.75rem;
}

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.about-lead,
.about-subtext {
  font-size: 1.05rem;
  line-height: 1.72;
  color: #475569;
  font-weight: 400;
}

.about-cta-wrapper {
  display: flex;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background-color: var(--brand-red);
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: var(--border-radius-pill);
  box-shadow: 0 6px 20px rgba(230, 0, 18, 0.35);
  transition: var(--transition-smooth);
}

.about-btn:hover {
  background-color: var(--brand-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(230, 0, 18, 0.5);
}

.about-btn .arrow-icon {
  transition: transform 0.25s ease;
}

.about-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Right Column: Visual Showcase Card */
.about-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background-color: #0b0c11;
  display: flex;
  height: 500px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16), 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Left side of card: Technician photo focused on repair action */
.about-card-media {
  flex: 1.35;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70% 28%;
  position: relative;
  z-index: 1;
}

/* Curving Red Accent Separator Divider (anchored strictly outside panel left) */
.about-card-swoosh {
  position: absolute;
  top: 0;
  left: -68px;
  width: 70px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.about-card-swoosh svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Right side of card: Dark features panel */
.about-features-panel {
  flex: 1;
  background-color: #0b0c11;
  padding: 3rem 2rem 3rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.2rem;
  position: relative;
  z-index: 4;
}

/* Feature Item */
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  transition: transform 0.25s ease;
}

.about-feature-item:hover {
  transform: translateX(4px);
}

/* Feature Red Circular Icon */
.feature-icon-ring {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2.5px solid var(--brand-red);
  background: rgba(230, 0, 18, 0.08);
  box-shadow: 0 0 16px rgba(230, 0, 18, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-feature-item:hover .feature-icon-ring {
  background: rgba(230, 0, 18, 0.18);
  box-shadow: 0 0 24px rgba(230, 0, 18, 0.45);
  transform: scale(1.06);
}

.feature-svg {
  width: 26px;
  height: 26px;
  stroke: var(--brand-red);
}

.feature-info {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.92rem;
  color: #9aa1b5;
  font-weight: 400;
}

/* ==========================================================================
   OUR SERVICES SECTION
   ========================================================================== */

.services-section {
  position: relative;
  background-color: #f8fafc;
  padding: 6.5rem 0 7.5rem;
  z-index: 20;
}

.services-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.services-header {
  margin-bottom: 3.5rem;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.services-badge .badge-line {
  display: inline-block;
  width: 32px;
  height: 3.5px;
  background-color: var(--brand-red);
  border-radius: 2px;
  box-shadow: 0 1px 6px var(--brand-red-glow);
}

.services-badge .badge-text {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0f172a;
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.8vw, 3.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #0a0c12;
  margin-bottom: 0.85rem;
}

.services-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 680px;
  line-height: 1.65;
}

/* 3 Cards per Row Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-bottom: 4.5rem;
}

/* Service Card */
.service-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12), 0 0 25px rgba(230, 0, 18, 0.08);
  border-color: rgba(230, 0, 18, 0.25);
}

/* Inset Image Box */
.service-img-wrap {
  margin: 12px 12px 0 12px;
  border-radius: 16px;
  overflow: hidden;
  height: 225px;
  position: relative;
  background-color: #0c0e15;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

/* Overlapping Red Circular Icon Badge */
.service-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--brand-red);
  border: 4px solid #ffffff;
  box-shadow: 0 6px 18px rgba(230, 0, 18, 0.38);
  margin: -32px auto 0;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.3s ease;
}

.service-card:hover .service-icon-badge {
  transform: scale(1.12);
  background-color: var(--brand-red-hover);
  box-shadow: 0 8px 24px rgba(230, 0, 18, 0.55);
}

.service-svg {
  width: 26px;
  height: 26px;
}

/* Card Body & Info */
.service-body {
  padding: 1.25rem 1.6rem 1.85rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: #0a0c12;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.service-card:hover .service-title {
  color: var(--brand-red);
}

.service-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.4rem;
  min-height: 44px;
}

/* Card Button */
.service-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(230, 0, 18, 0.08);
  color: var(--brand-red);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.55rem 1.35rem;
  border-radius: var(--border-radius-pill);
  transition: var(--transition-smooth);
  border: 1px solid rgba(230, 0, 18, 0.16);
  margin-top: auto;
}

.service-cta-btn:hover {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(230, 0, 18, 0.35);
}

/* Callout Banner */
.services-callout {
  background: linear-gradient(135deg, #0d0f17 0%, #161a26 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.callout-tag {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-red);
  margin-bottom: 0.4rem;
}

.callout-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.callout-desc {
  font-size: 0.94rem;
  color: #94a3b8;
}

.callout-btn {
  padding: 0.75rem 1.65rem;
  white-space: nowrap;
  font-size: 0.98rem;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */

.why-section {
  position: relative;
  background-color: #090a10;
  background: radial-gradient(circle at 85% 30%, rgba(230, 0, 18, 0.05) 0%, transparent 60%), #090a10;
  padding: 6.5rem 0 7rem;
  z-index: 20;
  overflow: hidden;
}

.why-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left Zone: Media Card */
.why-media-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-media-card:hover .why-media-img {
  transform: scale(1.04);
}

.why-media-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(9, 10, 16, 0.75) 100%);
  pointer-events: none;
}

/* Middle Zone: Content */
.why-content {
  display: flex;
  flex-direction: column;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.why-badge .badge-line {
  display: inline-block;
  width: 32px;
  height: 3.5px;
  background-color: var(--brand-red);
  border-radius: 2px;
  box-shadow: 0 1px 6px var(--brand-red-glow);
}

.why-badge .badge-text {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
}

.why-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.why-description {
  font-size: 1.05rem;
  line-height: 1.72;
  color: #94a3b8;
  margin-bottom: 2.25rem;
}

.why-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background-color: var(--brand-red);
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: var(--border-radius-pill);
  box-shadow: 0 6px 20px rgba(230, 0, 18, 0.35);
  transition: var(--transition-smooth);
}

.why-btn:hover {
  background-color: var(--brand-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(230, 0, 18, 0.5);
}

.why-btn .arrow-icon {
  transition: transform 0.25s ease;
}

.why-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Right Zone: 2x2 Feature Matrix */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.why-item {
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.why-item:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

/* Subtle Crosshair Borders */
.why-item:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-item:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-item:nth-child(3) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Red Glowing Icon Wrap */
.why-icon-wrap {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(230, 0, 18, 0.1);
  border: 1px solid rgba(230, 0, 18, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.why-item:hover .why-icon-wrap {
  transform: scale(1.1);
  background-color: rgba(230, 0, 18, 0.2);
  box-shadow: 0 0 20px rgba(230, 0, 18, 0.4);
}

.why-svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-red);
}

.why-item-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.why-item-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* ==========================================================================
   OUR PROJECTS / RECENT WORK SECTION
   ========================================================================== */

.projects-section {
  position: relative;
  background-color: #ffffff;
  padding: 6.5rem 0 7.5rem;
  z-index: 20;
}

.projects-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Header Row */
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.2rem;
  flex-wrap: wrap;
}

.projects-header-left {
  display: flex;
  flex-direction: column;
}

.projects-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.projects-badge .badge-line {
  display: inline-block;
  width: 32px;
  height: 3.5px;
  background-color: var(--brand-red);
  border-radius: 2px;
  box-shadow: 0 1px 6px var(--brand-red-glow);
}

.projects-badge .badge-text {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0f172a;
}

.projects-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.8vw, 3.35rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0a0c12;
}

.projects-header-center {
  max-width: 480px;
}

.projects-subtitle {
  font-size: 0.98rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 0.25rem;
}

.projects-header-right {
  display: flex;
  align-items: center;
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.65rem;
  border: 1.5px solid #0f172a;
  border-radius: var(--border-radius-pill);
  color: #0f172a;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  transition: var(--transition-smooth);
  background: transparent;
  cursor: pointer;
}

.btn-outline-pill:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.2);
}

.btn-outline-pill .arrow-icon {
  transition: transform 0.25s ease;
}

.btn-outline-pill:hover .arrow-icon {
  transform: translateX(4px);
}

/* 6-Card Gallery Grid */
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

/* Project Card */
.project-card {
  border-radius: 18px;
  overflow: hidden;
  background-color: #0b0c11;
  height: 310px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(230, 0, 18, 0.1);
}

.project-card:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 3px;
}

.project-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 1rem 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 10, 16, 0.75) 50%, rgba(9, 10, 16, 0.95) 100%);
  z-index: 2;
  transition: padding-bottom 0.3s ease;
}

.project-card:hover .project-overlay {
  padding-bottom: 1.2rem;
}

.project-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--brand-red);
  color: #ffffff;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.project-card-title {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.project-location {
  font-size: 0.78rem;
  color: #cbd5e1;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
  position: relative;
  background-color: #080a10;
  background-image: url('https://images.unsplash.com/photo-1518457607834-6e8d80c183c5?w=1920&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 7rem 0 7.5rem;
  z-index: 20;
  overflow: hidden;
}

.testimonials-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 10, 16, 0.96) 0%,
    rgba(8, 10, 16, 0.90) 45%,
    rgba(8, 10, 16, 0.72) 75%,
    rgba(8, 10, 16, 0.50) 100%
  );
  z-index: 1;
}

.testimonials-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
}

.testimonials-header {
  margin-bottom: 3.5rem;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.testimonials-badge .badge-line {
  display: inline-block;
  width: 32px;
  height: 3.5px;
  background-color: var(--brand-red);
  border-radius: 2px;
  box-shadow: 0 1px 6px var(--brand-red-glow);
}

.testimonials-badge .badge-text {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
}

.testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.8vw, 3.35rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.025em;
}

/* 3 Cards Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

/* Testimonial Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.25rem 2.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45), 0 0 25px rgba(230, 0, 18, 0.08);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2.5px solid var(--brand-red);
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.25);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1;
}

.testimonial-quote {
  font-size: 0.98rem;
  line-height: 1.68;
  color: #334155;
  margin-bottom: 1.5rem;
  font-style: normal;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a0c12;
  margin-bottom: 0.2rem;
}

.author-location {
  font-size: 0.84rem;
  color: #64748b;
  font-weight: 500;
}

/* ==========================================================================
   CONTACT US SECTION
   ========================================================================== */

.contact-section {
  position: relative;
  background-color: #ffffff;
  padding: 6.5rem 0 7rem;
  z-index: 20;
}

.contact-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
}

/* Left Column: Info & Details */
.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.contact-badge .badge-line {
  width: 22px;
  height: 3px;
  background-color: var(--brand-red);
  border-radius: 2px;
}

.contact-badge .badge-text {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #0a0c12;
}

.contact-title {
  font-family: var(--font-display);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.18;
  color: #0a0c12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.contact-description {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* 3 Contact Channels */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  width: fit-content;
}

.contact-channel-item:hover {
  transform: translateX(6px);
}

.static-channel {
  cursor: default;
}

.static-channel:hover {
  transform: none;
}

.channel-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.contact-channel-item:hover .channel-icon-wrap {
  transform: scale(1.1);
}

/* Phone Channel Icon Wrap */
.contact-channel-item:nth-child(1) .channel-icon-wrap {
  background-color: #fee2e2;
  color: var(--brand-red);
}

/* Email Channel Icon Wrap */
.contact-channel-item:nth-child(2) .channel-icon-wrap {
  background-color: #fee2e2;
  color: var(--brand-red);
}

/* Service Area Channel Icon Wrap (Solid Red with white icon) */
.contact-channel-item:nth-child(3) .channel-icon-wrap {
  background-color: var(--brand-red);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(230, 0, 18, 0.35);
}

.channel-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.channel-main {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: #0a0c12;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.contact-channel-item:hover .channel-main {
  color: var(--brand-red);
}

.static-channel:hover .channel-main {
  color: #0a0c12;
}

.channel-sub {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

/* Right Column: Dark Quote Card Form */
.contact-form-card {
  background: linear-gradient(155deg, #0c121e 0%, #080d16 100%);
  border-radius: 24px;
  padding: 2.75rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), 0 0 35px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(230, 0, 18, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.form-card-header {
  margin-bottom: 1.85rem;
}

.form-card-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.form-card-subtitle {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.5;
}

.section-quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.section-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.section-input-group {
  position: relative;
  width: 100%;
}

.section-input-group input,
.section-input-group textarea {
  width: 100%;
  background-color: #172132;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #ffffff;
  transition: var(--transition-smooth);
  outline: none;
}

.section-input-group input::placeholder,
.section-input-group textarea::placeholder {
  color: #6b7c93;
}

.section-input-group input:focus,
.section-input-group textarea:focus {
  border-color: var(--brand-red);
  background-color: #1c273a;
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.22);
}

.section-input-group textarea {
  resize: vertical;
  min-height: 95px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.95rem 1.75rem;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: var(--border-radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: 0 6px 20px rgba(230, 0, 18, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 0, 18, 0.55);
  background-color: var(--brand-red-hover);
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */

.site-footer {
  background-color: #07080d;
  color: #94a3b8;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 20;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  align-self: flex-start;
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #8392a5;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.35rem;
  letter-spacing: -0.01em;
  position: relative;
}

.footer-links,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #8392a5;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-list li {
  font-size: 0.92rem;
  color: #8392a5;
}

.footer-phone-link,
.footer-email-link,
.footer-location-text {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #8392a5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-phone-link:hover,
.footer-email-link:hover {
  color: var(--brand-red);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: #64748b;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #64748b;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-container {
    padding: calc(var(--header-height) + 1.5rem) 1.5rem 2.5rem;
  }

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

  .hero-bg-layer {
    background-position: right 25% center;
  }

  .hero-overlay-gradient {
    background: linear-gradient(
      90deg,
      rgba(9, 10, 15, 0.98) 0%,
      rgba(9, 10, 15, 0.92) 45%,
      rgba(9, 10, 15, 0.7) 65%,
      rgba(9, 10, 15, 0.25) 100%
    );
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-card {
    height: 480px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .services-callout {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }

  .why-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .why-media-card {
    height: 380px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .why-content {
    max-width: 650px;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .projects-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .project-card {
    height: 280px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 620px;
    margin: 0 auto;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .contact-form-card {
    max-width: 650px;
    width: 100%;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .brand-logo-img {
    height: 56px; /* 40% larger (was 40px) */
  }

  .nav-phone-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .hero-section {
    min-height: clamp(870px, 120vh, 990px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 2rem;
    background-color: #06080c;
  }

  .hero-bg-layer {
    background-position: 82% bottom;
    background-size: cover;
    opacity: 1;
    transform: none;
  }

  .hero-overlay-gradient {
    background: linear-gradient(
      180deg,
      #06080c 0%,
      #06080c 36%,
      rgba(6, 8, 12, 0.96) 43%,
      rgba(6, 8, 12, 0.6) 51%,
      rgba(6, 8, 12, 0.15) 59%,
      rgba(6, 8, 12, 0) 67%,
      rgba(6, 8, 12, 0) 100%
    );
  }

  .hero-vignette-top {
    display: none;
  }

  .hero-vignette-bottom {
    display: none;
  }

  .hero-container {
    padding: 1.25rem 1.25rem 0.5rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-badge {
    margin-bottom: 1.15rem;
    gap: 0.65rem;
  }

  .hero-badge .badge-line {
    width: 26px;
    height: 3.5px;
    background-color: var(--brand-red);
    border-radius: 2px;
  }

  .hero-badge .badge-text {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: #cbd5e1;
  }

  .hero-title {
    font-size: clamp(2.45rem, 8.5vw, 2.85rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 1.15rem;
  }

  .hero-title .title-white {
    color: #ffffff;
  }

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

  .hero-description {
    font-size: 0.94rem;
    line-height: 1.62;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    max-width: 480px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 225px;
    max-width: 255px;
    padding: 0.82rem 1.45rem;
    border-radius: 12px;
    font-size: 0.96rem;
    font-weight: 700;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .hero-actions .btn-primary {
    background-color: var(--brand-red);
    color: #ffffff;
    border: 1px solid var(--brand-red);
    box-shadow: 0 4px 14px rgba(230, 0, 18, 0.4);
  }

  .hero-actions .btn-secondary {
    background-color: #080c14;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  }

  .btn {
    padding: 0.85rem 1.2rem;
  }

  .hero-trust-bar {
    display: none;
  }

  .trust-divider {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-card {
    padding: 1.8rem 1.25rem;
  }

  .toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .about-section {
    padding: 4.5rem 0;
  }

  .about-container {
    padding: 0 1.25rem;
    gap: 2.5rem;
  }

  .about-title {
    font-size: 2.15rem;
  }

  .about-paragraphs {
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .about-card {
    flex-direction: column;
    height: auto;
    border-radius: 20px;
  }

  .about-card-media {
    height: 290px;
    width: 100%;
    flex: none;
    background-position: 70% 28%;
  }

  .about-card-swoosh {
    display: none;
  }

  .about-features-panel {
    padding: 2rem 1.4rem;
    gap: 1.6rem;
    border-top: 3px solid var(--brand-red);
  }

  .feature-icon-ring {
    width: 52px;
    height: 52px;
  }

  .feature-svg {
    width: 22px;
    height: 22px;
  }

  .feature-title {
    font-size: 1.05rem;
  }

  .feature-desc {
    font-size: 0.85rem;
  }

  .services-section {
    padding: 4.5rem 0;
  }

  .services-container {
    padding: 0 1.25rem;
  }

  .services-title {
    font-size: 2.15rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .service-img-wrap {
    height: 210px;
  }

  .why-section {
    padding: 4.5rem 0;
  }

  .why-container {
    padding: 0 1.25rem;
    gap: 2.8rem;
  }

  .why-media-card {
    height: 260px;
  }

  .why-title {
    font-size: 2.15rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    border-radius: 18px;
  }

  .why-item {
    padding: 1.35rem 1rem;
  }

  .why-item:nth-child(1) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .why-item:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .why-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
  }

  .why-item:nth-child(4) {
    border-right: none;
    border-bottom: none;
  }

  .why-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 0.75rem;
  }

  .why-svg {
    width: 22px;
    height: 22px;
  }

  .why-item-title {
    font-size: 0.94rem;
    line-height: 1.25;
    margin-bottom: 0.3rem;
  }

  .why-item-desc {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .projects-section {
    padding: 4.5rem 0;
  }

  .projects-container {
    padding: 0 1.25rem;
  }

  .projects-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .project-card {
    height: 230px;
    border-radius: 14px;
  }

  .project-card-title {
    font-size: 0.86rem;
  }

  .project-location {
    font-size: 0.72rem;
  }

  .testimonials-section {
    padding: 4.5rem 0;
  }

  .testimonials-container {
    padding: 0 1.25rem;
  }

  .testimonials-title {
    font-size: 2.15rem;
  }

  .testimonial-card {
    padding: 1.75rem 1.4rem;
    border-radius: 18px;
  }

  .contact-section {
    padding: 4.5rem 0;
  }

  .contact-container {
    padding: 0 1.25rem;
    gap: 2.5rem;
  }

  .contact-title {
    font-size: 2.15rem;
  }

  .contact-description {
    font-size: 0.96rem;
    margin-bottom: 2rem;
  }

  .contact-form-card {
    padding: 1.85rem 1.35rem;
    border-radius: 18px;
  }

  .section-form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 4rem 0 2rem;
  }

  .footer-container {
    padding: 0 1.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
