/* ============================================
   Afford-A-Door Inc — Main Stylesheet
   ============================================ */

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

:root {
  --navy:    #1a2744;
  --navy2:   #162038;
  --orange:  #e8550a;
  --orange2: #c94608;
  --white:   #ffffff;
  --light:   #f5f7fb;
  --gray:    #6b7280;
  --dark:    #1e293b;
  --border:  #e2e8f0;
  --shadow:  0 4px 24px rgba(26,39,68,.10);
  --radius:  8px;
  --font:    'Inter', 'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

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

a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange2); }

h1,h2,h3,h4,h5 { line-height: 1.3; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: #374151; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-pad { padding: 70px 0; }
.section-pad-sm { padding: 50px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: .3px;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange2);
  border-color: var(--orange2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,85,10,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--orange);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy2);
  border-color: var(--navy2);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--navy2);
  color: #cbd5e1;
  font-size: .85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #e2e8f0; }
.top-bar a:hover { color: var(--orange); }
.top-bar .tb-right { display: flex; gap: 18px; align-items: center; }

/* ---- Header / Navbar ---- */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.navbar-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar-logo img { height: 64px; width: auto; }
.navbar-logo .logo-text { color: var(--white); font-size: 1.3rem; font-weight: 800; line-height: 1.2; }
.navbar-logo .logo-sub { color: #94a3b8; font-size: .75rem; font-weight: 400; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: #e2e8f0;
  font-weight: 600;
  font-size: .93rem;
  padding: 8px 14px;
  border-radius: 6px;
  display: block;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

/* Dropdown */
.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  min-width: 270px;
  list-style: none;
  overflow: hidden;
  z-index: 200;
}
.nav-links li:hover > .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 11px 20px;
  color: var(--dark);
  font-size: .9rem;
  font-weight: 500;
  transition: background .15s;
  border-left: 3px solid transparent;
}
.dropdown-menu li a:hover {
  background: var(--light);
  color: var(--orange);
  border-left-color: var(--orange);
}
.dropdown-menu li { border-bottom: 1px solid var(--border); }
.dropdown-menu li:last-child { border-bottom: none; }

.nav-cta { margin-left: 10px; }
.nav-phone {
  color: var(--orange) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  background: rgba(232,85,10,.12) !important;
  border: 1px solid rgba(232,85,10,.3) !important;
}
.nav-phone:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2744 50%, #243358 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  opacity: .15;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,39,68,.95) 0%, rgba(26,39,68,.7) 60%, rgba(26,39,68,.4) 100%);
}
.hero .container { position: relative; z-index: 2; padding: 80px 20px; }
.hero-badge {
  display: inline-block;
  background: rgba(232,85,10,.2);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
.hero p {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* inner page hero */
.page-hero {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2744 60%, #243358 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover no-repeat;
  opacity: .08;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .85rem;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: #94a3b8; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: #64748b; }
.breadcrumb .current { color: #e2e8f0; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: #94a3b8; font-size: 1.05rem; max-width: 700px; }
.page-hero .ext-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 12px;
}
.page-hero .ext-link:hover { color: #fff; }

/* ---- Section Titles ---- */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title .label {
  display: inline-block;
  background: rgba(232,85,10,.1);
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title h2 { margin-bottom: 14px; }
.section-title p { color: var(--gray); max-width: 620px; margin: 0 auto; }
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--orange), var(--orange2));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ---- About Strip ---- */
.about-strip { background: var(--light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .label {
  display: inline-block;
  background: rgba(232,85,10,.1);
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.about-text h2 { margin-bottom: 18px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 30px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-card .number { font-size: 2rem; font-weight: 800; color: var(--orange); }
.stat-card .label2 { font-size: .82rem; color: var(--gray); font-weight: 500; }
.about-image { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.15); }
.about-image img { width: 100%; height: 420px; object-fit: cover; }

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,39,68,.16);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--light);
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.service-card p { color: var(--gray); font-size: .9rem; flex: 1; }
.service-card .card-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.service-card .card-links a {
  font-size: .83rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  transition: all .2s;
}
.service-card .card-links a:hover {
  background: var(--orange);
  color: var(--white);
}
.service-card .card-links a.ext {
  border-color: var(--navy);
  color: var(--navy);
}
.service-card .card-links a.ext:hover {
  background: var(--navy);
  color: var(--white);
}

/* Service detail page items */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}
.svc-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.svc-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(26,39,68,.14);
}
.svc-item-img {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), #2d4a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}
.svc-item-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-item-body { padding: 22px; flex: 1; }
.svc-item-body h3 { color: var(--navy); margin-bottom: 10px; }
.svc-item-body p { color: var(--gray); font-size: .92rem; margin-bottom: 0; }
.svc-item-body .ext-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--orange);
  font-size: .85rem;
  font-weight: 600;
  margin-top: 10px;
}

