:root {
  --van-blue: #2d6fc7;
  --van-dark: #1a4e9e;
  --navy: #0d1f3c;
  --steel: #1a3055;
  --gold: #f5c800;
  --gold-light: #ffd700;
  --light: #eef4fb;
  --mid: #b8cfe8;
  --white: #ffffff;
  --text: #0d1f3c;
  --subtext: #3d5a80;
  --green: #22c55e;
  --section-bg: #f4f8fd;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* FLOATING PHONE */
.float-phone { position: fixed; bottom: 28px; right: 28px; z-index: 9999; background: #dc2626; color: white; width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(220,38,38,0.5); animation: phonePulse 2s infinite; transition: all 0.3s; }
.float-phone svg { width: 28px; height: 28px; fill: white; }
.float-phone:hover { background: #b91c1c; transform: scale(1.15); box-shadow: 0 6px 30px rgba(220,38,38,0.7); animation: phoneBlink 0.4s infinite; }
.float-phone-label { position: absolute; right: 72px; background: var(--navy); color: white; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 4px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.float-phone:hover .float-phone-label { opacity: 1; }
@keyframes phonePulse { 0%,100% { box-shadow: 0 4px 20px rgba(220,38,38,0.5); } 50% { box-shadow: 0 4px 32px rgba(220,38,38,0.9), 0 0 0 8px rgba(220,38,38,0.2); } }
@keyframes phoneBlink { 0%,100% { opacity:1; } 50% { opacity:0.6; } }

/* TOPBAR */
.topbar { background: var(--navy); padding: 9px 0; font-size: 13px; color: var(--mid); border-bottom: 2px solid var(--gold); }
.topbar-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--gold); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.topbar a:hover { color: white; }
.topbar .divider { margin: 0 10px; opacity: 0.3; }
.topbar-left { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.topbar-right { font-size: 12px; color: rgba(200,214,229,0.6); }

/* BRAND HEADER */
.brand-header { background: linear-gradient(135deg, var(--van-blue) 0%, var(--van-dark) 100%); padding: 18px 0; border-bottom: 4px solid var(--gold); }
.brand-header-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.brand-header-logo { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.brand-header-logo img { height: 70px; width: auto; border-radius: 6px; }
.brand-name-main { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 4vw, 56px); font-weight: 900; color: white; text-transform: uppercase; letter-spacing: 2px; line-height: 1; text-shadow: 2px 2px 8px rgba(0,0,0,0.3); }
.brand-name-main span { color: white; }
.brand-name-sub { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(13px, 1.6vw, 18px); font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 4px; text-transform: uppercase; margin-top: 4px; }
.brand-header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.header-phone { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(22px, 3vw, 36px); font-weight: 900; color: var(--gold); text-decoration: none; letter-spacing: 1px; }
.header-phone:hover { color: white; }
.header-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.h-badge { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: white; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.5px; white-space: nowrap; }

/* NAV */
nav { background: var(--navy); position: sticky; top: 0; z-index: 500; box-shadow: 0 3px 20px rgba(0,0,0,0.3); border-bottom: 3px solid var(--gold); }
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; height: 58px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; border-radius: 4px; }
.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.85); font-weight: 600; font-size: 12px; padding: 8px 12px; border-radius: 4px; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.1); color: var(--gold); }
.nav-links .cta-btn { background: var(--gold); color: var(--navy) !important; padding: 9px 16px; border-radius: 4px; margin-left: 6px; }
.nav-links .cta-btn:hover { background: var(--gold-light) !important; color: var(--navy) !important; }
.nav-links .call-btn { background: #22c55e; color: white !important; padding: 9px 16px; border-radius: 4px; }
.nav-links .call-btn:hover { background: #16a34a !important; }

/* Services Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: 0.7; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--navy); border: 1px solid rgba(184,134,11,0.3); border-top: 3px solid var(--gold); border-radius: 0 0 10px 10px; min-width: 240px; z-index: 600; box-shadow: 0 12px 32px rgba(0,0,0,0.4); padding: 8px 0; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 18px; color: rgba(255,255,255,0.85) !important; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.05); background: transparent !important; transition: all 0.15s; }
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: rgba(184,134,11,0.15) !important; color: var(--gold) !important; padding-left: 24px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 57px; left: 0; right: 0; background: var(--navy); border-bottom: 3px solid var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,0.3); z-index: 499; padding: 20px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-weight: 600; font-size: 15px; color: rgba(255,255,255,0.85); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.08); text-transform: uppercase; }
.mobile-menu .m-cta { background: var(--gold); color: var(--navy) !important; text-align: center; border-radius: 4px; padding: 14px; margin-top: 12px; border-bottom: none; }

/* PAGE HERO BANNER (interior pages) */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%); padding: 60px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px); }
.page-hero-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.page-hero-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px, 5vw, 60px); font-weight: 900; color: white; text-transform: uppercase; line-height: 1; margin-bottom: 14px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--mid); font-size: 16px; line-height: 1.7; max-width: 600px; }
.page-hero.has-photo { background-color: var(--navy); background-image: linear-gradient(112deg, rgba(13,31,60,0.94) 0%, rgba(13,31,60,0.86) 46%, rgba(20,54,105,0.70) 100%), var(--hero-photo); background-size: cover; background-position: center 50%; background-repeat: no-repeat; background-position: var(--hero-pos, center 50%); padding: 76px 0; }
.page-hero.has-photo.dim { background-image: linear-gradient(112deg, rgba(13,31,60,0.965) 0%, rgba(13,31,60,0.93) 46%, rgba(20,54,105,0.82) 100%), var(--hero-photo); }
.page-hero.has-photo p { color: rgba(255,255,255,0.88); }
.page-hero.has-photo .breadcrumb, .page-hero.has-photo .breadcrumb a { text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.page-hero.has-photo h1 { text-shadow: 0 2px 14px rgba(0,0,0,0.45); }
@media (max-width: 768px) { .page-hero.has-photo { background-image: linear-gradient(165deg, rgba(13,31,60,0.95) 0%, rgba(13,31,60,0.90) 55%, rgba(20,54,105,0.80) 100%), var(--hero-photo); padding: 56px 0; } }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 12px; color: rgba(200,214,229,0.6); }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: white; }

