/* ==========================================================================
   A's Roofing - Premium Header & Hero Design System
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --color-primary: #FFB800;
  --color-primary-hover: #E5A500;
  --color-primary-light: #FFF0C2;
  --color-primary-glow: rgba(255, 184, 0, 0.45);
  
  --color-dark: #0F1216;
  --color-dark-surface: #171B21;
  --color-dark-overlay: rgba(10, 13, 18, 0.85);
  
  --color-white: #FFFFFF;
  --color-text-main: #1E2229;
  --color-text-muted: #E2E8F0;
  --color-text-dim: #94A3B8;
  
  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout & Sizing */
  --header-height: 86px;
  --max-width: 1360px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ================= CSS RESET & BASE ================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-white);
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

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

ul {
  list-style: none;
}

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ================= HEADER / NAVBAR ================= */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-white);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-smooth);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  height: 76px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.header-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.logo-link:hover {
  transform: translateY(-1px);
}

.brand-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-smooth);
}

.header.scrolled .brand-logo {
  height: 60px;
}

/* Desktop Navigation */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  position: relative;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-main);
  padding: 8px 2px;
  display: inline-block;
  transition: color var(--transition-fast);
}

/* Hover Accent Line */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: #0F1216;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: 4px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-quote {
  background-color: var(--color-primary);
  color: #121418;
  font-size: 13.5px;
  letter-spacing: 0.6px;
  padding: 13px 26px;
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.28);
}

.btn-quote .btn-icon {
  font-size: 11px;
  transition: transform var(--transition-fast);
}

.btn-quote:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 184, 0, 0.45);
  color: #000000;
}

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

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

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  z-index: 1001;
}

.mobile-toggle .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-text-main);
  border-radius: 3px;
  transition: all var(--transition-smooth);
}

.mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  background-color: var(--color-white);
  padding: 24px 32px 36px 32px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: all var(--transition-smooth);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-main);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #F1F5F9;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-primary-hover);
  padding-left: 6px;
}

.full-width {
  width: 100%;
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background-color: var(--color-dark);
  overflow: hidden;
  padding-bottom: 75px; /* room for bottom roof peak cut */
}

/* Hero Background and Cinematic Vignette Overlay */
.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Exact multi-stop dark vignette gradient from mockup: left text pops clearly while house & sunset glow */
  background: 
    linear-gradient(
      90deg, 
      rgba(10, 13, 18, 0.94) 0%, 
      rgba(10, 13, 18, 0.88) 35%, 
      rgba(10, 13, 18, 0.58) 58%, 
      rgba(10, 13, 18, 0.22) 85%, 
      rgba(10, 13, 18, 0.15) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45) 0%,
      transparent 35%,
      rgba(10, 13, 18, 0.6) 100%
    );
}

/* Hero Content Area */
.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 32px 90px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  max-width: 680px;
  flex: 1;
  min-width: 0;
}

/* Hero Title */
.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  width: 100%;
  max-width: 100%;
}

.title-line {
  display: block;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.title-word {
  display: inline;
}

.title-word:first-child {
  margin-right: 0.28em;
}

.title-white {
  color: var(--color-white);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.title-gold {
  color: var(--color-primary);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.15;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-accent-bar {
  width: 52px;
  height: 5px;
  background-color: var(--color-primary);
  border-radius: 3px;
  margin: 12px 0 18px 0;
}

/* Hero Subtitle */
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* 4 Feature Badges Grid */
.features-grid {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 44px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  cursor: default;
  transition: transform var(--transition-smooth);
}

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

.feature-icon-wrapper {
  position: relative;
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary);
  background: rgba(255, 184, 0, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 19px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: all var(--transition-smooth);
}

.feature-svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
}

.feature-item:hover .feature-icon-circle {
  background: var(--color-primary);
  color: #0F1216;
  border-color: #FFE58F;
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.5);
  transform: scale(1.08);
}

.btn-chevron-svg {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  transition: transform var(--transition-fast);
}

.btn-hero:hover .btn-chevron-svg {
  transform: translateX(4px);
}

.badge-star-svg {
  width: 11px;
  height: 11px;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}

.feature-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
}

/* Hero CTA Button */
.hero-cta-wrap {
  display: flex;
  align-items: center;
}

