/* ============================================
   DOUBLE GLAZING UNITS — Main Stylesheet
   Design cloned from clearviewsg.co.uk
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #009ac9;
  --primary-hover: #0056b3;
  --primary-light: #00b4d8;
  --dark-text: #333333;
  --heading-text: #171c24;
  --light-bg: #f6f6f6;
  --light-bg-alt: #f8f9fa;
  --white: #ffffff;
  --footer-bg: #1a1a1a;
  --footer-bottom: #111111;
  --green: #28a745;
  --green-alt: #20c997;
  --gradient: linear-gradient(135deg, #009ac9, #00b4d8);
  --border-light: #e0e0e0;
  --border-dark: #444444;
  --overlay: rgba(0,0,0,0.6);
  --caption: #666666;
  --font-body: 'Open Sans', Arial, sans-serif;
  --font-heading: 'Mulish', Arial, sans-serif;
  --radius-btn: 4px;
  --radius-card: 8px;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 8px 30px rgba(0,0,0,0.15);
  --shadow-header: 0 2px 10px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --container: 1200px;
  --section-pad: 4em 0;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
  color: #626262;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-hover); }
ul, ol { list-style: none; }

/* --- Skip Navigation --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 var(--radius-card) 0;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-text);
  font-weight: 300;
}
h1 {
  font-size: 50px;
  line-height: 1.16;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
h2 {
  font-size: 36px;
  line-height: 1.14;
  margin-bottom: 10px;
}
h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 8px;
}
h4 { font-size: 24px; line-height: 1.2; margin-bottom: 10px; }
h5 { font-size: 18px; line-height: 1.3; margin-bottom: 7px; }
h6 { font-size: 16px; line-height: 1.3; margin-bottom: 4px; }
p { margin: 0 0 20px 0; color: #616161; font-size: 14px; line-height: 1.8; }
.text-caption {
  font-size: 13px;
  font-weight: 400;
  color: var(--caption);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.5em 1.3em;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.3px;
}
.btn:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
.btn-primary {
  background: #008B5A;
  color: var(--white);
  border-color: #008B5A;
}
.btn-primary:hover {
  background: #009AC9;
  border-color: #009AC9;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.main-header .btn-primary,
.mobile-nav .btn-primary {
  background: #C9076A;
  border-color: #C9076A;
}
.main-header .btn-primary:hover,
.mobile-nav .btn-primary:hover {
  background: #a80558;
  border-color: #a80558;
}
.btn-secondary {
  background: transparent;
  color: #008B5A;
  border: 1px solid #008B5A;
}
.btn-secondary:hover {
  background: #009AC9;
  color: var(--white);
  border-color: #009AC9;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-ghost:hover {
  background: var(--white);
  color: #008B5A;
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: #008B5A;
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--light-bg);
  color: #008B5A;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}



/* --- Top Utility Bar --- */
.utility-bar {
  background: #23C5F5;
  color: #111111;
  font-size: 13px;
  padding: 8px 0;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.utility-right {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #111111;
  font-weight: 600;
}
.utility-bar a {
  color: #111111;
  font-size: 13px;
  font-weight: 600;
}
.utility-bar a:hover { color: #000000; }
.utility-bar svg, .utility-bar i {
  margin-right: 6px;
  vertical-align: middle;
  color: #111111;
}

/* --- Main Header / Nav --- */
.main-header {
  background: #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: none;
}
.main-header.scrolled {
  box-shadow: var(--shadow-header);
  border-bottom-color: transparent;
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--heading-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--primary); }
.logo img {
  height: 60px;
  width: auto;
  padding: 10px 0;
}
.footer .footer-col:first-child img {
  height: auto;
  width: 312px;
}

/* --- Desktop Nav --- */
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.main-nav a:hover {
  color: var(--primary-light);
}
.main-nav .btn {
  font-size: 13px;
  padding: 0.45em 1em;
  margin-left: 8px;
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #ffffff;
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Mobile Nav Panel --- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
}
.mobile-nav-overlay.active { display: block; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .btn {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
}
.mobile-nav-contact {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  font-size: 14px;
}
.mobile-nav-contact a {
  border-bottom: none;
  padding: 8px 0;
  font-size: 14px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: #1a1a2e url('/Untitled%20design%20(72).png') center bottom/cover no-repeat;
  overflow: hidden;
  padding: 50px 0 40px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #009ac9, #00b67a);
  z-index: 3;
}
.hero > .container {
  width: 100%;
}
.hero-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Hero left column */
.hero-text {
  flex: 1;
  color: var(--white);
  padding-top: 6px;
}
.hero-badge {
  display: inline-block;
  background: rgba(0,154,201,0.12);
  border: 1px solid rgba(0,154,201,0.35);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-text h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.h1-accent {
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}
.hero-text > p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 520px;
}

/* Hero USP strip */
.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 28px;
}
.hero-usp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
}
.hero-usp svg {
  color: #00b67a;
  flex-shrink: 0;
}

