/* =========================================
   Crockett Construction — Main Stylesheet
   ========================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:       #0D1F35;
  --navy-mid:   #1B3A5C;
  --orange:     #B85B0E;
  --orange-dark:#8C4408;
  --white:      #FFFFFF;
  --light:      #F4F7FB;
  --gray:       #6C7A8D;
  --dark:       #1A2535;
  --border:     #DDE3EC;
  --shadow:     0 4px 24px rgba(13,31,53,0.10);
  --shadow-lg:  0 8px 40px rgba(13,31,53,0.18);
  --radius:     10px;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --transition: 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }

ul { list-style: none; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

/* --- Utility Classes --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 620px;
}

.section-sub.light { color: rgba(255,255,255,0.75); }

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,123,31,0.35);
}

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

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

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.80);
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar a {
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar a:hover { color: var(--orange); }

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

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(13,31,53,0.09);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg { width: 26px; height: 26px; }

.nav-logo-text { line-height: 1.1; }
.nav-logo-text .brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  display: block;
}
.nav-logo-text .brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links li { position: relative; }

.nav-links a {
  display: block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); background: rgba(224,123,31,0.07); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 180px;
  padding: 8px 0;
  z-index: 100;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--dark);
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--light); color: var(--orange); }

.dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.6;
}

.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.88rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .mobile-sub {
  padding-left: 16px;
  font-size: 0.88rem;
  font-weight: 500;
}
.mobile-nav .btn { margin-top: 16px; display: block; text-align: center; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #2a5080 100%);
  overflow: hidden;
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

/* Respect users who prefer reduced motion — hide the autoplaying video, keep the poster */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* Decorative geometric shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 500px;
  background: rgba(224,123,31,0.08);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: rgba(224,123,31,0.05);
  border-radius: 50%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,123,31,0.15);
  border: 1px solid rgba(224,123,31,0.35);
  border-radius: 40px;
  padding: 6px 16px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-stat {
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
  background: var(--orange);
  padding: 20px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.trust-item:last-child { border-right: none; }

.trust-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* =========================================
   SERVICES
   ========================================= */
.services { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(224,123,31,0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card a:hover { gap: 10px; }

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

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

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 5rem;
}

.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-card .big-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-card .big-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-top: 4px;
}

.about-content .section-sub { margin-bottom: 24px; }

.about-checks { margin: 28px 0; }
.about-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.97rem;
  color: var(--dark);
}
.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(224,123,31,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.65rem;
  color: var(--orange);
}

/* =========================================
   GAF CERTIFICATION
   ========================================= */
.gaf-section {
  background: var(--navy);
  padding: 64px 0;
}

.gaf-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.gaf-text { flex: 1; min-width: 260px; }
.gaf-text h2 { color: var(--white); margin-bottom: 14px; font-size: 1.8rem; }
.gaf-text p { color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.gaf-highlight {
  display: inline-block;
  background: rgba(224,123,31,0.18);
  border-left: 3px solid var(--orange);
  padding: 12px 20px;
  border-radius: 0 6px 6px 0;
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}

.gaf-badge {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
  flex-shrink: 0;
}
.gaf-badge .shield { font-size: 3rem; margin-bottom: 8px; }
.gaf-badge .gaf-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.gaf-badge .gaf-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* =========================================
   REVIEWS
   ========================================= */
.reviews-section { background: var(--light); }

.stars {
  color: #F5A623;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }

.review-card p {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.review-card p::before { content: '"'; font-size: 2rem; color: var(--orange); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.review-card p::after  { content: '"'; font-size: 2rem; color: var(--orange); line-height: 0; vertical-align: -0.4em; margin-left: 4px; }

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}
.reviewer-source {
  font-size: 0.78rem;
  color: var(--gray);
}

.reviews-cta {
  text-align: center;
  margin-top: 44px;
}

/* =========================================
   SERVICE AREAS
   ========================================= */
.areas-section { background: var(--white); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.area-chip {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 18px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-head);
  transition: all var(--transition);
}
.area-chip:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* =========================================
   MILITARY
   ========================================= */
.military-section {
  background: linear-gradient(135deg, #0a1a30 0%, var(--navy-mid) 100%);
  padding: 64px 0;
}

.military-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.military-icon { font-size: 4rem; flex-shrink: 0; }
.military-text h2 { color: var(--white); margin-bottom: 10px; font-size: 1.7rem; }
.military-text p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 540px; }
.military-text .rebate {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 20px;
  border-radius: 6px;
  margin-top: 16px;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--orange);
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.cta-inner .btn-outline { flex-shrink: 0; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.70);
  padding: 64px 0 0;
}

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

.footer-logo-wrap .nav-logo { margin-bottom: 18px; }
.footer-logo-wrap .brand-name { color: var(--white) !important; }
.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.60);
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.70);
}
.footer-contact-item a { color: rgba(255,255,255,0.70); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.70) !important;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white) !important;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--orange); }