.btn-hero {
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.8px;
  border-radius: 5px;
  box-shadow: 0 6px 22px rgba(255, 184, 0, 0.35);
}

/* ================= RIGHT FLOATING TRUST SEAL BADGE ================= */
.trust-badge-wrapper {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 15px;
  margin-top: 110px; /* Positioned elegantly towards bottom-right as in mockup */
}

.trust-badge {
  position: relative;
  width: 175px;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  user-select: none;
}

.trust-badge:hover {
  transform: scale(1.06) rotate(2deg);
}

.badge-scallop-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.badge-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.badge-tag {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 2px;
  opacity: 0.95;
}

.badge-title {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.badge-subtitle {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-top: 3px;
  margin-bottom: 6px;
  white-space: nowrap;
}

.badge-stars {
  display: flex;
  gap: 5px;
  color: var(--color-primary);
  font-size: 11px;
}

/* ================= ROOF PEAK SHAPE DIVIDER ================= */
.roof-divider-container {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 10;
  line-height: 0;
  pointer-events: none;
}

.roof-divider-svg {
  display: block;
  width: 100%;
  height: 80px;
  overflow: visible;
}

/* ================= OUR SERVICES SECTION ================= */
.services-section {
  position: relative;
  background-color: var(--color-white);
  padding: 50px 32px 110px 32px;
  z-index: 5;
}

.services-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Services Header */
.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 900;
  color: #111418;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.text-gold {
  color: var(--color-primary);
}

/* Roof Peak Ornament Divider */
.roof-ornament-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
}

.roof-ornament-divider svg {
  display: block;
  overflow: visible;
}

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

/* Service Card */
.service-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background-color: #14181E;
  aspect-ratio: 16 / 10.5;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: 
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 22px 42px rgba(0, 0, 0, 0.18),
    0 0 20px rgba(255, 184, 0, 0.2);
  border-color: rgba(255, 184, 0, 0.45);
}

/* Card Media & Image */
.card-media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

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

/* Dark Gradient Overlay for Text Readability */
.card-overlay {
  position: absolute;
  inset: 0;
  /* Dark bottom vignette so white text is crisp and clear */
  background: linear-gradient(
    180deg, 
    rgba(0, 0, 0, 0) 30%, 
    rgba(10, 13, 18, 0.45) 60%, 
    rgba(10, 13, 18, 0.94) 100%
  );
  transition: background 0.4s ease;
}

.service-card:hover .card-overlay {
  background: linear-gradient(
    180deg, 
    rgba(0, 0, 0, 0.08) 20%, 
    rgba(10, 13, 18, 0.55) 55%, 
    rgba(10, 13, 18, 0.98) 100%
  );
}

/* Card Text Content */
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.service-card-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(16.5px, 1.35vw, 20px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  transition: color 0.3s ease, transform 0.3s ease;
}

.card-subtext {
  display: block;
  font-size: 0.88em;
  font-weight: 700;
  opacity: 0.95;
  margin-top: 3px;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  position: relative;
  background-color: #0E1217;
  color: var(--color-white);
  padding: 90px 32px;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.about-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Left Column: Information */
.about-info {
  max-width: 460px;
  flex-shrink: 0;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.about-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.about-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #D1D5DB;
  line-height: 1.65;
  font-weight: 400;
}

.btn-about {
  padding: 13px 28px;
  font-size: 13.5px;
  letter-spacing: 0.6px;
  border-radius: 4px;
}

/* Right Column: 4 Value Pillars Card Box */
.about-pillars-wrapper {
  flex: 1;
}

.about-pillars-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 38px 12px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.pillar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pillar-item:hover {
  transform: translateY(-4px);
}

.pillar-icon-wrap {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

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

.pillar-svg-icon {
  width: 48px;
  height: 48px;
  display: block;
  overflow: visible;
  transition: filter 0.35s ease;
}

.pillar-item:hover .pillar-svg-icon {
  filter: drop-shadow(0 2px 10px rgba(255, 184, 0, 0.55));
}

.pillar-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.28;
  margin-bottom: 12px;
  letter-spacing: 0.1px;
}

.pillar-desc {
  color: #94A3B8;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
}

.pillar-divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  align-self: stretch;
  flex-shrink: 0;
  margin: 10px 0;
}