/* Hero phone CTA */
.hero-contact-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #111111;
  border: 1px solid #ffffff;
  border-radius: 6px;
}
.hero-phone-cta svg {
  color: #009ac9;
  flex-shrink: 0;
}
.hero-phone-cta .cta-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 2px;
}
.hero-phone-cta .cta-number {
  font-size: 24px;
  font-weight: 800;
  color: #009ac9;
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
  line-height: 1;
}
.hero-phone-cta .cta-number:hover {
  color: #7dd3fc;
}
.hero-email-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #111111;
  border: 1px solid #ffffff;
  border-radius: 6px;
}
.hero-email-cta svg {
  color: #009ac9;
  flex-shrink: 0;
}
.hero-email-cta .cta-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 2px;
}
.hero-email-cta .cta-email {
  font-size: 16px;
  font-weight: 800;
  color: #009ac9;
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
  line-height: 1;
}
.hero-email-cta .cta-email:hover {
  color: #7dd3fc;
}

/* Hero glass type pills */
.hero-glass-types {
  margin-bottom: 28px;
}
.hero-glass-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #111111;
  background: #009ac9;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all .15s;
  white-space: nowrap;
}
.hero-pill:hover {
  background: #007ba3;
  color: #000;
}
.pill-check {
  flex-shrink: 0;
}