/* SECTIONS */
section { padding: 80px 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 4vw, 50px); font-weight: 900; text-transform: uppercase; line-height: 1.05; margin-bottom: 16px; color: var(--navy); }
.section-title span { color: var(--van-blue); }
.section-sub { color: var(--subtext); font-size: 16px; line-height: 1.75; max-width: 600px; }

/* BUTTONS */
.btn-primary { background: var(--gold); color: var(--navy); padding: 15px 30px; border-radius: 4px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.25s; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,134,11,0.35); }
.btn-call { background: #22c55e; color: white; padding: 15px 30px; border-radius: 4px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.25s; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 8px; }
.btn-call:hover { background: #16a34a; transform: translateY(-2px); }
.btn-outline { border: 2px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.9); padding: 15px 30px; border-radius: 4px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.25s; text-transform: uppercase; letter-spacing: 1px; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* TRUST BAR */
.trust-bar { background: var(--van-blue); padding: 16px 0; border-bottom: 3px solid var(--gold); }
.trust-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 14px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: white; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.trust-icon { width: 34px; height: 34px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }

/* SIDEBAR LAYOUT */
.page-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; margin-top: 52px; }
.sidebar { position: sticky; top: 80px; }

/* SIDEBAR SHORT FORM */
.sidebar-form { background: var(--navy); border-radius: 14px; overflow: hidden; margin-bottom: 24px; }
.sf-header { background: linear-gradient(135deg, var(--gold), var(--gold-light)); padding: 18px 22px; }
.sf-header h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; color: white; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.sf-header p { font-size: 11px; color: rgba(255,255,255,0.85); margin-top: 3px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.sf-body { padding: 18px 22px; }
.sf-input { width: 100%; padding: 11px 14px; border: 1.5px solid rgba(255,255,255,0.15); border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: 14px; color: white; background: rgba(255,255,255,0.08); margin-bottom: 10px; display: block; transition: border-color 0.2s; }
.sf-input::placeholder { color: rgba(255,255,255,0.9); font-weight: 500; }
.sf-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.13); }
.sf-input option { background: #0d1f3c; color: white; }
.sf-btn { width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); border: none; padding: 13px; border-radius: 6px; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.25s; margin-bottom: 8px; }
.sf-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,134,11,0.4); }
.sf-note { font-size: 11px; color: rgba(200,214,229,0.55); text-align: center; line-height: 1.5; }
.sf-note a { color: var(--gold); text-decoration: none; }

