/* â”€â”€â”€ PMG color palette â”€â”€â”€ */
:root {
  --pmg-primary: #197067;
  --pmg-primary-rgb: 25, 112, 103;
  --pmg-btn-green: linear-gradient(to right, #116a40 0%, #188b57 100%);
  --pmg-accent-red: #e30613;
  --pmg-btn-important: #d10202;
  --pmg-white: #ffffff;
  --pmg-text-on-light: #394b4e;   /* rgb(57, 75, 78) â€“ text on white/light bg only */
  --pmg-text-dark: #333333;
  --pmg-text-black: #000000;
  --pmg-bg-hover: #eef1f1;
  --pmg-bg: #ffffff;
  --pmg-bg-alt: #f8f8f8;
  --pmg-bg-warm: #F1EEE5;
  --pmg-border: #cccccc;
  --pmg-gold-strip: #f2ddac;
  --pmg-gold: #c9a96e;
  --pmg-gold-light: #dfc48e;
  --pmg-gold-dark: #b08c4a;
  --pmg-gold-gradient: linear-gradient(to bottom, #ffdd94 0%, #ffefc4 24%, #b1832b 47%, #ffdb7a 72%, #ffd86f 86%, #7a4d17 99%);
  --pmg-gold-text: #354649;
}

/* Wrapper so text/content sits above gold ::before layer */
.gold-inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.featured-badge .gold-inner { gap: 5px; }

/* â”€â”€â”€ THEMES (switch via ?theme=green|navy|slate|burgundy) â”€â”€â”€ */
:root,
[data-theme="green"] {
  --color-primary: #197067;
  --color-primary-light: #1e8576;
  --color-primary-mid: #1a7568;
  --color-primary-rgb: 25, 112, 103;
}
[data-theme="navy"] {
  --color-primary: #1a2332;
  --color-primary-light: #243044;
  --color-primary-mid: #2c3e56;
  --color-primary-rgb: 26, 35, 50;
}
[data-theme="slate"] {
  --color-primary: #2c3d4f;
  --color-primary-light: #364a5f;
  --color-primary-mid: #3d5568;
  --color-primary-rgb: 44, 61, 79;
}
[data-theme="burgundy"] {
  --color-primary: #4a2432;
  --color-primary-light: #5c2d3d;
  --color-primary-mid: #6b3647;
  --color-primary-rgb: 74, 36, 50;
}

:root {
  --gold: var(--pmg-gold);
  --gold-light: var(--pmg-gold-light);
  --gold-dark: var(--pmg-gold-dark);
  --cream: #f5f3ee;
  --warm-white: var(--pmg-bg-alt);
  --white: var(--pmg-white);
  --charcoal: var(--pmg-text-on-light);
  --slate: #394b4e;
  --text-body: var(--pmg-text-on-light);
  --text-muted: #5c6c6f;
  --border: var(--pmg-border);
  --border-light: #e0e0e0;
  --radius: 10px;
  --radius-lg: 16px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--pmg-text-on-light);
  background: var(--pmg-bg-alt);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* â”€â”€â”€ Header â”€â”€â”€ */
.header {
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  border-bottom: 6px solid var(--pmg-gold-strip);
  transition: box-shadow 0.3s;
  box-shadow: 2px 2px 6px rgb(61 61 61 / 30%);
  height: 100px;
}
.header.scrolled { box-shadow: 0 6px 22px rgba(0,0,0,0.28); }
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pmg-primary) url('images/header-bg.webp?v=1') center / cover no-repeat;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.header.scrolled::before {
  opacity: 0.85;
}
.header > * { position: relative; z-index: 1; }

.header-left { display: flex; align-items: center; gap: 10px; }

.header .nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.header .nav-logo:hover { color: var(--pmg-gold-strip); }
.header .nav-logo img { height: 36px; width: auto; display: block; object-fit: contain; }

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s, opacity 0.2s;
}
.header-nav a:hover { color: var(--pmg-gold-strip); opacity: 1; }
.header-cta {
  background: linear-gradient(to right,  #116a40 0%,#188b57 100%);
  border: 1px solid white;
  color: white;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
}
.header-cta:hover {
  background: rgba(255,255,255,0.3);
  border-color: var(--pmg-gold-strip);
  color: white;
}

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: white; }
.hamburger span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* Sub-header */
.sub-header-wrapper {
  position: fixed;
  top: 100px;
  left: 0;
  z-index: 101;
  filter: drop-shadow(2px 3px 2px rgba(61, 61, 61, .2));
  display: inline-block;
  line-height: 0;
}