/* =========================================
   INNER PAGE HERO (sub-pages)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(224,123,31,0.07);
  border-radius: 50%;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,0.75); margin-top: 12px; font-size: 1.05rem; max-width: 560px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.60); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.40); }
.breadcrumb .current { color: var(--orange); font-weight: 600; }

/* =========================================
   CONTENT SECTIONS (inner pages)
   ========================================= */
.content-section { padding: 80px 0; }
.content-section.bg-light { background: var(--light); }

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.feature-list { margin: 24px 0; }
.feature-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.feature-list li:last-child { border-bottom: none; }
.feature-bullet {
  width: 28px;
  height: 28px;
  background: rgba(224,123,31,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.3);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,31,53,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 2rem;
  color: var(--white);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* =========================================
   CONTACT / FORM
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(224,123,31,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--orange);
  padding: 12px;
}
.contact-info-icon svg { width: 100%; height: 100%; }
.contact-info-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.97rem;
  color: var(--dark);
  font-weight: 500;
}
.contact-info-value a { color: var(--dark); }
.contact-info-value a:hover { color: var(--orange); }

/* Form */
.estimate-form {
  background: var(--white);
  border-radius: 16px;
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.estimate-form h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.estimate-form > p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,123,31,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

.form-submit { width: 100%; padding: 15px; font-size: 1rem; }

/* --- Real Logo Image --- */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
@media (max-width: 768px) {
  .nav-logo-img { height: 42px; }
}

/* --- Inline Icon Sizing --- */
.top-bar a svg.ic {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 6px;
  stroke-width: 2;
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}
.service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--orange);
}
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.check-icon svg {
  width: 12px;
  height: 12px;
  color: var(--orange);
  stroke-width: 4;
}
.shield svg {
  width: 56px;
  height: 56px;
  color: var(--white);
}
.military-icon svg {
  width: 64px;
  height: 64px;
  color: var(--white);
  stroke-width: 1.5;
}
.footer-contact-item svg.ic {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}
.social-link svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.85);
  display: block;
}
.social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

/* --- Shingle Color Grid --- */
.color-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.color-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.color-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.color-swatch {
  width: 100%;
  height: 168px;
}
.color-name {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  padding: 14px 16px 4px;
}
.color-line {
  color: var(--gray);
  font-size: 0.82rem;
  padding: 0 16px 16px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img, .about-img-placeholder { height: 320px; }
  .about-badge-card { bottom: 16px; right: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .top-bar .container { justify-content: center; }
  .top-bar-left { justify-content: center; }

  .hero { min-height: auto; }
  .hero-content { padding: 64px 0; }
  .hero-stats { gap: 24px; }

  .trust-item { padding: 8px 16px; font-size: 0.8rem; }

  .gaf-inner { flex-direction: column; text-align: center; }
  .gaf-highlight { text-align: left; }

  .military-inner { flex-direction: column; }
  .cta-inner { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .estimate-form { padding: 28px 20px; }
  .contact-info-card { padding: 28px 20px; }

  .color-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .color-swatch { height: 130px; }
  .vhb-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
}

@media (max-width: 480px) {
  .trust-bar .container { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.3); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