/* SIDEBAR CONTACT INFO */
.sidebar-contact { background: white; border-radius: 14px; border: 2px solid rgba(184,134,11,0.2); padding: 22px; margin-bottom: 24px; }
.sidebar-contact h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; letter-spacing: 0.5px; }
.sc-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.sc-icon { width: 36px; height: 36px; background: var(--van-blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.sc-item a { color: var(--van-blue); text-decoration: none; font-weight: 600; }
.sc-item a:hover { color: var(--gold); }
.sc-item span { color: var(--subtext); }
.emergency-badge { background: linear-gradient(135deg, #dc2626, #b91c1c); border-radius: 8px; padding: 12px 16px; text-align: center; }
.emergency-badge p { font-size: 11px; color: rgba(255,255,255,0.85); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.emergency-badge a { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; color: white; text-decoration: none; letter-spacing: 1px; }

/* SERVICE/CONTENT CARDS */
.service-card { background: white; border-radius: 12px; padding: 32px 28px; border: 1px solid rgba(184,207,232,0.5); border-top: 4px solid var(--van-blue); box-shadow: 0 2px 16px rgba(45,111,199,0.06); transition: all 0.3s; margin-bottom: 24px; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(45,111,199,0.12); border-top-color: var(--gold); }
.service-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--van-blue), var(--van-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.service-card h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; color: var(--navy); }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; color: var(--navy); }
.service-card p { color: var(--subtext); font-size: 14px; line-height: 1.75; margin-bottom: 12px; }
.service-card ul { list-style: none; margin-bottom: 16px; }
.service-card ul li { color: var(--subtext); font-size: 14px; padding: 5px 0; border-bottom: 1px solid var(--light); display: flex; align-items: center; gap: 8px; }
.service-card ul li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* PRODUCT CARDS */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.product-card { background: white; border-radius: 12px; overflow: hidden; border: 1px solid rgba(184,207,232,0.5); box-shadow: 0 2px 16px rgba(0,0,0,0.05); transition: all 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(45,111,199,0.14); border-color: var(--van-blue); }
.product-img { height: 220px; overflow: hidden; background: var(--light); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 22px; }
.product-brand { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.product-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 21px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; color: var(--navy); }
.product-card p { color: var(--subtext); font-size: 13px; line-height: 1.65; margin-bottom: 14px; }
.product-tag { display: inline-block; background: var(--light); border: 1px solid var(--mid); color: var(--steel); font-size: 11px; padding: 3px 8px; border-radius: 3px; margin: 2px; font-weight: 600; }

/* GALLERY GRID */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; height: 260px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; height: auto; min-height: 536px; }
.gallery-item .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,31,60,0.85) 0%, transparent 55%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 20px; }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: white; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* BRAND TILES */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px,1fr)); gap: 16px; margin-top: 44px; }
.brand-tile { background: white; border: 2px solid rgba(184,207,232,0.6); border-radius: 12px; padding: 20px 14px 14px; text-align: center; transition: all 0.25s; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 110px; }
.brand-tile:hover { border-color: var(--gold); transform: scale(1.05); box-shadow: 0 8px 28px rgba(184,134,11,0.15); }
.brand-tile img { max-width: 120px; max-height: 52px; object-fit: contain; }
.brand-tile svg { width: 120px; height: 50px; }
.brand-tile small { display: block; font-size: 10px; font-weight: 600; letter-spacing: 1px; color: var(--subtext); margin-top: 8px; text-transform: uppercase; }

