/* ============================================
   Meridian Outdoor Lighting — Global Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --mol-primary: #EA730B;
  --mol-ink: #0b1b33;
  --mol-text: #4b5563;
  --mol-bg: #faf8f6;
  --mol-border: rgba(16, 24, 40, 0.12);
  --mol-glow: rgba(234, 115, 11, 0.22);
  --cta-yellow: #FEC620;
  --cta-yellow-hover: #FEC10B;
  --contrast: #222222;
  --contrast-2: #575760;
  --contrast-3: #b2b2be;
  --base: #f0f0f0;
  --base-2: #f7f8f9;
  --base-3: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #111;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  margin-bottom: 0;
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3em;
  color: var(--mol-ink);
}

h1 { font-size: 42px; }
h2 { font-size: 34px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 22px; }

p {
  margin-bottom: 16px;
  line-height: 1.6;
}

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

/* ---------- Header ---------- */
.site-header {
  background-color: var(--mol-ink);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 200ms linear;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 70px;
  transition: min-height 200ms linear;
}

.site-header.scrolled .header-inner {
  min-height: 60px;
}

.header-logo a {
  display: block;
}

.header-logo img {
  width: 240px;
  transition: width 300ms linear;
}

.site-header.scrolled .header-logo img {
  width: 200px;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li > a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.25s;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: var(--mol-primary);
}

/* Dropdown arrow */
.main-nav > ul > li.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--mol-ink);
  border-top: 2px solid var(--mol-primary);
  padding: 8px 0;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.has-dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
  background: rgba(234, 115, 11, 0.15);
  color: var(--mol-primary);
}

/* Nested dropdown */
.dropdown-menu li.has-dropdown {
  position: relative;
}

.dropdown-menu li.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-left: 8px;
  float: right;
  margin-top: 6px;
}

.dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
}

/* Header CTA */
.header-cta a {
  background: var(--cta-yellow);
  font-size: 15px;
  border-radius: 10px;
  padding: 14px 22px;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s;
  white-space: nowrap;
}

.header-cta a:hover {
  background: var(--cta-yellow-hover);
  color: #111;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-clean {
  font-family: 'Open Sans', sans-serif;
  padding: 160px 20px 120px;
  background: transparent;
}

.hero-container {
  max-width: 1050px;
  margin: auto;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
}

.hero-line {
  width: 60px;
  height: 2px;
  background: var(--mol-primary);
}

.hero-title {
  font-size: 56px;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 22px;
  line-height: 1.4;
}

.hero-text {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  max-width: 720px;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero - Two Column Layout (service/location pages) */
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 20px 100px;
  position: relative;
  z-index: 2;
}

.hero-two-col .hero-left h3 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 700;
}

.hero-two-col .hero-left h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-two-col .hero-left .divider {
  width: 60px;
  height: 3px;
  background: var(--mol-primary);
  margin-bottom: 20px;
}