/* Hero form (right column) */
.hero-form-wrapper {
  flex: 0 0 370px;
  position: relative;
}
.form-warranty-badge {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  z-index: 10;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  pointer-events: none;
  transform: rotate(12deg);
}
.hero-form {
  background: #111111;
  border-radius: 8px;
  padding: 0;
  border: 1px solid #ffffff;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  overflow: hidden;
}
.hero-form-header {
  background: #111111;
  padding: 16px 24px;
}
.hero-form-header h3,
.hero-form-header h2.h3 {
  color: #009ac9;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}
.hero-form-header p {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  margin-bottom: 0;
}
.hero-form form {
  padding: 20px 24px 16px;
}
.hero-form .form-group {
  margin-bottom: 10px;
}
.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fafafa;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--dark-text);
  transition: var(--transition);
}
.hero-form textarea {
  resize: vertical;
  min-height: 60px;
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,154,201,0.12);
}
.hero-form .hero-submit-btn {
  width: 100%;
  padding: 0.6em 1.2em;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
  background: #111111;
  border: 2px solid #C9076A;
  color: #C9076A;
}
.hero-form .hero-submit-btn:hover {
  background: #C9076A;
  border-color: #C9076A;
  color: #fff;
}
.hero-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 24px 14px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-heading);
}
.hero-form-trust svg {
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

/* --- Page Hero (inner pages) — slim, clean, white --- */
.page-hero {
  background: var(--white);
  padding: 36px 0 28px;
  text-align: left;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}
.page-hero .breadcrumbs-inline {
  font-size: 13px;
  color: var(--caption);
  margin-bottom: 10px;
}
.page-hero .breadcrumbs-inline a {
  color: var(--primary);
  font-weight: 500;
}
.page-hero .breadcrumbs-inline span {
  margin: 0 6px;
  color: #ccc;
}
.page-hero h1 {
  color: var(--heading-text);
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
}
.page-hero p {
  color: var(--caption);
  font-size: 15px;
  max-width: 680px;
  margin: 0;
  line-height: 1.6;
}
.page-hero p.meta {
  font-size: 13px;
  color: var(--caption);
  margin-top: 6px;
}

/* --- Hero Compact (blog/inner page heroes) --- */
.hero.hero-compact {
  min-height: auto;
  padding: 36px 0 28px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.hero.hero-compact::before { display: none; }
.hero.hero-compact::after {
  height: 3px;
  bottom: -1px;
}
.hero.hero-compact .hero-content {
  display: block;
}
.hero.hero-compact .hero-text {
  flex: initial;
  max-width: 800px;
  color: var(--heading-text);
  padding-top: 0;
}
.hero.hero-compact .hero-text h1 {
  color: var(--heading-text);
  font-size: 30px;
  font-weight: 600;
}
.hero.hero-compact .hero-text > p,
.hero.hero-compact .meta {
  color: var(--caption);
}
.hero.hero-compact .breadcrumb ol li {
  color: var(--caption);
}
.hero.hero-compact .breadcrumb ol li + li::before {
  color: #ccc;
}
.hero.hero-compact .breadcrumb ol li a {
  color: var(--primary);
}
.hero.hero-compact .breadcrumb ol li a:hover {
  color: var(--primary-hover);
}
.hero.hero-compact .breadcrumb ol li[aria-current] {
  color: var(--caption);
}
.page-hero.hero-compact {
  padding: 36px 0 28px;
}

/* --- Breadcrumbs (standalone bar — hidden if inline used) --- */
.breadcrumbs {
  padding: 14px 0;
  font-size: 13px;
  color: var(--caption);
  background: var(--light-bg);
  border-bottom: 1px solid var(--border-light);
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { margin: 0 6px; color: var(--border-light); }

/* --- Breadcrumb (inline nav in hero) --- */
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
}
.breadcrumb ol li {
  list-style: none;
  color: rgba(255,255,255,0.7);
}
.breadcrumb ol li + li::before {
  content: '›';
  margin: 0 8px;
  color: rgba(255,255,255,0.5);
}
.breadcrumb ol li a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.breadcrumb ol li a:hover {
  color: var(--white);
  text-decoration: underline;
}
.breadcrumb ol li[aria-current] {
  color: rgba(255,255,255,0.6);
}

/* --- Content Narrow (blog article body) --- */
.content-narrow {
  max-width: 740px;
  margin: 0 auto;
}
.content-narrow > picture {
  display: none;
}
.content-narrow > picture img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Blog Article Layout with Sidebar --- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3em;
  align-items: start;
}
.article-main {
  min-width: 0;
}
.article-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--light-bg);
  border-radius: var(--radius-card);
  padding: 1.5em;
  margin-bottom: 1.5em;
  border: 1px solid var(--border-light);
}
.sidebar-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.sidebar-card ul {
  padding: 0;
}
.sidebar-card li {
  list-style: none;
  margin-bottom: 8px;
}
.sidebar-card li a {
  font-size: 14px;
  color: var(--dark-text);
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.sidebar-card li a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.sidebar-card li:last-child a {
  border-bottom: none;
}
.sidebar-cta {
  background: var(--heading-text);
  color: var(--white);
  border: none;
  text-align: center;
}
.sidebar-cta h4 {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.2);
}
.sidebar-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.sidebar-cta .btn {
  width: 100%;
  margin-top: 8px;
}