/* ================= WHY CHOOSE US SECTION ================= */
.why-us-section {
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
  z-index: 5;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.why-us-wrapper {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 270px;
}

/* Left Content Area */
.why-us-content {
  flex: 1;
  padding: 50px 32px 50px 48px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-us-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  color: #111418;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}

/* 5 Badges Row */
.why-badges-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.why-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  cursor: default;
  transition: transform 0.35s ease;
  flex: 1;
}

.why-badge-item:hover {
  transform: translateY(-4px);
}

.why-badge-icon-wrap {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.why-badge-item:hover .why-badge-icon-wrap {
  transform: scale(1.1);
}

.why-badge-svg {
  width: 42px;
  height: 42px;
  display: block;
  overflow: visible;
  transition: filter 0.35s ease;
}

.why-badge-item:hover .why-badge-svg {
  filter: drop-shadow(0 3px 8px rgba(255, 184, 0, 0.5));
}

.why-badge-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #111418;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

/* Right Media with Angled Chevron Cut */
.why-us-media {
  width: 42%;
  min-width: 0;
  position: relative;
  align-self: stretch;
}

.why-us-img-wrap {
  width: 100%;
  height: 100%;
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 18% 100%, 0% 50%);
  -webkit-clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 18% 100%, 0% 50%);
  overflow: hidden;
  position: relative;
}

.why-us-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 25%;
  transform: scale(1.02);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-media:hover .why-us-img {
  transform: scale(1.08);
}

/* ================= OUR RECENT WORK (PROJECTS / GALLERY) SECTION ================= */
.projects-section {
  position: relative;
  background-color: var(--color-white);
  padding: 65px 32px 95px 32px;
  z-index: 5;
}

.projects-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Projects Header */
.projects-header {
  text-align: center;
  margin-bottom: 38px;
}

.projects-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  color: #111418;
  letter-spacing: -0.5px;
}

/* 5 Project Cards Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.project-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background-color: #14181E;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: 
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 18px 36px rgba(0, 0, 0, 0.16),
    0 0 20px rgba(255, 184, 0, 0.2);
}

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

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

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.38);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-zoom-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #111418;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .project-zoom-btn {
  transform: scale(1);
}

/* View More Projects Action */
.projects-action {
  text-align: center;
  margin-bottom: 60px;
}

.btn-projects {
  padding: 13px 28px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  border-radius: 4px;
}

/* Dark Expert Call-to-Action Banner */
.expert-cta-banner {
  position: relative;
  background-color: #111419;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  margin-top: 10px;
}

.expert-cta-content {
  padding: 38px 44px 44px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 5;
}

.expert-info {
  max-width: 480px;
  flex: 1 1 280px;
}

.expert-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.expert-desc {
  color: #CBD5E1;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
}

.expert-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 6;
}

.phone-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  border: 1.8px solid var(--color-primary);
  border-radius: 8px;
  padding: 12px 24px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: rgba(255, 184, 0, 0.04);
  text-decoration: none;
  cursor: pointer;
  opacity: 1 !important;
  visibility: visible !important;
  transition: all 0.3s ease;
}

.phone-pill:hover {
  background: var(--color-primary);
  color: #121418;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 184, 0, 0.35);
}

.btn-banner {
  display: inline-flex !important;
  padding: 14px 28px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  border-radius: 6px;
  opacity: 1 !important;
  visibility: visible !important;
}

.banner-roof-accent {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

/* ================= WHAT OUR CLIENTS SAY (TESTIMONIALS) SECTION ================= */
.testimonials-section {
  position: relative;
  background-color: #0E1217;
  color: var(--color-white);
  padding: 85px 32px 105px 32px;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonials-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Testimonials Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-white);
  letter-spacing: -0.5px;
}

/* Carousel Layout with Arrows */
.testimonials-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  user-select: none;
}

.testimonial-arrow:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #111418;
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(255, 184, 0, 0.45);
}

.testimonial-arrow:active {
  transform: scale(0.95);
}

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

.testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 34px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  cursor: default;
  transition: 
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 184, 0, 0.45);
  box-shadow: 
    0 22px 45px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(255, 184, 0, 0.12);
}

.card-stars {
  display: flex;
  gap: 4px;
  color: var(--color-primary);
  font-size: 17px;
  margin-bottom: 20px;
}