/* ---- Why Choose Us ---- */
.why-section { background: var(--navy); }
.why-section .section-title h2 { color: var(--white); }
.why-section .section-title p { color: #94a3b8; }
.why-section .divider { background: linear-gradient(to right, var(--orange), #ff8a50); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: background .3s, transform .3s;
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--white);
}
.why-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.why-card p { color: #94a3b8; font-size: .9rem; margin-bottom: 0; }

/* ---- Testimonials ---- */
.testimonials-section { background: var(--light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  opacity: .15;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
}
.stars { color: #f59e0b; margin-bottom: 14px; font-size: 1.1rem; }
.testimonial-card p { color: #4b5563; font-size: .93rem; font-style: italic; }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #2d4a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: .93rem; color: var(--navy); }
.reviewer-info span { font-size: .8rem; color: var(--gray); }

/* ---- FAQ ---- */
.faq-section { background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--white);
  transition: background .2s;
}
.faq-question:hover { background: var(--light); }
.faq-question h3 { font-size: 1rem; color: var(--navy); margin: 0; font-weight: 600; }
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: background .2s, transform .3s;
}
.faq-item.open .faq-toggle { background: var(--orange); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: .95rem;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
  padding: 70px 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: var(--white); margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,.85); margin-bottom: 0; font-size: 1.05rem; }
.cta-inner .btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}
.cta-inner .btn-white:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ---- Contact Info Cards ---- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.contact-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 30px 24px;
  text-align: center;
  border-top: 4px solid var(--orange);
}
.contact-card .icon {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 14px;
}
.contact-card h3 { margin-bottom: 10px; font-size: 1rem; }
.contact-card p { font-size: .9rem; color: var(--gray); margin-bottom: 6px; }
.contact-card a { color: var(--orange); font-weight: 600; }

/* ---- Contact Form ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 36px;
}
.contact-form h2 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .87rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font);
  color: var(--dark);
  background: var(--light);
  transition: border .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Business Hours Table */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 14px; font-size: .93rem; }
.hours-table td:first-child { font-weight: 600; color: var(--navy); }
.hours-table td:last-child { color: var(--gray); text-align: right; }
.open-badge {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  font-size: .75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.closed-badge {
  display: inline-block;
  background: #fee2e2;
  color: #dc2626;
  font-size: .75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ---- Map Section ---- */
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrapper iframe { display: block; }

/* ---- Service Areas ---- */
.areas-section { background: var(--light); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.area-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  font-weight: 500;
  font-size: .9rem;
  color: var(--navy);
}
.area-item::before {
  content: '📍';
  font-size: 1rem;
}

/* ---- About Page ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
  margin-top: 30px;
}
.value-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 24px 18px;
  text-align: center;
  border-top: 4px solid var(--orange);
}
.value-card .icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3 { font-size: .95rem; margin-bottom: 8px; }
.value-card p { font-size: .83rem; color: var(--gray); margin-bottom: 0; }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 18px;
}
.brand-tag {
  background: var(--light);
  border-radius: var(--radius);
  padding: 16px 10px;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  font-size: .88rem;
  border: 1.5px solid var(--border);
  transition: all .2s;
}
.brand-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Patio screens How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.step-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 34px 28px;
  text-align: center;
  position: relative;
}
.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 18px;
}
.step-card h3 { margin-bottom: 12px; }
.step-card p { color: var(--gray); font-size: .92rem; margin-bottom: 0; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  border-left: 4px solid var(--orange);
}
.benefit-card .icon { font-size: 2rem; margin-bottom: 14px; }
.benefit-card h3 { margin-bottom: 10px; }
.benefit-card p { color: var(--gray); font-size: .92rem; margin-bottom: 0; }

.features-list { list-style: none; margin-top: 20px; }
.features-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.features-list li:last-child { border-bottom: none; }
.features-list li .fi {
  width: 32px;
  height: 32px;
  background: rgba(232,85,10,.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.features-list li h4 { font-size: .95rem; margin-bottom: 4px; }
.features-list li p { font-size: .88rem; color: var(--gray); margin-bottom: 0; }

/* ---- Footer ---- */
footer {
  background: var(--navy2);
  color: #94a3b8;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 72px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1rem;
  transition: all .2s;
  text-decoration: none;
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(232,85,10,.5);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: #94a3b8;
  font-size: .88rem;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--orange); }
.footer-links a::before { content: '›'; color: var(--orange); font-size: 1.1rem; }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .88rem;
}
.footer-contact .ic { color: var(--orange); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: #94a3b8; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .83rem;
}
.footer-bottom a { color: var(--orange); }
.footer-bottom a:hover { color: #ff8a50; }

/* ---- External Link Note ---- */
.ext-link-note {
  background: rgba(232,85,10,.07);
  border: 1px solid rgba(232,85,10,.25);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-size: .9rem;
}
.ext-link-note a { font-weight: 700; color: var(--orange); }
.ext-link-note a:hover { text-decoration: underline; }
.ext-link-note .icon { color: var(--orange); font-size: 1.1rem; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { display: none; }
  .values-grid { grid-template-columns: repeat(3,1fr); }
  .brands-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; gap: 4px; }
  .top-bar .tb-right { gap: 12px; }

  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--navy2);
    padding: 80px 20px 30px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: -4px 0 30px rgba(0,0,0,.4);
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { padding: 12px 16px; font-size: 1rem; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: rgba(255,255,255,.05);
    border-radius: 0;
    display: none !important;
  }
  .nav-links li:hover > .dropdown-menu { display: none !important; }
  .nav-links li.drop-open > .dropdown-menu { display: block !important; }
  .dropdown-menu li a { color: #94a3b8; border-left: none; padding: 10px 30px; }
  .nav-cta { display: none; }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 9998;
  }
  .mobile-overlay.open { display: block; }
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
  }

  .hero { min-height: 500px; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }

  .services-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .brands-grid { grid-template-columns: repeat(3,1fr); }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .navbar-logo .logo-text { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: repeat(2,1fr); }
  .areas-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}