/* --- Callout / Highlight Boxes --- */
.callout-box {
  padding: 1.2em 1.5em;
  border-radius: 6px;
  margin: 1.5em 0;
  font-size: 14px;
  line-height: 1.7;
  border-left: 4px solid var(--primary);
  background: rgba(0,154,201,0.06);
}
.callout-box p { margin-bottom: 0; color: var(--dark-text); }
.callout-box.callout-tip { border-left-color: var(--green); background: rgba(40,167,69,0.06); }
.callout-box.callout-warn { border-left-color: #e67e22; background: rgba(230,126,34,0.06); }

/* --- Key Info Summary --- */
.key-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1em;
  margin: 1.5em 0 2em;
}
.key-info-item {
  text-align: center;
  padding: 1.2em 1em;
  background: var(--light-bg);
  border-radius: 6px;
  border: 1px solid var(--border-light);
}
.key-info-item .key-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.key-info-item .key-label {
  font-size: 13px;
  color: var(--caption);
  font-weight: 500;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--caption);
  padding-bottom: 1.5em;
  margin-bottom: 2em;
  border-bottom: 1px solid var(--border-light);
}
.article-meta time {
  font-weight: 500;
}

/* --- CTA Box (inline blog/page CTA) --- */
.cta-box {
  margin-top: 3em;
  padding: 2.5em;
  background: var(--light-bg);
  border-radius: var(--radius-card);
  text-align: center;
  border: 1px solid var(--border-light);
}
.cta-box h2 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: clamp(20px, 3vw, 26px);
}
.cta-box p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--dark-text);
  font-size: 15px;
}
.cta-box .btn {
  margin-top: 12px;
}

/* --- Section Defaults --- */
.section { padding: var(--section-pad); }
.section-light { background: var(--light-bg); }
.section-areas {
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('/Screenshot_12-4-2026_23911_www.google.com.jpeg') center center/cover no-repeat;
  color: var(--white);
}
.section-areas .section-title h2 {
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}
.section-areas .section-title p {
  display: block;
  background: var(--white);
  color: #23C5F5;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.section-white { background: var(--white); }
.section-title {
  text-align: center;
  margin-bottom: 2em;
}
.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  font-weight: 600;
  font-size: 33px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}
.section-title p {
  max-width: 960px;
  margin: 0.8em auto 0;
  color: var(--caption);
  font-size: 16px;
  line-height: 1.7;
}

/* --- USP Banner --- */
.usp-banner {
  background: #4a4a4a;
  padding: 10px 0;
  border-bottom: none;
}
.usp-banner-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.usp-banner-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.usp-banner-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: #009ac9;
}
.usp-banner-icon svg {
  width: 100%;
  height: 100%;
}
.usp-banner-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.usp-banner-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.35;
}
.usp-banner-text strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.3;
}
.usp-banner-text span {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  line-height: 1.3;
}

/* --- Trust Bar / Counter Section --- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  flex: 0 1 auto;
  min-width: 140px;
  position: relative;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border-light);
}
.trust-item .count {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1.1;
}
.trust-item .label {
  font-size: 14px;
  color: var(--caption);
  margin-top: 6px;
  font-weight: 500;
}
.trust-item .star { color: #f5a623; }

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}

.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-image img {
  transform: scale(1.05);
}
.card-image-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,154,201,0.9);
  color: var(--white);
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
}
.card-body {
  padding: 1.5em;
}
.card-body h3 { margin-bottom: 0.5em; }
.card-body p { color: var(--dark-text); font-size: 14px; }
.card-body .btn { margin-top: 12px; font-size: 13px; padding: 0.45em 1em; }

/* --- Process Flow Steps --- */
.flow-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.flow-step {
  flex: 1;
  background: #ffffff;
  border: 1px solid #009ac9;
  border-radius: 10px;
  padding: 24px 18px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.flow-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,154,201,0.12);
}
.flow-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #009ac9;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.flow-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 6px;
}
.flow-step p {
  font-size: 13px;
  color: var(--caption);
  line-height: 1.55;
  margin: 0;
}
.flow-arrow {
  display: flex;
  align-items: center;
  font-size: 28px;
  color: #009ac9;
  padding: 0 6px;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Process Timeline (legacy) --- */
.process-timeline {
  position: relative;
  padding-left: 40px;
  max-width: 820px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
}
.timeline-step:last-child {
  margin-bottom: 0;
}
.timeline-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-left: -40px;
  box-shadow: 0 0 0 4px var(--white), 0 2px 8px rgba(0,0,0,0.1);
}
.step-content {
  background: var(--light-bg);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  flex: 1;
  border-left: 3px solid var(--primary);
  transition: var(--transition);
}
.step-content:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateX(4px);
}
.step-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 8px;
}
.step-content p {
  font-size: 15px;
  color: var(--caption);
  line-height: 1.7;
  margin: 0;
}
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}
.process-step {
  flex: 1 1 200px;
  max-width: 260px;
  text-align: center;
  background: var(--primary);
  border-radius: var(--radius-card);
  padding: 2.5em 2em;
  position: relative;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--primary);
  transition: var(--transition);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-hover);
}
.process-steps .step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}
.process-step h4 { color: #ffffff; font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.85); margin: 0; line-height: 1.6; }

/* --- Alternating Content Sections --- */
.content-row {
  display: flex;
  align-items: flex-start;
  gap: 3em;
  margin-bottom: 0;
}
.content-row:nth-child(even) { flex-direction: row-reverse; }
.content-row .text-col { flex: 1; }
.content-row .image-col {
  flex: 0 0 42%;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.content-row .image-col img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-card);
}

