/* ============================================================
   Tesla Cure Maintenance — style.css
   Premium Dubai Maintenance Website
   ============================================================ */

/* CSS VARIABLES */
:root {
  --navy: #0d1b2a;
  --navy-mid: #152338;
  --navy-light: #1e3452;
  --charcoal: #2c3e50;
  --gold: #c9a96e;
  --gold-light: #e0c896;
  --gold-pale: #f5edd8;
  --white: #ffffff;
  --off-white: #f9f8f5;
  --light-gray: #f0eeea;
  --text-dark: #1a1a2e;
  --text-body: #4a5568;
  --text-muted: #8a9ab0;
  --border: #e8e4de;
  --border-dark: #2a3f5c;
  --shadow-sm: 0 2px 12px rgba(13,27,42,0.07);
  --shadow-md: 0 6px 30px rgba(13,27,42,0.12);
  --shadow-lg: 0 16px 60px rgba(13,27,42,0.18);
  --shadow-gold: 0 4px 24px rgba(201,169,110,0.22);
  --radius: 4px;
  --radius-lg: 10px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* CONTAINER */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

.section-pad { padding: 100px 0; }
@media (max-width: 768px) { .section-pad { padding: 72px 0; } }

/* TYPOGRAPHY */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-label.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 17px;
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub { margin: 0 auto; }

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 15px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.35);
}
.btn-primary.btn-full { width: 100%; justify-content: center; }
.btn-primary.btn-large { font-size: 16px; padding: 18px 44px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.35);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-wa-header {
  display: inline-flex; align-items: center; gap: 7px;
  background: #25d366; color: white;
  font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: var(--radius);
  transition: var(--transition);
}
.btn-wa-header:hover { background: #1db954; transform: translateY(-1px); }
.btn-call-header {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold); color: var(--navy);
  font-size: 13px; font-weight: 700;
  padding: 9px 18px; border-radius: var(--radius);
  transition: var(--transition);
}
.btn-call-header:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .btn-wa-header { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 480px) {
  .btn-call-header span { display: none; }
}

/* Mobile Nav Open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: var(--navy);
  padding: 28px 32px;
  gap: 20px;
  border-top: 1px solid var(--border-dark);
  animation: slideDown 0.2s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(201,169,110,0.04), transparent);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.35);
  background: rgba(201,169,110,0.07);
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* Hero Card */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
}
.hero-card-inner { padding: 40px 36px; }
.hc-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.hc-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.hc-text { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.hc-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  transition: var(--transition);
}
.hc-phone:hover { color: var(--gold-light); }
.hc-divider {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin: 16px 0;
  position: relative;
}
.hc-divider::before, .hc-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 20px);
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.hc-divider::before { left: 0; }
.hc-divider::after { right: 0; }
.hc-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.hc-services span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: 20px;
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
}
@media (max-width: 600px) {
  .hero { padding-top: 120px; }
  .hero-stats { gap: 20px; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}
.trust-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.trust-sep { width: 1px; height: 32px; background: var(--border); }
@media (max-width: 900px) {
  .trust-sep { display: none; }
  .trust-inner { justify-content: center; gap: 16px 28px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 440px;
}
.about-grid-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.about-card-1, .about-card-2 {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.about-card-1 { top: 40px; left: 40px; right: 40px; }
.about-card-2 { bottom: 40px; left: 40px; right: 40px; }
.ac-icon { font-size: 24px; color: var(--gold); flex-shrink: 0; }
.ac-text { display: flex; flex-direction: column; }
.ac-text strong { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.ac-text span { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.about-highlights { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 10px; }
.ah-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-dark); }
.ah-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 220px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.sc-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .sc-accent,
.service-card.featured .sc-accent { opacity: 1; }
.sc-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.sc-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.sc-icon svg { width: 24px; height: 24px; color: var(--gold); }
.service-card:hover .sc-icon { background: var(--gold); }
.service-card:hover .sc-icon svg { color: var(--navy); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--text-body); margin-bottom: 20px; line-height: 1.65; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; flex: 1; }
.service-card ul li {
  font-size: 13px;
  color: var(--text-body);
  padding-left: 18px;
  position: relative;
}
.service-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 8px;
  top: 4px;
}
.sc-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.sc-cta:hover { color: var(--navy); gap: 10px; }
.service-card.featured { border-color: rgba(201,169,110,0.4); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  transition: var(--transition);
  position: relative;
}
.why-card:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.wc-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: rgba(201,169,110,0.18);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}
.why-card:hover .wc-num { color: rgba(201,169,110,0.35); }
.why-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* ============================================================
   URGENT SECTION
   ============================================================ */