.sub-header {
  display: inline-block;
  position: relative;
  background-color: var(--pmg-gold-strip);
  color: #0b3e27;
  clip-path: polygon(0 0, 0% 100%, 88% 100%, 100% 0%);
  padding: 0 85px 7px 30px;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 145px;
  overflow: hidden;
  background: var(--pmg-bg-warm) url('images/hero-office.webp?v=1') center / cover no-repeat;
  color: var(--pmg-text-on-light);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(39 39 39 / 96%) 0%, rgba(39, 39, 39, 0.6) 65%, rgba(241, 238, 229, 0) 100%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; position: relative; z-index: 1;
  padding: 80px 0;
}
.hero-badge {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid rgba(113, 77, 23, 0.3);
  border-radius: 6px; padding: 6px 14px;
  font-size: 0.72rem; font-weight: 700; color: var(--pmg-gold-text);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease both;
  overflow: hidden;
}
.hero-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pmg-gold-gradient);
  opacity: 0.5;
  border-radius: inherit;
  z-index: 0;
}
.hero-badge .gold-inner i { font-size: 0.6rem; }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero h1 .accent, .accent { color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  color: #ffffff;
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.8;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  border: none; transition: all 0.25s;
}
.btn i { font-size: 0.8rem; }
.btn-gold {
  position: relative;
  background: #fff;
  color: var(--pmg-gold-text);
  box-shadow: 0 4px 20px rgba(201,169,110,0.25);
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pmg-gold-gradient);
  opacity: 0.5;
  border-radius: inherit;
  z-index: 0;
}
.btn-gold:hover { filter: brightness(1.05); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.3); }
.btn-gold .gold-inner { display: inline-flex; align-items: center; gap: 8px; }