/* --- Feature highlight cards (inline within content) --- */
.feature-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1em;
  margin: 1.5em 0;
}
.feature-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--light-bg);
  border-radius: 6px;
  border-left: 3px solid var(--primary);
}
.feature-highlight svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.feature-highlight span {
  font-size: 13px;
  font-weight: 500;
  color: var(--heading-text);
  line-height: 1.4;
}

/* --- Intro strip (page intro after hero) --- */
.page-intro {
  padding: 2em 0;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border-light);
}
.page-intro p {
  max-width: 800px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-text);
  margin: 0;
}

/* --- Section divider accent --- */
.section-accent {
  position: relative;
}
.section-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

/* --- Tables --- */
.table-responsive { overflow-x: auto; margin: 1.5em 0; border-radius: var(--radius-card); border: 1px solid var(--border-light); }
table {
  width: 100%;
  border-collapse: collapse;
}
table th {
  background: var(--heading-text);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: none;
}
table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
  color: var(--dark-text);
  font-size: 14px;
}
table tr:last-child td { border-bottom: none; }
table tr:nth-child(even) td { background: var(--light-bg); }
table tr:hover td { background: rgba(0,154,201,0.04); }

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--primary);
}
.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,154,201,0.1);
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 48px 18px 20px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-text);
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question:focus {
  outline: 3px solid var(--primary);
  outline-offset: -3px;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--primary);
  transition: var(--transition);
}
.faq-item.active .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 20px 18px;
  color: var(--dark-text);
  font-size: 14px;
  line-height: 1.7;
}