.hero-two-col .hero-left p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.hero-two-col .hero-right p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Bounce arrow */
.hero-arrow {
  text-align: center;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.hero-arrow a {
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  animation: bounce 2s infinite;
  display: inline-block;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--mol-primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(234, 115, 11, 0.4);
  color: #fff;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  background: transparent;
  transition: 0.25s;
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.reg-btn a,
a.reg-btn {
  background: var(--mol-primary);
  color: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s;
  display: inline-block;
}

.reg-btn a:hover,
a.reg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(234, 115, 11, 0.3);
  color: #fff;
}

/* ---------- Section Layouts ---------- */
.section {
  padding: 80px 20px;
}

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

.section-white {
  background: #fff;
}

.section-dark {
  background: var(--mol-ink);
  color: #fff;
}

.section-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.section-head h2 {
  margin-bottom: 16px;
}

.section-head p {
  color: var(--mol-text);
  font-size: 16px;
  line-height: 1.8;
}

.section-divider {
  width: 64px;
  height: 3px;
  background: var(--mol-primary);
  margin: 18px auto 0;
  border-radius: 999px;
  box-shadow: 12px 0 0 rgba(234, 115, 11, 0.18);
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

/* Image Grid (About section) */
.image-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-grid-2x2 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

/* ---------- About Section (Homepage) ---------- */
.about-section {
  padding: 80px 20px;
  background: #fff;
}

.about-section .two-col {
  align-items: start;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-text-columns p {
  color: var(--mol-text);
  font-size: 15px;
  line-height: 1.75;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: var(--mol-border);
  margin: 20px 0;
}

/* ---------- Values/Principles Section ---------- */
.values-section {
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.values-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.values-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.values-text {
  color: #fff;
}

.values-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

/* Icon checklist */
.icon-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.icon-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.icon-checklist li::before {
  content: '✓';
  color: var(--mol-primary);
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-checklist.white li {
  color: #fff;
}

.icon-checklist.dark li {
  color: var(--mol-text);
}

/* ---------- Services Section ---------- */
.mol-services {
  font-family: "Open Sans", sans-serif;
  padding: 80px 20px;
  background: var(--mol-bg);
}

.mol-services-wrap {
  max-width: 1250px;
  margin: 0 auto;
}

.mol-services-head {
  text-align: center;
  max-width: 1060px;
  margin: 0 auto 34px;
}

.mol-services-title {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--mol-ink);
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.mol-services-sub {
  margin: 0 auto 18px;
  color: var(--mol-text);
  font-size: 16px;
  line-height: 1.8;
}

.mol-services-divider {
  width: 64px;
  height: 3px;
  background: var(--mol-primary);
  margin: 0 auto;
  border-radius: 999px;
  box-shadow: 12px 0 0 rgba(234, 115, 11, 0.18);
}

.mol-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* Service Card */
.mol-card {
  background: #fff;
  border: 1px solid var(--mol-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(11, 27, 51, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.mol-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 115, 11, 0.35);
  box-shadow: 0 22px 60px rgba(11, 27, 51, 0.12), 0 0 0 6px rgba(234, 115, 11, 0.06);
}

.mol-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.mol-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
  filter: saturate(1.05);
}

.mol-card:hover .mol-card-media img {
  transform: scale(1.08);
}

.mol-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}

.mol-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(234, 115, 11, 0.92);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(234, 115, 11, 0.22);
}

.mol-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.mol-card-title {
  margin: 0;
  color: var(--mol-ink);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1.25;
}

.mol-card-text {
  margin: 0;
  color: var(--mol-text);
  font-size: 14.8px;
  line-height: 1.75;
}

.mol-card-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.mol-link {
  color: var(--mol-primary);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 2px;
}

.mol-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(234, 115, 11, 0.35);
  border-radius: 999px;
  transform: scaleX(0.65);
  transform-origin: left;
  transition: transform 0.25s ease, background 0.25s ease;
}

.mol-card:hover .mol-link::after {
  transform: scaleX(1);
  background: rgba(234, 115, 11, 0.75);
}

.mol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(234, 115, 11, 1), rgba(234, 115, 11, 0.85));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(234, 115, 11, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.mol-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(234, 115, 11, 0.28);
  color: #fff;
}

/* ---------- Why Choose Us Section ---------- */
.mol-cards {
  font-family: "Open Sans", sans-serif;
  padding: 72px 20px;
  background:
    radial-gradient(1200px 400px at 15% 10%, rgba(234, 115, 11, 0.08), transparent 60%),
    radial-gradient(900px 380px at 90% 0%, rgba(11, 27, 51, 0.06), transparent 60%),
    #ffffff;
}

.mol-cards-wrap {
  max-width: 1500px;
  margin: 0 auto;
}

.mol-cards-head {
  max-width: 1500px;
  margin-bottom: 26px;
}

.mol-cards-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mol-cards-line {
  width: 46px;
  height: 2px;
  background: var(--mol-primary);
  box-shadow: 12px 0 0 rgba(234, 115, 11, 0.22);
}

.mol-cards-kicker-text {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(11, 27, 51, 0.65);
}

.mol-cards-title {
  margin: 0 0 10px;
  color: var(--mol-ink);
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: 40px;
  line-height: 1.12;
}

.mol-cards-sub {
  margin: 0;
  color: var(--mol-text);
  font-size: 16px;
  line-height: 1.7;
}

.mol-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* Card style for Why Choose section */
.mol-cards .mol-card {
  position: relative;
  border: 1px solid rgba(16, 24, 40, 0.10);
  border-radius: 18px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(11, 27, 51, 0.06);
  overflow: hidden;
}

.mol-cards .mol-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(260px 120px at 20% 0%, rgba(234, 115, 11, 0.18), transparent 60%),
    radial-gradient(260px 120px at 90% 10%, rgba(234, 115, 11, 0.10), transparent 62%);
  opacity: 0.55;
  pointer-events: none;
}

.mol-cards .mol-card::after {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(234, 115, 11, 0.10);
  filter: blur(2px);
  pointer-events: none;
}

.mol-card-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.mol-ic {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(234, 115, 11, 0.14), rgba(234, 115, 11, 0.06));
  border: 1px solid rgba(234, 115, 11, 0.22);
  color: var(--mol-primary);
  box-shadow: 0 10px 20px rgba(234, 115, 11, 0.10);
}

.mol-ic svg {
  width: 22px;
  height: 22px;
}

