/* =============================================
   RAXIS TRAFFIC — LIGHT ELEGANT THEME
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --white:        #FFFFFF;
  --off-white:    #F7F6F2;
  --cream:        #EDE9E0;
  --warm-gray:    #C8C2B8;
  --mid-gray:     #888078;
  --dark:         #1C1A17;
  --charcoal:     #2E2C28;
  --accent:       #C8873A;
  --accent-light: #E8A85A;
  --accent-dark:  #A06820;
  --orange-tint:  #FBF5EE;
  --border:       rgba(200,194,184,0.5);
  --shadow-sm:    0 2px 12px rgba(28,26,23,0.06);
  --shadow-md:    0 6px 30px rgba(28,26,23,0.10);
  --shadow-lg:    0 16px 60px rgba(28,26,23,0.14);
  --radius:       6px;
  --radius-lg:    12px;
  --transition:   all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────── */

.display-font { font-family: 'Cormorant Garamond', serif; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

/* ── LAYOUT ───────────────────────────────── */

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

.section-pad {
  padding: 100px 0;
}

/* ── BUTTONS ──────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,135,58,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,26,23,0.15);
}

/* ── TOP BAR ──────────────────────────────── */

.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.topbar a:hover { color: var(--accent-light); }
.topbar .icon-sm {
  width: 14px; height: 14px;
  stroke: var(--accent-light);
  flex-shrink: 0;
}

/* ── HEADER ───────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 24px; height: 24px; }
.logo-text { line-height: 1; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.logo-tagline {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: var(--orange-tint);
}
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  overflow: hidden;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  font-size: 14px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.dropdown-link:last-child { border-bottom: none; }
.dropdown-link:hover { background: var(--orange-tint); color: var(--accent); }
.dropdown-icon {
  width: 32px; height: 32px;
  background: var(--orange-tint);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dropdown-icon svg { width: 16px; height: 16px; stroke: var(--accent); }

/* HEADER RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: var(--radius);
  background: var(--off-white);
  transition: var(--transition);
}
.header-phone:hover { color: var(--accent); background: var(--orange-tint); }
.header-phone svg { width: 16px; height: 16px; stroke: var(--accent); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 11px 28px;
  font-size: 15px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: var(--off-white); color: var(--accent); }
.mobile-nav a.sub { padding-left: 44px; font-size: 14px; color: var(--mid-gray); }

/* ── HERO ─────────────────────────────────── */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--off-white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(200,135,58,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 80%, rgba(200,135,58,0.06) 0%, transparent 50%),
    linear-gradient(135deg, var(--off-white) 0%, var(--cream) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, var(--border) 39px, var(--border) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, var(--border) 39px, var(--border) 40px);
  opacity: 0.4;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,135,58,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(200,135,58,0); }
}
.hero-eyebrow span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-title {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--dark);
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-desc {
  font-size: 17px;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--mid-gray);
  margin-top: 4px;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  position: relative;
  width: 440px;
  height: 480px;
}
.hero-card-main {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-worker-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.hero-worker-svg {
  width: 280px;
  position: relative;
  z-index: 2;
}
.hero-road-stripe {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 60px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.road-dash {
  width: 50px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.floating-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge-1 { top: -20px; right: -30px; animation-delay: 0s; }
.badge-2 { bottom: 40px; left: -40px; animation-delay: 1.5s; }
.badge-icon {
  width: 36px; height: 36px;
  background: var(--orange-tint);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-icon svg { width: 20px; height: 20px; stroke: var(--accent); }
.badge-text .label { font-size: 11px; color: var(--mid-gray); }
.badge-text .value { font-size: 15px; font-weight: 600; color: var(--dark); }

/* ── SERVICES STRIP ───────────────────────── */

.services-strip {
  background: var(--dark);
  padding: 28px 0;
  overflow: hidden;
}
.services-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.services-strip-inner::-webkit-scrollbar { display: none; }
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}
.strip-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* ── SERVICES SECTION ─────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(200,135,58,0.3); }
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 54px; height: 54px;
  background: var(--orange-tint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(200,135,58,0.15);
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--accent); }
.service-title {
  font-size: 22px;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 22px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; }

/* ── ABOUT SECTION ────────────────────────── */

.about-section {
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-box {
  background: var(--cream);
  border-radius: 20px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.about-svg-illus {
  width: 80%;
}
.about-accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent);
  border-radius: 16px;
  padding: 24px 28px;
  color: var(--white);
  box-shadow: 0 10px 40px rgba(200,135,58,0.35);
}
.accent-box-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}
.accent-box-text { font-size: 13px; opacity: 0.85; margin-top: 4px; }