/* --- Reviews --- */
.reviews-section {
  padding: 28px 0;
  background: var(--light-bg);
  overflow: hidden;
}
.reviews-header {
  text-align: center;
  margin-bottom: 24px;
  padding: 0 20px;
}
.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-label {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -.01em;
}
.star-row {
  display: inline-flex;
  gap: 2px;
}
.star-row--lg .star-box {
  width: 24px;
  height: 24px;
}
.star-box {
  width: 18px;
  height: 18px;
  background: #00b67a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
}
.star-box svg {
  width: 11px;
  height: 11px;
  fill: #fff;
}
.star-row--lg .star-box svg {
  width: 14px;
  height: 14px;
}
.star-box--empty {
  background: #dcdce6;
}
.reviews-count {
  font-size: 13px;
  color: #737373;
}
.reviews-carousel-wrap {
  position: relative;
  width: calc(100vw - 200px);
  margin-left: calc(-50vw + 50% + 100px);
  padding: 0 28px;
}
.reviews-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 12px;
  cursor: grab;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.review-card {
  flex: 0 0 228px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  user-select: none;
  transition: box-shadow .15s;
}
.review-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.review-title {
  font-weight: 700;
  font-size: 12px;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.35;
}
.review-body {
  font-size: 12px;
  color: #4a4a4a;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-footer {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-top: 8px;
  border-top: none;
  margin-top: auto;
}
.review-author {
  font-weight: 700;
  font-size: 11px;
  color: #1a1a1a;
}
.review-date {
  font-size: 11px;
  color: #999;
}
.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
  font-size: 20px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .15s;
  padding: 0;
}
.reviews-arrow:hover {
  background: #f5f5f5;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.reviews-arrow--left { left: -4px; }
.reviews-arrow--right { right: -4px; }

/* --- CTA Banner --- */
.cta-banner {
  background: #23C5F5;
  padding: 70px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}
.cta-banner h2 { color: var(--white); margin-bottom: 20px; font-size: clamp(24px, 4vw, 36px); }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Blog Cards --- */
.blog-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.blog-card {
  border-radius: 0;
  border: none;
  box-shadow: none;
  border-bottom: 1px solid var(--border-light);
  padding: 2em 0;
  background: transparent;
}
.blog-card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border-light);
}
.blog-card .card-body {
  padding: 0;
}
.blog-card .card-body .meta {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.blog-card .card-body h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card .card-body h2 a {
  color: var(--heading-text);
  text-decoration: none;
}
.blog-card .card-body h2 a:hover {
  color: var(--primary);
}
.blog-card .card-body > p {
  font-size: 14px;
  line-height: 1.7;
  color: #626262;
  margin-bottom: 14px;
}
.blog-card .card-body .read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.blog-card .card-body .read-more:hover {
  text-decoration: underline;
}
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 2em 0 0;
  margin-top: 1em;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border-light);
  color: var(--dark-text);
  background: var(--white);
  transition: var(--transition);
}
.blog-pagination a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.blog-pagination .current {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* --- Blog Post Layout --- */
.blog-post-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 2em 0;
}
.blog-post-content h2 { margin-top: 2.5em; margin-bottom: 0.6em; color: var(--heading-text); font-size: 24px; font-weight: 600; padding-bottom: 0.4em; border-bottom: 1px solid var(--border-light); }
.blog-post-content h3 { margin-top: 1.8em; margin-bottom: 0.5em; font-size: 20px; }
.blog-post-content p { line-height: 1.8; margin-bottom: 1.4em; color: #444; }
.blog-post-content ul, .blog-post-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}
.blog-post-content li {
  margin-bottom: 0.6em;
  line-height: 1.7;
  list-style: disc;
  color: #444;
}
.blog-post-content ol li { list-style: decimal; }

/* Blog article content (content-narrow inside article) */
.section-white .content-narrow h2 { margin-top: 2.5em; margin-bottom: 0.6em; color: var(--heading-text); font-size: 24px; font-weight: 600; padding-bottom: 0.4em; border-bottom: 1px solid var(--border-light); }
.section-white .content-narrow h3 { margin-top: 1.8em; margin-bottom: 0.5em; font-size: 20px; }
.section-white .content-narrow p { line-height: 1.8; margin-bottom: 1.4em; color: #444; }
.section-white .content-narrow ul,
.section-white .content-narrow ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}
.section-white .content-narrow li {
  margin-bottom: 0.6em;
  line-height: 1.7;
  list-style: disc;
  color: #444;
}
.section-white .content-narrow ol li { list-style: decimal; }

.blog-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  color: var(--caption);
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--border-light);
}
.reading-time {
  background: var(--light-bg);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
}

