/* Leeds Solar - Main Stylesheet */
/* Brand Colours: #0060a9 (Blue), #ffdf13 (Yellow), #ffffff (White) */

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

:root {
  --blue: #0060a9;
  --yellow: #ffdf13;
  --white: #ffffff;
  --dark: #1a1a2e;
  --grey: #f4f7fb;
  --text: #333333;
  --border: #e0e8f0;
  --shadow: 0 4px 24px rgba(0,96,169,0.10);
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }

a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--yellow); }

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

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

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--yellow); }
.top-bar a:hover { color: var(--white); }
.top-bar-links { display: flex; gap: 20px; align-items: center; }
.top-bar-links a { color: var(--white); font-size: 0.85rem; }

/* ===== HEADER ===== */
header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-wrap img { width: 56px; height: 56px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-tagline {
  font-size: 0.72rem;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== NAV ===== */
nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { background: rgba(255,223,19,0.15); color: var(--yellow); }
.nav-link .arrow { font-size: 0.7rem; transition: transform 0.2s; }
.nav-item:hover .arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s;
  z-index: 999;
  border-top: 3px solid var(--yellow);
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s, padding 0.15s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--grey); color: var(--blue); padding-left: 24px; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-quote {
  background: var(--yellow);
  color: var(--dark) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(255,223,19,0.35);
}
.btn-quote:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,223,19,0.5); color: var(--dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #003d6e 50%, #001f3a 100%);
  color: var(--white);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,223,19,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,223,19,0.15);
  border: 1px solid rgba(255,223,19,0.4);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--yellow); }
.hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(255,223,19,0.4);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,223,19,0.5); color: var(--dark); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }
.hero-image { border-radius: 20px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.hero-image img { width: 100%; object-fit: cover; }
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; opacity: 0.8; margin-top: 4px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--grey);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
}
.trust-icon { font-size: 1.4rem; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--grey); }
.section-blue { background: var(--blue); color: var(--white); }
.section-blue h2, .section-blue h3 { color: var(--white); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: rgba(0,96,169,0.1);
  color: var(--blue);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-blue .section-tag { background: rgba(255,223,19,0.2); color: var(--yellow); }
.section-header p { font-size: 1.1rem; color: #666; max-width: 600px; margin: 14px auto 0; }
.section-blue .section-header p { color: rgba(255,255,255,0.8); }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,96,169,0.15); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), #0080d4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(0,96,169,0.3);
}
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p { font-size: 0.92rem; color: #555; margin-bottom: 16px; }
.card-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link::after { content: '→'; transition: transform 0.2s; }
.card:hover .card-link::after { transform: translateX(4px); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
}
.service-card:hover { background: rgba(255,223,19,0.12); border-color: var(--yellow); transform: translateY(-4px); }
.service-card .icon { font-size: 2.5rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin: 0; }

/* ===== IMAGES ROW ===== */
.images-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.img-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 260px;
}
.img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.img-card:hover img { transform: scale(1.05); }
.img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  padding: 30px 16px 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== PROCESS STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; }
.step { padding: 32px 24px; position: relative; text-align: center; }
.step-num {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(255,223,19,0.4);
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: #666; margin: 0; }
.section-blue .step p { color: rgba(255,255,255,0.75); }
.section-blue .step h4 { color: var(--white); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  transition: transform 0.2s;
}
.review-card:hover { transform: translateY(-3px); }
.stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.93rem; color: #555; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), #0080d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; }
.reviewer-loc { font-size: 0.78rem; color: #888; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: background 0.2s;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  user-select: none;
}
.faq-q:hover { background: var(--grey); }
.faq-q.open { background: var(--blue); color: var(--white); }
.faq-toggle { font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  font-size: 0.95rem;
  color: #555;
  background: var(--grey);
}
.faq-a.open { max-height: 400px; padding: 18px 24px; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--blue), #003d6e);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '☀';
  position: absolute;
  font-size: 300px;
  opacity: 0.04;
  right: -50px;
  top: -60px;
  line-height: 1;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; margin: 16px 0; color: rgba(255,255,255,0.6); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 48px; height: 48px; }
