/* ============================================
   Northbound Fences — Global Stylesheet
   NBfences.com
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #2235B8;
  --navy: #141B6E;
  --white: #FFFFFF;
  --light-bg: #F4F6FA;
  --gold: #F5A623;
  --text: #222222;
  --text-muted: #666666;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --radius: 8px;
  --nav-height: 75px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  padding-top: var(--nav-height);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--navy);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  z-index: 10000;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo img {
  height: 55px;
  width: auto;
}

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

.nav-links a {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 4px;
  margin-left: 12px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.nav-phone:hover {
  background: #e6951a;
  transform: scale(1.03);
  color: var(--navy);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 10001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 1023px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--navy);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 14px 20px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-phone-mobile {
    display: flex !important;
  }

  .nav-phone-desktop {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .nav-phone-mobile {
    display: none !important;
  }

  .nav-phone-desktop {
    display: flex !important;
  }
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero .subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page hero (shorter for inner pages) */
.hero-page {
  min-height: 50vh;
}

@media (max-width: 767px) {
  .hero {
    min-height: 70vh;
  }

  .hero-page {
    min-height: 40vh;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: #e6951a;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--light-bg);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 80px 0;
}

.section-light {
  background: var(--light-bg);
}

.section-white {
  background: var(--white);
}

.section-blue {
  background: var(--primary);
  color: var(--white);
}

.section-blue h2,
.section-blue h3,
.section-blue p {
  color: var(--white);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-navy h2,
.section-navy h3,
.section-navy p {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-header .accent-line {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 0;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  flex: 0 1 180px;
}

.trust-badge .badge-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge .badge-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.trust-badge span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--primary);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card .card-icon {
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.service-card .card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.service-card .btn {
  padding: 10px 24px;
  font-size: 0.95rem;
}

/* Service card with image */
.service-card-img {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.service-card-img .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-img .card-body {
  padding: 25px;
  text-align: center;
}

/* ============================================
   ABOUT SNIPPET
   ============================================ */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-snippet-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-snippet-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-snippet-text h2 {
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-snippet-text p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.review-card .stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card .review-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.review-card .reviewer {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--navy);
}

.review-card .reviewer span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-card .google-attr {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 40px 20px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--primary);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta-banner .cta-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 20px;
  transition: color var(--transition);
}

.cta-banner .cta-phone:hover {
  color: var(--gold);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 {
  color: var(--white);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer a:hover {
  color: var(--gold);
}

.footer-links a {
  display: block;
  padding: 3px 0;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-credit {
  margin-top: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--text-muted);
  margin: 0 8px;
}

.breadcrumb .current {
  color: var(--navy);
  font-weight: 600;
}

/* ============================================
   SERVICE PAGE CONTENT
   ============================================ */
.service-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.service-content h2 {
  text-transform: uppercase;
  margin: 30px 0 14px;
}

.service-content h3 {
  margin: 24px 0 10px;
}

.service-content p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.service-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.service-content ul li {
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.6;
}

.service-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.sidebar-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 20px;
  border-top: 4px solid var(--primary);
}

.sidebar-card h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
}

.sidebar-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.sidebar-card ul li:last-child {
  border-bottom: none;
}

.sidebar-card ul li a {
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card ul li a:hover {
  color: var(--primary);
}

.sidebar-card ul li a.active-service {
  color: var(--primary);
  font-weight: 700;
}

.sidebar-cta {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  color: var(--white);
}

.sidebar-cta h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.sidebar-cta .cta-phone-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.sidebar-cta .cta-phone-link:hover {
  color: var(--white);
}

/* Service images in content */
.service-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.service-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

.service-img-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Benefits row */
.benefits-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.benefit-item {
  text-align: center;
  padding: 20px 15px;
  background: var(--light-bg);
  border-radius: var(--radius);
}

.benefit-item svg {
  width: 36px;
  height: 36px;
  fill: var(--primary);
  margin-bottom: 10px;
}

.benefit-item span {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--navy);
}

/* ============================================
   MATERIALS SECTION
   ============================================ */
.materials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.material-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--navy);
  transition: transform var(--transition), box-shadow var(--transition);
}

.material-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.material-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

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

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 53, 184, 0.1);
}

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

.contact-info-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 35px;
}

.contact-info-card h3 {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item .info-text {
  flex: 1;
}

.contact-info-item .info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}

.contact-info-item .info-value {
  color: var(--text-muted);
}

.contact-info-item .info-value a {
  color: var(--primary);
  font-weight: 600;
}

.map-embed {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  border: none;
  margin-top: 20px;
}

/* ============================================
   SERVICE AREA
   ============================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.area-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.area-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card svg {
  width: 40px;
  height: 40px;
  fill: var(--primary);
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   BUSINESS SUMMARY (AI Readable)
   ============================================ */
.business-summary {
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thankyou-section h1 {
  margin-bottom: 16px;
}

.thankyou-section p {
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-content {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-snippet {
    grid-template-columns: 1fr;
  }

  .about-snippet-img img {
    height: 300px;
  }

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

  .gallery-grid img {
    height: 180px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .benefits-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .service-img-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 25px;
  }

  .trust-badges {
    gap: 20px;
  }

  .trust-badge {
    flex: 0 1 140px;
  }

  .cta-banner {
    padding: 40px 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