/* Blog meta within hero */
.hero .meta {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

/* --- Contact Form --- */
.contact-grid {
  display: flex;
  gap: 3em;
}
.contact-form-col { flex: 1.2; }
.contact-info-col { flex: 0.8; }
.form-group { margin-bottom: 14px; }
.form-row-inline,
.form-row-2col {
  display: flex;
  gap: 16px;
}
.form-row-inline .form-group,
.form-row-2col .form-group {
  flex: 1;
  min-width: 0;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--heading-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--dark-text);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-color: var(--primary);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group .error-msg {
  color: #dc3545;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #dc3545;
}
.form-group.has-error .error-msg { display: block; }
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.form-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.form-consent label { font-size: 13px; color: var(--caption); cursor: pointer; }
.form-group-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.form-group-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.form-group-checkbox label { font-size: 13px; color: var(--caption); cursor: pointer; font-weight: 400; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* Contact info */
.contact-details { margin-bottom: 2em; }
.contact-details .detail-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-details .detail-icon {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-details .detail-text h4 { font-size: 15px; margin-bottom: 2px; }
.contact-details .detail-text a,
.contact-details .detail-text p { font-size: 14px; margin: 0; }

/* Contact details card (sidebar on contact page) */
.contact-details-card {
  background: var(--light-bg);
  border-radius: var(--radius-card);
  padding: 2em;
  border: 1px solid var(--border-light);
  margin-bottom: 1.5em;
}
.contact-details-card h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1.2em;
  padding-bottom: 0.8em;
  border-bottom: 2px solid var(--primary);
}
.contact-details-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-text);
}
.contact-details-card p {
  font-size: 14px;
  margin-bottom: 1.2em;
}
.contact-details-card p:last-child {
  margin-bottom: 0;
}

.map-embed {
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 300px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* --- Gallery --- */
.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 2em;
  flex-wrap: wrap;
}
.gallery-filters button {
  padding: 8px 20px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-btn);
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark-text);
}
.gallery-filters button:hover,
.gallery-filters button.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
}
.gallery-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--overlay);
  color: var(--white);
  padding: 12px;
  font-size: 13px;
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 5000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
}

/* --- Area Cards --- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5em;
}
.area-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  padding: 2em;
  text-align: center;
  transition: var(--transition);
}
.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary);
}
.area-card h3 { font-size: 18px; margin-bottom: 8px; font-weight: 800; }
.area-card p { font-size: 14px; color: var(--caption); margin-bottom: 12px; }
.area-card .btn { font-size: 13px; padding: 0.4em 0.9em; }

/* --- Footer --- */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--primary-light); }
.footer-accreditations {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-accreditations img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.footer-bottom {
  background: var(--footer-bottom);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--primary-light); }