.mol-cards .mol-card-title {
  margin: 2px 0 0;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.mol-cards .mol-card-text {
  position: relative;
  z-index: 1;
  font-size: 14.5px;
}

/* ---------- Process/Flow Section ---------- */
.mol-flow {
  font-family: "Open Sans", sans-serif;
  padding: 85px 20px;
  background: var(--mol-bg);
}

.mol-flow-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.mol-flow-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 38px;
}

.mol-flow-title {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  color: var(--mol-ink);
  font-size: 36px;
  line-height: 1.15;
}

.mol-flow-sub {
  margin: 0 auto 18px;
  color: var(--mol-text);
  font-size: 16px;
  line-height: 1.8;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(234, 115, 11, 0.35);
}

.mol-flow-divider {
  width: 66px;
  height: 3px;
  background: var(--mol-primary);
  margin: 0 auto;
  border-radius: 999px;
  box-shadow: 12px 0 0 rgba(234, 115, 11, 0.18);
}

.mol-flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 26px;
}

.mol-flow-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 58px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(234, 115, 11, 0.18) 12%, rgba(234, 115, 11, 0.18) 88%, transparent 100%);
  z-index: 0;
}

.mol-flow-step {
  position: relative;
  z-index: 1;
}

.mol-flow-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  justify-content: flex-start;
}

.mol-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(234, 115, 11, 0.25);
  color: var(--mol-primary);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 12px;
  box-shadow: 0 12px 28px rgba(11, 27, 51, 0.06);
}

.mol-flow-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--mol-primary);
  box-shadow: 0 0 0 6px rgba(234, 115, 11, 0.12);
}

.mol-flow-card {
  background: #fff;
  border: 1px solid var(--mol-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(11, 27, 51, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-height: 150px;
  position: relative;
  overflow: hidden;
}

.mol-flow-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: rgba(234, 115, 11, 0.10);
  transform: rotate(18deg);
}

.mol-flow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 115, 11, 0.35);
  box-shadow: 0 26px 65px rgba(11, 27, 51, 0.12), 0 0 0 6px rgba(234, 115, 11, 0.05);
}

.mol-flow-h {
  margin: 0 0 10px;
  color: var(--mol-ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 16px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.mol-flow-p {
  margin: 0;
  color: var(--mol-text);
  font-size: 14.8px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.mol-flow-step:nth-child(2) .mol-flow-card { transform: translateY(6px); }
.mol-flow-step:nth-child(5) .mol-flow-card { transform: translateY(6px); }

.mol-flow-step:nth-child(2) .mol-flow-card:hover,
.mol-flow-step:nth-child(5) .mol-flow-card:hover {
  transform: translateY(0px);
}

/* ---------- Lights Turn On / Emotional CTA ---------- */
.emotional-cta {
  padding: 80px 20px;
  background: #fff;
}

.emotional-cta .two-col {
  align-items: center;
}

.emotional-cta img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.emotional-cta h2 {
  margin-bottom: 20px;
}

.emotional-cta .divider-line {
  width: 60px;
  margin-bottom: 20px;
}

.emotional-cta p {
  color: var(--mol-text);
  font-size: 16px;
  line-height: 1.75;
}

/* ---------- Customer Reviews ---------- */
.reviews-section {
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.reviews-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.reviews-text {
  color: #fff;
}

.reviews-text h2 {
  color: #fff;
  margin-bottom: 20px;
}

.reviews-text p {
  color: rgba(255, 255, 255, 0.85);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.review-stars {
  color: #FEC620;
  margin-bottom: 8px;
  font-size: 16px;
}

.review-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.review-author {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
}

/* ---------- Map Section ---------- */
.map-section {
  padding: 80px 20px;
  background: #fff;
}

.map-section .two-col {
  align-items: center;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 16px;
}

.map-section h2 {
  margin-bottom: 20px;
}

.map-section p {
  color: var(--mol-text);
  line-height: 1.75;
}

/* ---------- Contact / Quote Section ---------- */
.quote-section {
  padding: 80px 20px;
  background: var(--mol-bg);
}

.quote-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.quote-header h2 {
  margin-bottom: 16px;
}

.quote-header p {
  color: var(--mol-text);
  font-size: 16px;
}

.quote-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.quote-info h3 {
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: none;
}

.quote-info p {
  color: var(--mol-text);
  margin-bottom: 20px;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--mol-border);
}

.contact-box-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mol-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-box-icon svg {
  width: 20px;
  height: 20px;
}

.contact-box-text {
  font-size: 13px;
  color: var(--mol-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-box-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--mol-ink);
}

.contact-box-value a {
  color: var(--mol-ink);
  text-decoration: none;
}

.contact-box-value a:hover {
  color: var(--mol-primary);
}

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(11, 27, 51, 0.08);
  border: 1px solid var(--mol-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--mol-ink);
}

.form-group label .required {
  color: #cf2e2e;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--base);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--contrast);
  background: var(--base-2);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mol-primary);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--contrast-3);
}

.form-submit {
  width: 100%;
  padding: 18px 22px;
  background: var(--mol-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(234, 115, 11, 0.3);
}

/* ---------- Service Page Layout ---------- */
.service-content-section {
  padding: 60px 20px;
}

.service-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.service-two-col.img-right {
  direction: ltr;
}

.service-two-col.img-left {
  direction: rtl;
}

.service-two-col.img-left > * {
  direction: ltr;
}

.service-text h2 {
  margin-bottom: 16px;
}

.service-text h3 {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 24px;
}

.service-text p {
  color: var(--mol-text);
  line-height: 1.75;
}

.service-text ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--mol-text);
  font-size: 15px;
  line-height: 1.6;
}