.urgent {
  position: relative;
  overflow: hidden;
}
.urgent-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.urgent-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.pain-list { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  transition: var(--transition);
}
.pain-item:hover {
  background: rgba(201,169,110,0.07);
  border-color: rgba(201,169,110,0.3);
}
.pain-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.pain-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.pain-item p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; }

.urgent-cta-box {
  position: sticky;
  top: 100px;
}
.ucb-inner {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  backdrop-filter: blur(12px);
}
.ucb-inner h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.ucb-inner p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.btn-wa-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: #25d366;
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 24px;
  border-radius: var(--radius);
  margin-top: 12px;
  transition: var(--transition);
}
.btn-wa-full:hover { background: #1db954; transform: translateY(-2px); }
.ucb-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .urgent-inner { grid-template-columns: 1fr; }
  .urgent-cta-box { position: relative; top: auto; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--off-white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
}
@media (max-width: 1000px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.process-step:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ps-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: rgba(201,169,110,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.ps-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.ps-icon svg { width: 22px; height: 22px; color: var(--gold); }
.process-step:hover .ps-icon { background: var(--gold); }
.process-step:hover .ps-icon svg { color: var(--navy); }
.process-step h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.process-step p { font-size: 13px; color: var(--text-body); line-height: 1.6; }
.ps-connector {
  display: none;
}
@media (min-width: 1000px) {
  .ps-connector {
    display: block;
    position: absolute;
    top: 40px;
    right: -12px;
    width: 16px;
    height: 2px;
    background: rgba(201,169,110,0.3);
    z-index: 1;
  }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas { background: var(--white); }
.areas-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}
.area-tags span {
  font-size: 13px;
  color: var(--text-dark);
  border: 1px solid var(--border);
  background: var(--off-white);
  padding: 7px 14px;
  border-radius: 40px;
  transition: var(--transition);
}
.area-tags span:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--navy);
}
.areas-props {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prop-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.prop-card:hover {
  border-color: var(--gold);
  background: var(--white);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.prop-icon { font-size: 28px; flex-shrink: 0; }
.prop-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.prop-card p { font-size: 13px; color: var(--text-body); }

@media (max-width: 900px) {
  .areas-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--off-white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.cd-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.cd-item:hover:not(.no-link) {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.cd-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.cd-item div { display: flex; flex-direction: column; }
.cd-item span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.cd-item strong { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-top: 2px; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  outline: none;
  transition: var(--transition);
  width: 100%;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9ab0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}
.form-note a { color: var(--gold); font-weight: 600; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  gap: 12px;
}
.fs-icon {
  width: 60px; height: 60px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--gold);
  font-weight: 700;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-dark);
}
.form-success p { font-size: 14px; color: var(--text-body); }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-card { padding: 32px 24px; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.fcta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
}
.fcta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 60%),
                    radial-gradient(circle at 80% 50%, rgba(201,169,110,0.06) 0%, transparent 60%);
}
.fcta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.fcta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.fcta-title em { font-style: italic; color: var(--gold); }
.fcta-inner p { font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.fcta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 44px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-wa-large:hover { background: #1db954; transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact-mini { display: flex; flex-direction: column; gap: 6px; }
.footer-contact-mini a {
  font-size: 13px;
  color: var(--gold);
  transition: var(--transition);
}
.footer-contact-mini a:hover { color: var(--gold-light); }

.footer-links h5,
.footer-services h5,
.footer-cta h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-links, .footer-services {
  display: flex;
  flex-direction: column;
}
.footer-links a, .footer-services a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  padding: 4px 0;
}
.footer-links a:hover, .footer-services a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.footer-cta { display: flex; flex-direction: column; gap: 10px; }
.btn-wa-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.btn-wa-footer:hover { background: #1db954; }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
[data-anim="fade-left"] { transform: translateX(28px); }
[data-anim="fade-right"] { transform: translateX(-28px); }
[data-anim].is-visible {
  opacity: 1;
  transform: none;
}
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