.footer-bottom-inner {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-payment {
  margin-top: 12px;
  text-align: center;
}
.footer-payment img {
  max-width: 320px;
  width: 100%;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.footer-payment img:hover {
  opacity: 1;
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-bounce {
  animation: whatsappBounce 2s ease 1s 3;
}

/* --- Sticky Mobile CTA --- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 12px 20px;
  z-index: 2500;
  text-align: center;
}
.mobile-cta-bar a {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  display: block;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--primary-hover); transform: translateY(-2px); }

/* --- Cookie Consent --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 6000;
  display: none;
}
.cookie-banner.active { display: block; }
.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p { flex: 1; font-size: 14px; margin: 0; min-width: 280px; }
.cookie-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-buttons .btn { font-size: 13px; padding: 0.45em 1em; }

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes whatsappBounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-6px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(-3px); }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* --- Trade Form --- */
.trade-form { max-width: 700px; margin: 0 auto; }

/* --- Thank You Page --- */
.thank-you-content {
  text-align: center;
  padding: 4em 0;
  max-width: 600px;
  margin: 0 auto;
}
.thank-you-content .checkmark {
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
  font-size: 36px;
}
.useful-links {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2em;
}

/* --- 404 Page --- */
.error-page {
  text-align: center;
  padding: 6em 0;
}
.error-page h1 {
  font-size: clamp(48px, 8vw, 96px);
  color: var(--primary);
  margin-bottom: 16px;
}
.error-page .search-bar {
  max-width: 400px;
  margin: 2em auto;
  display: flex;
  gap: 0;
}
.error-page .search-bar input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-btn) 0 0 var(--radius-btn);
  font-size: 15px;
  border-right: none;
}
.error-page .search-bar button {
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
  cursor: pointer;
  font-weight: 600;
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em 0;
}
.legal-content h2 { margin-top: 2em; }
.legal-content p, .legal-content li { line-height: 1.8; font-size: 14px; }
.legal-content ul { padding-left: 1.5em; margin-bottom: 1em; }
.legal-content li { list-style: disc; margin-bottom: 0.5em; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large tablets / small laptops */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { gap: 24px; }
  .hero-form-wrapper { flex: 0 0 320px; }
  .content-row { gap: 2em; }
}

/* Tablets */
@media (max-width: 768px) {
  .utility-bar { display: none; }
  .hamburger { display: block; }
  .main-nav { display: none; }

  .hero { min-height: auto; padding: 40px 0; }
  .hero-content { flex-direction: column; align-items: center; text-align: center; }
  .hero-text { flex: initial; align-items: center; display: flex; flex-direction: column; }
  .hero-text > p { text-align: center; }
  .hero-badge { align-self: center; }
  .hero-glass-pills { justify-content: center; }
  .hero-usps { justify-content: center; }
  .hero-contact-row { justify-content: center; }
  .hero-form-wrapper { flex: initial; width: 100%; max-width: 400px; }
  .hero-pill { padding: 5px 10px; font-size: 11px; }
  .hero-phone-cta { width: 100%; justify-content: center; }
  .hero-phone-cta .cta-number { font-size: 17px; }
  .hero-email-cta { width: 100%; justify-content: center; }
  .hero-email-cta .cta-email { font-size: 13px; }

  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .trust-grid { gap: 24px; }
  .trust-item { min-width: 120px; }
  .trust-item + .trust-item::before { display: none; }

  .content-row,
  .content-row:nth-child(even) {
    flex-direction: column;
  }
  .content-row .image-col { flex: initial; width: 100%; }
  .content-row .image-col img { height: auto; }

  .contact-grid { flex-direction: column; }
  .form-row-inline,
  .form-row-2col { flex-direction: column; gap: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-arrow { display: none; }
  .reviews-carousel-wrap { padding: 0; }
  .review-card { flex: 0 0 210px; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-accreditations { justify-content: center; }
  .footer-social { justify-content: center; }

  .mobile-cta-bar { display: block; }
  .whatsapp-float { bottom: 70px; }
  .back-to-top { bottom: 130px; }
  body { padding-bottom: 60px; }
}

/* Mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 2.5em 0; }

  .card-grid { grid-template-columns: 1fr; }
  .review-card { flex: 0 0 200px; min-width: 0; padding: 14px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }

  .process-timeline { padding-left: 32px; }
  .process-timeline::before { left: 15px; }
  .timeline-step .step-number { margin-left: -32px; width: 32px; height: 32px; font-size: 14px; }
  .step-content { padding: 16px 18px; }
  .step-content h4 { font-size: 16px; }
  .step-content p { font-size: 14px; }

  .flow-steps { flex-direction: column; gap: 12px; max-width: 400px; margin: 0 auto; }
  .flow-arrow { transform: rotate(90deg); justify-content: center; padding: 0; font-size: 22px; }

  .process-steps { gap: 1em; }
  .process-step { max-width: 100%; }

  .cta-banner { padding: 40px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }

  .page-hero { padding: 28px 0 20px; }
  .page-hero h1 { font-size: clamp(22px, 6vw, 28px); }

  .hero.hero-compact { padding: 28px 0 20px; }
  .content-narrow { padding: 0 4px; }
  .cta-box { padding: 1.5em; }

  .hero-form form { padding: 16px 20px 14px; }
  .hero-form-header { padding: 14px 20px; }
  .hero-usps { gap: 6px 14px; }
  .hero-pill { padding: 5px 10px; font-size: 10.5px; }
  .table-responsive { font-size: 13px; }

  .usp-banner { display: none; }

  .footer-bottom-inner { flex-direction: column; gap: 8px; }
}