.card-quote-text {
  color: #D1D5DB;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.62;
  margin-bottom: 26px;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.card-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.author-name {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.author-location {
  color: #94A3B8;
  font-family: var(--font-body);
  font-size: 13px;
}

.card-quote-mark {
  line-height: 0;
  opacity: 0.92;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .card-quote-mark {
  transform: scale(1.12);
}

/* ================= CONTACT US SECTION ================= */
.contact-section {
  position: relative;
  background-color: var(--color-white);
  padding: 70px 32px 95px 32px;
  z-index: 5;
}

.contact-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Contact Header */
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  color: #111418;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

/* 3-Column Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr 1.15fr;
  gap: 34px;
  align-items: stretch;
}

/* Col 1: GET IN TOUCH Info */
.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 6px;
}

.get-in-touch-title {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.get-in-touch-desc {
  color: #374151;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 28px;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-detail-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-text,
.contact-detail-link {
  color: #1F2937;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-detail-link:hover {
  color: var(--color-primary);
}

/* Col 2: Interactive Contact Form */
.contact-form-col {
  display: flex;
  flex-direction: column;
}

.contact-form {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 26px 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  width: 100%;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #111827;
  background-color: #FFFFFF;
  transition: all 0.25s ease;
  outline: none;
}

.form-control::placeholder {
  color: #6B7280;
  font-size: 13px;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.2);
}

.form-select-group {
  position: relative;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 36px;
  color: #111827;
}

.select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #6B7280;
  pointer-events: none;
}

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

.btn-submit-message {
  align-self: flex-start;
  margin-top: 4px;
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 4px;
}

.form-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ECFDF5;
  border: 1px solid #10B981;
  color: #065F46;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}

/* Col 3: Photo of Branded Work Van */
.contact-media-col {
  display: flex;
  align-items: stretch;
}

.contact-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

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

.contact-img-wrap:hover .contact-van-img {
  transform: scale(1.05);
}

/* ================= SITE FOOTER ================= */
.site-footer {
  position: relative;
  background-color: #0E1217;
  z-index: 5;
}

.footer-top-accent {
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
}

.footer-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 65px 32px 65px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.35fr 1.05fr;
  gap: 38px;
  align-items: flex-start;
}

.footer-col {
  position: relative;
}

.footer-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -19px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.08);
}

/* Col 1: Brand */
.footer-brand-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height var(--transition-smooth);
}

.footer-bio {
  color: #9CA3AF;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 270px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.social-icon-btn:hover {
  background-color: var(--color-primary);
  color: #111418;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.4);
}

