/* ===================================================================
   Yorkshire Roofs — Design System
   Colours: York City FC Red #e30017  |  Navy #0f206a
   =================================================================== */

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

/* ---------- CSS Variables ---------- */
:root {
  --red: #e30017;
  --red-dark: #b80012;
  --red-light: #ff2a3e;
  --navy: #0f206a;
  --navy-dark: #0a1548;
  --navy-light: #1a3394;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --grey-50: #f9fafb;
  --grey-100: #f3f4f6;
  --grey-200: #e5e7eb;
  --grey-300: #d1d5db;
  --grey-400: #9ca3af;
  --grey-500: #6b7280;
  --grey-600: #4b5563;
  --grey-700: #374151;
  --grey-800: #1f2937;
  --grey-900: #111827;
  --font-body: 'Manrope', sans-serif;
  --font-display: 'DM Serif Display', serif;
  --shadow-sm: 0 1px 2px rgba(15,32,106,.06);
  --shadow-md: 0 4px 12px rgba(15,32,106,.1);
  --shadow-lg: 0 10px 30px rgba(15,32,106,.15);
  --shadow-xl: 0 20px 50px rgba(15,32,106,.2);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-width: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Utility ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-red { color: var(--red); }
.text-navy { color: var(--navy); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-red { background: var(--red); color: var(--white); }
.bg-off-white { background: var(--off-white); }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 12px; }
h4 { font-size: 1.25rem; margin-bottom: 8px; }
p { margin-bottom: 16px; }
.lead { font-size: 1.125rem; color: var(--grey-600); }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.section-title { margin-bottom: 24px; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .4px;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(227,0,23,.35);
}
.btn-red:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227,0,23,.45);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15,32,106,.3);
}
.btn-navy:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,32,106,.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-red {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}
.btn svg, .btn i { width: 18px; height: 18px; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: .85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--white); }
.top-bar a:hover { color: var(--red-light); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Header / Nav ---------- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
}
.logo:hover { color: var(--navy); }
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 26px; height: 26px; color: var(--white); }
.logo span { color: var(--red); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 16px;
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav a:hover, .nav a.active {
  color: var(--red);
  background: rgba(227,0,23,.06);
}
.nav .dropdown { position: relative; }
.nav .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav .dropdown-toggle svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav .dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }
.nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
  max-height: 400px;
  overflow-y: auto;
}
.nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: .85rem;
  border-radius: 0;
}
.nav .dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--red);
}
.nav .cta-btn {
  margin-left: 8px;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.mobile-toggle:hover { background: var(--off-white); }
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  position: relative;
  transition: all var(--transition);
}
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}
.mobile-toggle span::before { top: -7px; }
.mobile-toggle span::after { top: 7px; }
.mobile-toggle.active span { background: transparent; }
.mobile-toggle.active span::before { top: 0; transform: rotate(45deg); }
.mobile-toggle.active span::after { top: 0; transform: rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  z-index: 999;
  padding: 80px 24px 40px;
  overflow-y: auto;
  transition: right var(--transition);
}
.mobile-nav.open { right: 0; }
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-overlay.open { opacity: 1; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  font-size: .95rem;
  border-bottom: 1px solid var(--grey-100);
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 12px 0;
  font-weight: 600;
  font-size: .95rem;
  border-bottom: 1px solid var(--grey-100);
}
.mobile-nav .mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding-left: 16px;
}
.mobile-nav .mobile-dropdown-content.open { max-height: 2000px; }
.mobile-nav .mobile-dropdown-content a { font-size: .85rem; font-weight: 500; }
.mobile-nav .mobile-cta {
  margin-top: 24px;
  display: block;
  text-align: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #07103a 100%);
  color: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227,0,23,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227,0,23,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--red-light); }
.hero .lead { color: rgba(255,255,255,.8); margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat { text-align: center; }
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-light);
}
.hero-stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

/* ---------- Features row ---------- */
.features-row {
  background: var(--white);
  position: relative;
  z-index: 2;
  margin-top: -40px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--grey-100);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--white); }
.feature-card h4 { font-family: var(--font-body); font-weight: 700; }
.feature-card p { font-size: .9rem; color: var(--grey-500); margin-bottom: 0; }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition);
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-img-wrap { overflow: hidden; }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 1.15rem; }
.service-card-body p { font-size: .9rem; color: var(--grey-500); margin-bottom: 16px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.service-card-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card-link:hover svg { transform: translateX(4px); }
.service-card-link:hover { color: var(--red-dark); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 28px; font-size: 1.1rem; }
.cta-banner .container { position: relative; z-index: 1; }

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-experience {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
}
.about-experience strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-light);
}
.about-list {
  margin-top: 24px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .95rem;
}
.about-list li svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  background: var(--off-white);
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-200);
  font-size: .85rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.breadcrumbs li { display: flex; align-items: center; gap: 4px; }