.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
}
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-contact-info a:hover { color: var(--yellow); }
.footer-contact-info span { font-size: 1.1rem; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--yellow); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  color: var(--white);
}
.social-link:hover { background: var(--yellow); color: var(--dark); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--grey);
  padding: 14px 0;
  font-size: 0.85rem;
}
.breadcrumb span { color: #999; margin: 0 6px; }
.breadcrumb a { color: var(--blue); }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.breadcrumb ol li { display: flex; align-items: center; }
.breadcrumb ol li + li::before { content: "›"; margin-right: 4px; color: #999; }
/* Breadcrumb inside page-hero (white text) */
.page-hero .breadcrumb { background: transparent; padding: 0 0 12px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.8); }
.page-hero .breadcrumb li { color: #fff; }
.page-hero .breadcrumb ol li + li::before { color: rgba(255,255,255,0.6); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #003d6e 100%);
  color: var(--white);
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 650px; margin: 0 auto; }

/* ===== CONTENT SECTIONS ===== */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block img { border-radius: var(--radius); box-shadow: var(--shadow); }
.content-block ul { list-style: none; margin: 20px 0; }
.content-block ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.content-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ===== CALCULATOR ===== */
.calc-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,96,169,0.15);
  border: 2px solid var(--border);
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--blue); }
select.form-control { cursor: pointer; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--grey);
  padding: 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
}
.contact-icon { font-size: 2rem; flex-shrink: 0; }
.contact-card h4 { margin-bottom: 4px; }
.contact-card p { margin: 0; font-size: 0.92rem; color: #555; }
.contact-card a { color: var(--blue); font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 140px; }
.btn-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: block;
  width: 100%;
}
.btn-submit:hover { background: #004d87; transform: translateY(-2px); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,96,169,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
  font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== LOCATION MAP ===== */
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 400px; }
.location-map iframe { width: 100%; height: 100%; border: none; }

/* ===== CASE STUDIES ===== */
.case-study-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.case-study-header {
  background: linear-gradient(135deg, var(--blue), #003d6e);
  color: var(--white);
  padding: 30px;
}
.case-study-header h3 { color: var(--white); margin-bottom: 8px; }
.case-tag {
  background: var(--yellow);
  color: var(--dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}
.case-study-body { padding: 28px; }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 20px 0; }
.case-stat {
  text-align: center;
  background: var(--grey);
  padding: 16px;
  border-radius: 10px;
}
.case-stat-num { font-family: 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--blue); line-height: 1; }
.case-stat-label { font-size: 0.78rem; color: #666; margin-top: 4px; }

/* ===== FINANCE TABLE ===== */
.plan-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
}
.plan-card:hover, .plan-card.featured { border-color: var(--blue); transform: translateY(-8px); }
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--dark);
  padding: 4px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}
.plan-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; margin-bottom: 8px; }
.plan-rate { font-size: 2.2rem; font-weight: 900; color: var(--blue); line-height: 1; margin: 14px 0; }
.plan-rate span { font-size: 1rem; color: #999; }
.plan-features { list-style: none; text-align: left; margin: 20px 0; }
.plan-features li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; display: flex; gap: 10px; align-items: flex-start; }
.plan-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  height: 100vh;
  background: var(--dark);
  z-index: 2000;
  padding: 80px 28px 28px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s;
}
.mobile-nav.open { transform: translateX(0); display: block; }
.mobile-nav-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
.mobile-nav a:hover { color: var(--yellow); }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
}
.mobile-nav-overlay.open { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .content-block { grid-template-columns: 1fr; }
  .content-block.reverse { direction: ltr; }
  .images-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero-stats { justify-content: center; }
}
@media (max-width: 480px) {
  .trust-bar .container { gap: 16px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-yellow { color: var(--yellow); }
.text-blue { color: var(--blue); }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ===== NOTIFICATION BAR ===== */
.notif-bar {
  background: var(--yellow);
  color: var(--dark);
  text-align: center;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: 'Montserrat', sans-serif;
}
.notif-bar a { color: var(--blue); text-decoration: underline; }