/* Column Titles */
.footer-col-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* Col 2: Links */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-link {
  color: #9CA3AF;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-nav-link:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

/* Col 3: Services */
.footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-services-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-check-icon {
  color: var(--color-primary);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-service-link {
  color: #9CA3AF;
  font-family: var(--font-body);
  font-size: 13.5px;
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.footer-service-link:hover {
  color: var(--color-white);
}

/* Col 4: Contact */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9CA3AF;
  font-family: var(--font-body);
  font-size: 13.5px;
}

.footer-contact-icon {
  color: var(--color-primary);
  font-size: 15px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact-link {
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: var(--color-primary);
}

/* Golden Bottom Bar */
.footer-bottom-bar {
  background-color: var(--color-primary);
  padding: 14px 32px;
}

.footer-bottom-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright-text,
.designed-text {
  color: #111418;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}

.heart-icon {
  color: #DC2626;
  display: inline-block;
  margin: 0 2px;
  font-size: 14px;
}

/* ================= KEYFRAME ANIMATIONS ================= */
@keyframes subtleFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.trust-badge-wrapper.floating {
  animation: subtleFloat 4.5s ease-in-out infinite;
}

/* ================= RESPONSIVE BREAKPOINTS ================= */
@media (max-width: 1180px) {
  .hero-container {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .features-grid {
    gap: 20px;
  }

  .nav-list {
    gap: 20px;
  }
  
  .trust-badge-wrapper {
    margin-top: 80px;
  }

  .services-grid {
    gap: 22px;
  }
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 28px;
  }

  .contact-media-col {
    grid-column: span 2;
    min-height: 320px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .footer-col:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 992px) {
  .nav-menu,
  .header-action {
    display: none;
  }

  .mobile-toggle,
  .mobile-menu {
    display: flex;
  }

  .hero-container {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 80px;
    gap: 36px;
  }

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

  .features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-overlay {
    background: 
      linear-gradient(
        180deg, 
        rgba(10, 13, 18, 0.95) 0%, 
        rgba(10, 13, 18, 0.85) 60%, 
        rgba(10, 13, 18, 0.4) 100%
      );
  }

  .trust-badge-wrapper {
    margin-top: 20px;
    align-self: center;
    padding-right: 0;
  }

  .roof-divider-svg {
    height: 60px;
  }

  .services-section {
    padding: 40px 24px 80px 24px;
  }

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

  /* About Section Tablet */
  .about-section {
    padding: 70px 24px;
  }

  .about-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .about-info {
    max-width: 100%;
    width: 100%;
  }

  .about-pillars-wrapper {
    width: 100%;
  }

  .about-pillars-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
    padding: 30px 20px;
  }

  .pillar-divider {
    display: none;
  }

  /* Why Choose Us Tablet */
  .why-us-wrapper {
    flex-direction: column-reverse;
  }

  .why-us-media {
    width: 100%;
    min-width: 0;
    height: 280px;
  }

  .why-us-img-wrap {
    clip-path: none;
    -webkit-clip-path: none;
  }

  .why-us-content {
    max-width: 100%;
    width: 100%;
    padding: 40px 24px 45px 24px;
  }

  .why-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }

  .why-badge-label {
    white-space: normal;
    text-align: center;
  }

  /* Projects Section Tablet */
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Expert CTA Banner Tablet */
  .expert-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 34px 24px;
  }

  .expert-info {
    max-width: 100%;
    width: 100%;
  }

  .expert-actions {
    justify-content: center;
    width: 100%;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  /* Header & Gold Hamburger Button */
  .header {
    height: 72px;
    background-color: #FFFFFF;
  }

  .header-container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .brand-logo {
    height: 44px;
    max-width: 170px;
    width: auto;
    object-fit: contain;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 38px;
    background-color: var(--color-primary);
    border-radius: 6px;
    gap: 4px;
    padding: 8px 10px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 184, 0, 0.25);
    flex-shrink: 0;
  }

  .mobile-toggle .bar {
    width: 22px;
    height: 3px;
    background-color: #111418;
    border-radius: 2px;
    transition: all var(--transition-smooth);
    margin: 0;
  }

  .mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    top: 72px;
    padding: 20px 20px 28px 20px;
  }

  /* Hero Section Mobile Positioning */
  .hero-section {
    min-height: calc(100vh - 72px);
    min-height: 760px;
    padding-top: 24px;
    padding-bottom: 75px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
  }

  .hero-bg-image {
    background-position: 72% center;
    background-size: cover;
  }

  .hero-overlay {
    background: 
      linear-gradient(
        90deg, 
        rgba(7, 9, 13, 0.97) 0%, 
        rgba(7, 9, 13, 0.88) 46%, 
        rgba(7, 9, 13, 0.40) 74%, 
        rgba(7, 9, 13, 0.12) 100%
      ),
      linear-gradient(
        180deg, 
        rgba(7, 9, 13, 0.45) 0%, 
        transparent 22%, 
        rgba(7, 9, 13, 0.42) 72%, 
        rgba(7, 9, 13, 0.95) 100%
      );
  }

  .hero-container {
    padding: 24px 20px 40px 20px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    box-sizing: border-box;
    gap: 0;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: left;
    box-sizing: border-box;
  }

  /* Headline Left-Aligned & Exact 4-Line Stack as Mockup */
  .hero-title {
    text-align: left;
    align-items: flex-start;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
  }

  .title-line {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .title-word {
    display: block;
    margin-right: 0 !important;
  }

  .title-white,
  .title-gold {
    font-size: clamp(32px, 8.8vw, 42px);
    line-height: 1.03;
    letter-spacing: -0.5px;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .title-white {
    color: #FFFFFF;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
  }

  .title-gold {
    color: var(--color-primary);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.85);
  }

  .hero-accent-bar {
    width: 48px;
    height: 5px;
    background-color: var(--color-primary);
    border-radius: 3px;
    margin: 16px 0 20px 0;
  }

  .hero-subtitle {
    font-size: 15.5px;
    font-weight: 500;
    color: #F8FAFC;
    line-height: 1.45;
    text-align: left;
    margin-bottom: 28px;
    max-width: 100%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  }

  /* 4 Badges in a Clean Vertical Stack on the Left */
  .features-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 26px;
    align-items: flex-start;
  }

  .feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
    width: auto;
    max-width: 100%;
  }

  .feature-icon-wrapper {
    position: relative;
    flex-shrink: 0;
  }

  .feature-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.8px solid var(--color-primary);
    background: rgba(10, 14, 20, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    font-size: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
  }

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

  .feature-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.25;
    letter-spacing: 0.1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
    white-space: normal;
  }

  /* CTA Button Left-Aligned */
  .hero-cta-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 4px;
  }

  .btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background-color: var(--color-primary);
    color: #000000;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
    max-width: calc(100% - 135px);
    white-space: nowrap;
  }

  /* Certified Seal Floating on Bottom Right */
  .trust-badge-wrapper {
    position: absolute;
    right: 14px;
    bottom: 30px;
    margin-top: 0;
    display: block !important;
    z-index: 10;
    align-self: auto;
    padding-right: 0;
    pointer-events: none;
  }

  .trust-badge {
    width: 130px;
    height: 130px;
    pointer-events: auto;
    transform: rotate(-10deg);
  }

  .badge-scallop-svg {
    width: 100%;
    height: 100%;
  }

  .badge-content {
    width: 100%;
    height: 100%;
    padding: 8px;
  }

  .badge-tag {
    font-size: 8px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1px;
  }

  .badge-title {
    font-size: 17px;
    letter-spacing: 0.8px;
    font-weight: 900;
    color: var(--color-primary);
    margin: 1px 0;
    line-height: 1.05;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  }

  .badge-subtitle {
    font-size: 7.5px;
    letter-spacing: 1.2px;
    font-weight: 700;
    color: var(--color-white);
    white-space: nowrap;
    margin-top: 2px;
    margin-bottom: 3px;
  }

  .badge-stars {
    gap: 3px;
    font-size: 8.5px;
    color: var(--color-primary);
  }

  /* Roof Divider SVG on Mobile */
  .roof-divider-container {
    bottom: -1px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .roof-divider-svg {
    height: 52px;
    width: 100%;
    display: block;
  }

  /* Services Section */
  .services-section {
    padding: 40px 16px 65px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    aspect-ratio: 16 / 10;
  }

  /* About Pillars on Mobile */
  .about-section {
    padding: 50px 16px 60px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .about-pillars-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
    padding: 24px 12px;
  }

  .pillar-divider {
    display: none;
  }

  .pillar-item {
    padding: 0 4px;
    width: 100%;
  }

  .pillar-icon-wrap {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .pillar-svg-icon {
    width: 40px;
    height: 40px;
  }

  .pillar-title {
    font-size: clamp(13px, 3.8vw, 15.5px);
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .pillar-desc {
    font-size: clamp(11.5px, 3vw, 12.5px);
    line-height: 1.45;
  }

  .btn-about {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  /* Why Us on Mobile */
  .why-us-content {
    padding: 34px 16px 28px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .why-us-title {
    text-align: center;
    margin-bottom: 24px;
    font-size: clamp(24px, 6vw, 32px);
  }

  .why-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    width: 100%;
  }

  .why-badge-item:last-child {
    grid-column: span 2;
    max-width: 220px;
    margin: 0 auto;
  }

  .why-badge-label {
    white-space: normal;
    text-align: center;
    font-size: 12px;
  }

  .why-us-media {
    width: 100%;
    min-width: 0;
    height: 220px;
  }

  .why-us-img-wrap {
    clip-path: none;
    -webkit-clip-path: none;
  }

  /* Projects Section */
  .projects-section {
    padding: 45px 16px 60px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
  }

  .project-card:nth-child(5) {
    grid-column: span 2;
  }

  .btn-projects {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  /* Expert CTA Banner */
  .expert-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 28px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .expert-info {
    max-width: 100%;
    width: 100%;
  }

  .expert-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .phone-pill,
  .btn-banner {
    width: 100%;
    justify-content: center;
  }

  .phone-pill {
    font-size: 16px;
    padding: 12px 18px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 50px 16px 65px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .testimonials-carousel-wrapper {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .testimonial-card {
    padding: 24px 18px 20px 18px;
    min-height: auto;
    width: 100%;
    box-sizing: border-box;
  }

  .testimonial-arrow {
    display: none;
  }

  /* Contact Section */
  .contact-section {
    padding: 45px 16px 65px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 26px;
    width: 100%;
  }

  .contact-media-col {
    grid-column: auto !important;
    min-height: 220px;
    width: 100%;
  }

  .contact-form-col,
  .contact-info-col {
    width: 100%;
    max-width: 100%;
  }

  .contact-form {
    padding: 20px 16px;
    width: 100%;
    box-sizing: border-box;
  }

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

  .btn-submit-message {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  /* Footer */
  .footer-container {
    padding: 40px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
    width: 100%;
  }

  .footer-col {
    width: 100%;
    max-width: 100%;
  }

  .footer-col:not(:last-child)::after {
    display: none;
  }

  .footer-logo-img {
    height: 44px;
  }

  .footer-bottom-bar {
    padding: 14px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 14px;
  }

  .brand-logo,
  .footer-logo-img {
    height: 42px;
    max-width: 150px;
  }

  .mobile-toggle {
    width: 40px;
    height: 36px;
    padding: 7px 9px;
  }

  .hero-section {
    min-height: 740px;
  }

  .hero-container {
    padding: 20px 16px 40px 16px;
  }

  .title-white,
  .title-gold {
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.04;
    letter-spacing: -0.4px;
  }

  .hero-accent-bar {
    width: 44px;
    height: 4.5px;
    margin: 14px 0 18px 0;
  }

  .hero-subtitle {
    font-size: 14.5px;
    margin-bottom: 24px;
    line-height: 1.45;
  }

  .features-grid {
    gap: 14px;
    margin-bottom: 24px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-icon-circle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

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

  .feature-label {
    font-size: 13.5px;
  }

  .btn-hero {
    padding: 13px 20px;
    font-size: 13px;
    max-width: calc(100% - 125px);
  }

  .trust-badge-wrapper {
    right: 12px;
    bottom: 26px;
  }

  .trust-badge {
    width: 120px;
    height: 120px;
    transform: rotate(-10deg);
  }

  .badge-tag {
    font-size: 7.5px;
    letter-spacing: 1.2px;
  }

  .badge-title {
    font-size: 15.5px;
    letter-spacing: 0.6px;
  }

  .badge-subtitle {
    font-size: 7px;
    letter-spacing: 1px;
  }

  .badge-stars {
    font-size: 8px;
    gap: 2.5px;
  }

  .services-title,
  .about-title,
  .projects-title,
  .testimonials-title,
  .contact-title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .about-pillars-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
    padding: 20px 8px;
  }

  .pillar-icon-wrap {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
  }

  .pillar-svg-icon {
    width: 34px;
    height: 34px;
  }

  .pillar-title {
    font-size: 13.5px;
    margin-bottom: 6px;
  }

  .pillar-desc {
    font-size: 11px;
    line-height: 1.4;
  }

  .contact-form {
    padding: 18px 14px;
  }

  .form-control {
    padding: 11px 13px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .hero-section {
    min-height: 680px;
    padding-bottom: 48px;
  }

  .title-white,
  .title-gold {
    font-size: 25px;
    line-height: 1.05;
  }

  .features-grid {
    gap: 12px;
    margin-bottom: 20px;
  }

  .feature-icon-circle {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

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

  .feature-label {
    font-size: 12.5px;
  }

  .btn-hero {
    padding: 12px 16px;
    font-size: 11.5px;
    max-width: calc(100% - 105px);
  }

  .trust-badge-wrapper {
    right: 8px;
    bottom: 20px;
  }

  .trust-badge {
    width: 100px;
    height: 100px;
    transform: rotate(-10deg);
  }

  .badge-tag {
    font-size: 6.5px;
  }

  .badge-title {
    font-size: 13px;
  }

  .badge-subtitle {
    font-size: 6px;
  }

  .badge-stars {
    font-size: 7px;
  }

  .about-pillars-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 8px;
    padding: 16px 6px;
  }

  .pillar-icon-wrap {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
  }

  .pillar-svg-icon {
    width: 30px;
    height: 30px;
  }

  .pillar-title {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .pillar-desc {
    font-size: 10px;
    line-height: 1.35;
  }

  .why-badges-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-badge-item:last-child {
    grid-column: auto;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-card:nth-child(5) {
    grid-column: auto;
  }
}