.breadcrumbs li::after { content: '/'; color: var(--grey-400); margin: 0 4px; }
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs a { color: var(--navy); }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs .current { color: var(--grey-500); }

/* ---------- Page Banner ---------- */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227,0,23,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-banner h1 { color: var(--white); margin-bottom: 12px; }
.page-banner .lead { color: rgba(255,255,255,.75); margin-bottom: 0; }

/* ---------- Content Sections ---------- */
.content-section { padding: 60px 0; }
.content-section h2 { margin-bottom: 16px; }
.content-section h3 { margin-bottom: 12px; margin-top: 32px; }
.content-section p { color: var(--grey-600); }
.content-section ul { margin: 16px 0; padding-left: 0; }
.content-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--grey-600);
}
.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.sidebar {
  position: sticky;
  top: 120px;
}
.sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--grey-200);
}
.sidebar-card h4 { font-family: var(--font-body); font-weight: 700; margin-bottom: 16px; font-size: 1rem; }
.sidebar-card ul { margin: 0; padding: 0; }
.sidebar-card ul li { padding-left: 0; margin-bottom: 0; }
.sidebar-card ul li::before { display: none; }
.sidebar-card ul li a {
  display: block;
  padding: 10px 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--grey-200);
  transition: all var(--transition);
}
.sidebar-card ul li a:hover { color: var(--red); padding-left: 6px; }
.sidebar-card ul li:last-child a { border-bottom: none; }
.sidebar-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,.8); font-size: .9rem; }
.sidebar-cta .phone-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--red-light);
  margin: 16px 0;
}
.sidebar-cta .phone-link:hover { color: var(--white); }

/* ---------- Areas Grid ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.area-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.area-link:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(227,0,23,.03);
  transform: translateX(4px);
}
.area-link svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
  color: var(--grey-700);
}
.form-group label .required { color: var(--red); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,32,106,.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-info-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid var(--grey-200);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--white); }
.contact-info-item h4 { font-family: var(--font-body); font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.contact-info-item p { font-size: .9rem; color: var(--grey-500); margin-bottom: 0; }
.contact-info-item a { color: var(--navy); font-weight: 600; }

/* ---------- Map ---------- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 32px;
}
.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* ---------- Town History ---------- */
.town-history {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
  border-left: 4px solid var(--red);
}
.town-history h3 { margin-top: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.footer p { font-size: .9rem; color: rgba(255,255,255,.65); }
.footer a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer a:hover { color: var(--red-light); }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.footer-links a:hover { padding-left: 4px; }
.footer-links a svg { width: 14px; height: 14px; color: var(--red); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .9rem;
}
.footer-contact li svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--red-light); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ---------- Thank You ---------- */
.thank-you-section {
  text-align: center;
  padding: 100px 0;
}
.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thank-you-icon svg { width: 40px; height: 40px; color: var(--white); }

/* ---------- Privacy / Links / Sitemap ---------- */
.link-list li {
  margin-bottom: 8px;
}
.link-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 500;
}
.link-list a:hover { color: var(--red); }

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 99;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}
.scroll-top svg { width: 22px; height: 22px; }

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-image { max-width: 500px; margin: 0 auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 500px; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-nav { display: block; }
  .mobile-overlay { display: block; }
  .top-bar-right { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .hero-stat { padding: 16px; background: rgba(255,255,255,.05); border-radius: var(--radius); }
  .section { padding: 48px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-banner { padding: 40px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .btn { padding: 12px 20px; font-size: .8rem; }
  .hero-btns { flex-direction: column; align-items: center; }
}

/* ─── Real Photo Styles ─── */
.page-banner {
    position: relative;
    overflow: hidden;
}
.page-banner-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}
.page-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.35);
}
.page-banner .container {
    position: relative;
    z-index: 1;
}
.content-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.content-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.content-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}
.content-image-row img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
@media (max-width: 600px) {
    .content-image-row {
        grid-template-columns: 1fr;
    }
    .content-image-row img {
        height: 220px;
    }
}
.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.25);
}
.hero .container,
.hero .hero-grid,
.hero .hero-stats {
    position: relative;
    z-index: 1;
}