/* Buttons on light background sections */
.btn-on-light {
  background-color: #127749;
  border: 1px solid #127749;
  color: #fff !important;
  padding: 10px 25px;
  border-radius: 10px;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.btn-on-light:hover {
  background-color: #fff;
  color: #127749 !important;
  border-color: #127749;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: #ffffff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.08); }
.btn-outline {
  background: transparent; color: var(--color-primary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-primary {
  background: var(--pmg-btn-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(17, 106, 64, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(to right, #138050 0%, #1a9d62 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 106, 64, 0.35);
}
.btn-accent {
  background: var(--pmg-accent-red); color: var(--pmg-white);
  box-shadow: 0 4px 16px rgba(227, 6, 19, 0.3);
}
.btn-accent:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* Only use .btn-important on buttons that sit on green bg (e.g. .hero-card, .order-form-card) */
.btn-important {
  background: var(--pmg-gold-gradient);
  color: #000000;
  box-shadow: 0 4px 16px rgba(209, 2, 2, 0.3);
  display: block;
  text-align: center;
}
.btn-important:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(209, 2, 2, 0.4);
}

.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-card {
  background: var(--color-primary) url('images/green-section-bg.webp?v=1') center / cover no-repeat;
  border: 0;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.hero-card-label {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.hero-card-label i { font-size: 0.6rem; }
.hero-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: 6px; font-weight: 700; }
.hero-card-price {
  font-size: 2.5rem; font-weight: 800; color: var(--gold); margin: 14px 0;
}
.hero-card-price span {font-size: 0.9rem;color: rgb(255 255 255);font-weight: 400;}
.hero-card-features { list-style: none; margin: 20px 0; }
.hero-card-features li {
  padding: 7px 0;
  font-size: 0.88rem;
  color: rgb(255 255 255);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero-card-features li:last-child { border: none; }
.hero-card-features li i {
  color: var(--gold); font-size: 0.7rem; width: 20px; text-align: center;
}
.hero-card .btn-gold { width: 100%; justify-content: center; margin-top: 8px; }

.floating-tag {
  position: absolute; border-radius: var(--radius);
  padding: 12px 18px; font-size: 0.78rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  animation: float 4s ease-in-out infinite;
}
.floating-tag i { font-size: 0.85rem; }
.floating-tag.t1 {
  top: -8px;
  right: -16px;
  background: #fff;
  color: var(--pmg-gold-text);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
  animation-delay: 0s;
  overflow: hidden;
  border: 1px solid rgba(113, 77, 23, 0.3);
}
.floating-tag.t1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pmg-gold-gradient);
  opacity: 0.5;
  border-radius: inherit;
  z-index: 0;
}
.floating-tag.t2 {
  bottom: 48px;
  left: -24px;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  animation-delay: 2s;
  border: 1px solid rgb(19 119 73);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* â”€â”€â”€ FULL-WIDTH OFFICE IMAGE â”€â”€â”€ */
.office-visual {
  position: relative;
  width: 100%;
  min-height: 60vh;
  background: #111 url('images/office-bottom.webp?v=1') center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 24px 40px;
}
.office-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.office-visual-inner {
  position: relative;
  z-index: 1;
}
.office-visual-caption {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* â”€â”€â”€ VALUE STRIP â”€â”€â”€ */
.value-strip {
  background: #fff;
  overflow: hidden;
  border-top: 1px solid var(--pmg-border);
  border-bottom: 1px solid var(--pmg-border);
}
.value-strip-inner {
  display: flex;
  animation: scroll-x 30s linear infinite;
}
.value-strip-item {
  flex-shrink: 0; padding: 16px 40px;
  display: flex; align-items: center; gap: 10px;
  color: var(--pmg-text-on-light); font-size: 0.82rem;
  font-weight: 700; white-space: nowrap;
  letter-spacing: 0.03em; text-transform: uppercase;
}
.value-strip-item i { font-size: 0.55rem; opacity: 0.5; }
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* â”€â”€â”€ SECTION STYLES â”€â”€â”€ */
section { padding: 96px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  background: rgba(201,169,110,0.1);
  border-radius: 6px;
  padding: 5px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(113, 77, 23, 0.3);
}
.section-label i { font-size: 0.6rem; }
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px;
  color: var(--charcoal);
}
.section-desc {
  font-size: 1rem; color: var(--text-muted);
  max-width: 540px; font-weight: 400; line-height: 1.8;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* â”€â”€â”€ DARK SECTION (light bg variant) â”€â”€â”€ */
.dark-section { background: var(--pmg-bg-warm); color: var(--pmg-text-on-light); }
.dark-section .section-title { color: var(--pmg-text-on-light); }
.dark-section .section-desc { color: var(--text-muted); }
.dark-section .section-label {
  background: rgba(201,169,110,0.12);
  color: var(--gold);
  border-color: rgba(113, 77, 23, 0.3);
}

/* â”€â”€â”€ PILLARS â”€â”€â”€ */
.pillars-section { background: #f8f8f8; color: var(--pmg-text-on-light); }
.pillars-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pillar {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border-light);
  transition: all 0.35s; position: relative;
  overflow: hidden;
}
.pillar:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(201,169,110,0.1);
  transform: translateY(-3px);
}
.pillar-number {
  font-size: 3.5rem; font-weight: 800;
  color: rgba(201,169,110,0.08);
  position: absolute; top: 12px; right: 20px;
  line-height: 1;
}
.pillar-icon {
  width: 52px; height: 52px;
  background: linear-gradient(to right, #116a40 0%, #188b57 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.pillar h3 {
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 10px; color: var(--charcoal);
}
.pillar p {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 18px;
}

/* â”€â”€â”€ OFFICE GALLERY (FULL-WIDTH IMAGE) â”€â”€â”€ */
.office-gallery {
  position: relative;
  width: 100%;
  min-height: 40vh;
  background: #111 url('images/office-space-1.webp?v=1') center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 24px 40px;
}
.office-gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
  pointer-events: none;
}
.office-gallery-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.office-gallery-caption {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.pillar-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pillar-tag {
  font-size: 0.7rem; font-weight: 600;
  padding: 4px 10px; border-radius: 5px;
  background: var(--cream); color: var(--slate);
  border: 1px solid var(--border);
}

/* â”€â”€â”€ PRICING â”€â”€â”€ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start;
}
.price-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1.5px solid var(--border-light);
  transition: all 0.35s;
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(201,169,110,0.15);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.featured-badge {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 0;
  left: 50%;
  background: #fff;
  color: var(
  --pmg-gold-text);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  border: 1.5px solid rgb(201 168 110);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}
.featured-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--pmg-gold-gradient);
  opacity: 0.5;
  border-radius: inherit;
  z-index: 0;
}
.featured-badge .gold-inner i { font-size: 0.6rem; }
.price-tier {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold-dark); margin-bottom: 6px;
}
.price-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.price-card .price-tagline {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 18px;
}
.price-amount {
  font-size: 2.4rem; font-weight: 800; color: var(--color-primary);
  margin-bottom: 2px;
}
.price-amount span { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }
.price-vat { font-size: 0.73rem; color: var(--text-muted); margin-bottom: 20px; }
.price-divider { width: 100%; height: 1px; background: var(--border-light); margin: 20px 0; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  padding: 5px 0; font-size: 0.85rem; color: var(--text-body);
  display: flex; align-items: center; gap: 10px;
}
.price-features li i {
  color: var(--gold-dark); font-size: 0.65rem;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,169,110,0.1); border-radius: 50%;
  flex-shrink: 0;
}
.price-features li.excluded { opacity: 0.35; }
.price-features li.excluded i { background: transparent; color: var(--text-muted); }
.price-btn {
  width: 100%; text-align: center; justify-content: center;
  padding: 13px 24px;
}

/* â”€â”€â”€ DUAL JURISDICTION â”€â”€â”€ */
.dual-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dual-card {
  background: var(--color-primary) url('images/green-section-bg.webp?v=1') center / cover no-repeat;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; align-items: flex-start; gap: 18px;
  transition: all 0.3s;
}
.dual-card:hover {
  border-color: rgba(201,169,110,0.25);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.dual-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(to right,  #116a40 0%,#188b57 100%);
  border: 1px solid rgb(255 255 255);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
}
.dual-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.dual-card p {font-size: 0.82rem;color: rgb(255 255 255);line-height: 1.65;}

/* â”€â”€â”€ PRICING (alternate bg) â”€â”€â”€ */
#pricing {
  background: #fff;
  color: var(--pmg-text-on-light);
}

/* â”€â”€â”€ ORDER FORM â”€â”€â”€ */
.order-section {
  background: #f8f8f8 url('images/office-space-2.webp?v=1') center 30% / cover no-repeat;
  color: var(--pmg-text-on-light);
  position: relative; overflow: hidden;
}
.order-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(39 39 39 / 96%) 0%, rgba(39, 39, 39, 0.6) 65%, rgba(241, 238, 229, 0) 100%);
  pointer-events: none;
}
.order-section > .container {
  position: relative;
  z-index: 1;
}
.order-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
  position: relative; z-index: 1;
}
.order-info h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}
.order-info p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.order-benefits { list-style: none; }
.order-benefits li {
  padding: 9px 0;
  font-size: 0.9rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.order-benefits li i {
  color: var(--gold-dark); font-size: 0.8rem; width: 20px; text-align: center;
}

.order-form-card {
  background: var(--color-primary) url('images/green-section-bg.webp?v=1') center / cover no-repeat;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 24px 60px rgba(var(--color-primary-rgb), 0.2);
  position: relative;
  overflow: hidden;
}
.order-form-card h3 {
  font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 6px;
}
.order-form-card .form-sub {
  font-size: 0.82rem;
  color: rgb(255 255 255);
  margin-bottom: 24px;
}
.form-row { margin-bottom: 16px; }
.form-row-double { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgb(255 255 255);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #666;
}
.form-row input::-webkit-input-placeholder,
.form-row textarea::-webkit-input-placeholder {
  color: #666;
}
.form-row input::-moz-placeholder,
.form-row textarea::-moz-placeholder {
  color: #666;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold);
  background: #fff;
}
.form-row select option { background: var(--color-primary); color: #fff; }
.form-row textarea { resize: vertical; min-height: 72px; }
.order-submit {
  position: relative;
  width: 100%; padding: 14px;
  background: #fff;
  color: var(--pmg-gold-text);
  border: none; border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem; font-weight: 800;
  cursor: pointer; transition: all 0.25s;
  margin-top: 6px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  overflow: hidden;
}
.order-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pmg-gold-gradient);
  opacity: 0.5;
  border-radius: inherit;
  z-index: 0;
}
.order-submit:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.35);
}
.order-submit.btn-important::before { display: none; }
.order-submit .gold-inner i { font-size: 0.8rem; }
.order-submit.btn-important {
  background: var(--pmg-btn-important);
  color: #fff;
}
.order-submit.btn-important:hover {
  background: #e80303;
  color: #fff;
  box-shadow: 0 6px 20px rgba(209, 2, 2, 0.4);
}

/* â”€â”€â”€ CTA STRIP â”€â”€â”€ */
.cta-strip {
  background: #f1eee5;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--pmg-border);
}
.cta-strip h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800; color: var(--pmg-text-on-light); margin-bottom: 10px; position: relative;
}
.cta-strip p {
  color: var(--text-muted); font-size: 0.95rem;
  margin-bottom: 28px; position: relative;
}
.cta-strip .btn { position: relative; }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
footer {
  background: #272727;
  color: #ffffff;
  padding: 40px 0;
  border-top: 1px solid var(--pmg-border);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer-inner + .footer-inner {
  margin-top: 20px;
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-logo img { height: 28px; width: auto; display: block; }
.footer-logo span { color: var(--gold); }
footer p {font-size: 0.78rem;color: inherit;}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 0.78rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* â”€â”€â”€ MODAL â”€â”€â”€ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-lg);
  padding: 44px; max-width: 460px; width: 100%;
  text-align: center; position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(10px); } }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; font-size: 1.3rem;
  cursor: pointer; color: var(--text-muted); transition: color 0.2s;
}
.modal-close:hover { color: var(--charcoal); }
.modal-icon {
  width: 60px; height: 60px; margin: 0 auto 18px;
  background: var(--color-primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
}
.modal h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; }
.modal p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; }
  .floating-tag.t1 { right: 8px; }
  .floating-tag.t2 {left: 8px;bottom: -40px;}
  .pillars-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .order-grid { grid-template-columns: 1fr; gap: 44px; }
  .dual-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .header { padding: 12px 20px; }
  .header .nav-logo img { height: 32px; }
  .header-nav { display: none; }
  body.menu-open .header-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(25,112,103,0.98);
    padding: 20px;
    gap: 12px;
    border-bottom: 10px solid var(--pmg-gold-strip);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 100;
  }
  body.menu-open .sub-header-wrapper {
    z-index: 100;
  }
  .sub-header-wrapper {top: 100px;}
  .sub-header { padding: 0 50px 5px 20px; font-size: 11px; letter-spacing: 4px; }
  .hero { padding-top: 130px; }
  .hamburger { display: block; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { min-height: auto; }
  .hero-grid { padding: 44px 0; }
  .hero-card { padding: 28px 22px; }
  .price-card { padding: 28px 24px; }
  .order-form-card { padding: 28px 22px; }
  .form-row-double { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