/* BLOG CARDS */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: white; border-radius: 12px; overflow: hidden; border: 1px solid rgba(184,207,232,0.5); transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(45,111,199,0.1); }
.blog-img { height: 180px; background: linear-gradient(135deg, var(--van-blue), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 52px; position: relative; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-cat { position: absolute; top: 12px; left: 12px; background: var(--gold); color: white; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; }
.blog-body { padding: 22px; }
.blog-date { font-size: 11px; color: var(--subtext); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.blog-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.blog-card p { font-size: 13px; color: var(--subtext); line-height: 1.65; margin-bottom: 16px; }
.blog-link { color: var(--van-blue); font-size: 12px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; }
.blog-link:hover { color: var(--gold); }

/* FULL CONTACT FORM */
.contact-form { background: white; border-radius: 14px; padding: 36px 32px; box-shadow: 0 4px 28px rgba(45,111,199,0.1); border: 1px solid rgba(184,207,232,0.5); }
.contact-form h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 13px 16px; border: 2px solid var(--mid); border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--text); transition: border-color 0.2s; background: white; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--van-blue); }
.contact-form textarea { height: 110px; resize: vertical; margin-top: 14px; }
.form-field { margin-bottom: 14px; }
.submit-btn { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); border: none; padding: 16px 32px; border-radius: 6px; font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; width: 100%; transition: all 0.25s; margin-top: 6px; font-family: 'Barlow Condensed', sans-serif; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,134,11,0.35); }
.form-note { font-size: 12px; color: var(--subtext); text-align: center; margin-top: 10px; }

/* WHY CARDS */
.why { background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%); }
.why .section-title { color: white; }
.why .section-sub { color: var(--mid); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 20px; margin-top: 52px; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 12px; padding: 28px 22px; transition: all 0.3s; }
.why-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(184,134,11,0.4); transform: translateY(-3px); }
.why-card .icon { font-size: 34px; margin-bottom: 16px; display: block; }
.why-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.why-card p { color: var(--mid); font-size: 14px; line-height: 1.65; }

/* AREAS */
.areas { background: var(--van-blue); padding: 52px 0; }
.areas-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.areas h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; color: white; }
.areas-sub { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 24px; }
.areas-list { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tag { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); color: white; padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; transition: all 0.2s; }
.area-tag:hover { background: rgba(255,255,255,0.22); }

/* FOOTER */
footer { background: var(--navy); color: var(--mid); padding: 60px 0 0; }
.footer-grid { max-width: 1400px; margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand img { height: 60px; width: auto; border-radius: 6px; margin-bottom: 16px; display: block; }
.footer-brand p { color: var(--mid); font-size: 13px; line-height: 1.75; }
.veteran-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 8px 16px; border-radius: 20px; font-size: 12px; color: var(--gold); margin-top: 18px; font-weight: 600; }
footer h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 18px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: rgba(200,214,229,0.7); text-decoration: none; font-size: 13px; transition: color 0.2s; }
footer ul li a:hover { color: var(--gold); }
.site-credit { font-size: 11px; color: rgba(200,214,229,0.35); letter-spacing: .3px; white-space: nowrap; }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(200,214,229,0.3); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; min-height: 260px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .brand-name-main { font-size: 26px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .float-phone { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .topbar-right { display: none; }
}