.about-content h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  margin-bottom: 24px;
}
.about-content p {
  font-size: 15.5px;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-check {
  width: 24px; height: 24px;
  background: var(--orange-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(200,135,58,0.2);
}
.feature-check svg { width: 13px; height: 13px; stroke: var(--accent); }
.feature-text strong { color: var(--dark); font-weight: 600; }
.feature-text p { font-size: 14px; color: var(--mid-gray); margin-top: 2px; }

/* ── WHY CHOOSE US ────────────────────────── */

.why-us {
  background: var(--white);
}
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  margin-bottom: 18px;
}
.section-header p {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.75;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: var(--transition);
  text-align: center;
}
.why-card:hover {
  background: var(--orange-tint);
  border-color: rgba(200,135,58,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--orange-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(200,135,58,0.15);
}
.why-icon svg { width: 30px; height: 30px; stroke: var(--accent); }
.why-card h4 {
  font-size: 19px;
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--mid-gray); line-height: 1.7; }

/* ── CTA BAND ─────────────────────────────── */

.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,135,58,0.15) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(30px, 3vw, 46px);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 480px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── CONTACT INFO SECTION ─────────────────── */

.contact-info-strip {
  background: var(--off-white);
  padding: 60px 0;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-card-icon {
  width: 54px; height: 54px;
  background: var(--orange-tint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(200,135,58,0.15);
}
.contact-card-icon svg { width: 26px; height: 26px; stroke: var(--accent); }
.contact-card h4 { font-size: 18px; margin-bottom: 8px; }
.contact-card p, .contact-card a {
  font-size: 15px;
  color: var(--mid-gray);
  transition: color 0.2s;
}
.contact-card a:hover { color: var(--accent); }

/* ── FOOTER ───────────────────────────────── */

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { color: var(--white); font-size: 24px; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.45); }
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  margin: 20px 0 28px;
  color: rgba(255,255,255,0.6);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.social-btn svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-contact-icon { width: 16px; height: 16px; stroke: var(--accent-light); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent-light); }

/* ── PAGE HERO ────────────────────────────── */

.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(200,135,58,0.15) 0%, transparent 60%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  margin-bottom: 14px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb-sep { opacity: 0.4; }

/* ── SERVICE DETAIL PAGE ──────────────────── */

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.service-detail-content h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 20px;
}
.service-detail-content p {
  font-size: 15.5px;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 18px;
}
.service-detail-content h3 {
  font-size: 26px;
  margin: 36px 0 16px;
}
.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.service-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal);
}
.service-bullet::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.sidebar-widget {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.sidebar-widget-head {
  background: var(--dark);
  padding: 24px 28px;
}
.sidebar-widget-head h4 {
  color: var(--white);
  font-size: 22px;
}
.sidebar-widget-head p { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 4px; }
.sidebar-widget-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sidebar-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
}
.sidebar-service-link:hover, .sidebar-service-link.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.sidebar-service-link svg { width: 16px; height: 16px; }
.sidebar-cta {
  margin: 0 28px 28px;
}
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* ── CONTACT PAGE ─────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 10px; }
.contact-form-wrap > p { color: var(--mid-gray); font-size: 15px; margin-bottom: 36px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--charcoal); letter-spacing: 0.3px; }
.form-group input, .form-group textarea, .form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,135,58,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12.5px; color: var(--mid-gray); }
.form-success, .form-error {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}
.form-success { background: #f0faf0; border: 1px solid #a8d5a2; color: #2e7d32; }
.form-error { background: #fff5f5; border: 1px solid #f5c6c6; color: #c62828; }
.form-success.show, .form-error.show { display: block; }

.contact-info-panel {
  background: var(--dark);
  border-radius: 20px;
  padding: 44px;
  color: rgba(255,255,255,0.75);
  position: sticky;
  top: 100px;
}
.contact-info-panel h3 {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-info-panel > p { font-size: 15px; margin-bottom: 36px; color: rgba(255,255,255,0.6); }
.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.info-icon {
  width: 46px; height: 46px;
  background: rgba(200,135,58,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(200,135,58,0.2);
}
.info-icon svg { width: 22px; height: 22px; stroke: var(--accent-light); }
.info-content h5 { color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 18px; margin-bottom: 4px; }
.info-content p, .info-content a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.info-content a:hover { color: var(--accent-light); }
.info-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 28px 0; }
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── SCROLL TO TOP ────────────────────────── */

#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px; height: 46px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(200,135,58,0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
#scrollTop.visible { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--accent-dark); transform: translateY(-3px); }
#scrollTop svg { width: 20px; height: 20px; }

/* ── ANIMATIONS ───────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────── */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 480px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-panel { position: static; }
}

@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .topbar { display: none; }
  .main-nav, .header-right { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}