.service-text ul li::before {
  content: '✓';
  color: var(--mol-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.service-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* Full-width text section (service pages) */
.service-full-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-full-section h2 {
  margin-bottom: 16px;
}

.service-full-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 24px;
}

.service-full-section p {
  color: var(--mol-text);
  line-height: 1.75;
}

.service-full-section ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-full-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--mol-text);
  line-height: 1.6;
}

.service-full-section ul li::before {
  content: '✓';
  color: var(--mol-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Gallery ---------- */
.gallery-hero::before {
  background: linear-gradient(180deg, rgba(80, 0, 0, 0.75) 0%, rgba(30, 0, 0, 0.6) 100%);
}

.gallery-section {
  background: #111;
  padding: 40px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

/* Gallery lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10000;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 20px;
  z-index: 10000;
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

/* ---------- Reviews Page ---------- */
.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.review-page-card {
  background: #fff;
  border: 1px solid var(--mol-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(11, 27, 51, 0.06);
}

.review-page-card .stars {
  color: #FEC620;
  font-size: 18px;
  margin-bottom: 12px;
}

.review-page-card .review-body {
  color: var(--mol-text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.review-page-card .reviewer {
  font-weight: 700;
  color: var(--mol-ink);
  font-size: 14px;
}

.review-page-card .review-source {
  color: var(--contrast-3);
  font-size: 13px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--mol-ink);
  color: #fff;
  padding: 60px 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--mol-primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

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

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--mol-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

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

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

/* ---------- Popup / Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--contrast);
}

.modal h3 {
  margin-bottom: 12px;
}

.modal p {
  color: var(--mol-text);
  margin-bottom: 20px;
}

/* ---------- Mobile Sticky CTA ---------- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--mol-primary);
  text-align: center;
}

.mobile-sticky-cta a {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .mol-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 38px; }

  .mol-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mol-flow-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mol-flow-track::before {
    top: 54px;
  }

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

@media (max-width: 900px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-two-col {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }

  .hero-two-col .hero-left h1 {
    font-size: 38px;
  }
}

@media (max-width: 860px) {
  .mol-cards-title { font-size: 34px; }
  .mol-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 30px; }
  h3 { font-size: 26px; }

  .header-inner {
    padding: 0 16px;
  }

  .main-nav > ul {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Mobile nav */
  .main-nav.open > ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--mol-ink);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav.open > ul > li > a {
    padding: 14px 20px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    border-top: none;
    box-shadow: none;
    padding-left: 20px;
  }

  .has-dropdown.open > .dropdown-menu {
    display: block;
  }

  .dropdown-menu .dropdown-menu {
    position: static;
    padding-left: 20px;
  }

  /* Layouts */
  .two-col,
  .service-two-col,
  .quote-content,
  .reviews-content {
    grid-template-columns: 1fr;
  }

  .two-col.reverse {
    direction: ltr;
  }

  .service-two-col.img-left {
    direction: ltr;
  }

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

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

  .reviews-page-grid {
    grid-template-columns: 1fr;
  }

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

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

  .mobile-sticky-cta {
    display: block;
  }
}

@media (max-width: 640px) {
  .mol-services-title { font-size: 30px; }
  .mol-services-grid { grid-template-columns: 1fr; }
  .mol-flow-title { font-size: 28px; }
  .mol-flow-track {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mol-flow-track::before { content: none; }
  .mol-flow-step:nth-child(2) .mol-flow-card,
  .mol-flow-step:nth-child(5) .mol-flow-card {
    transform: none;
  }
}

@media (max-width: 520px) {
  .mol-cards-title { font-size: 30px; }
  .mol-card-grid { grid-template-columns: 1fr; }
  .mol-cards .mol-card-title { font-size: 15px; }

  .hero-clean {
    padding: 90px 20px;
  }

  .hero-title {
    font-size: 34px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mol-card, .mol-card-media img, .mol-link::after, .mol-btn, .mol-flow-card {
    transition: none;
  }
  .mol-card:hover, .mol-flow-card:hover {
    transform: none;
  }
}
