/* =========================================
   ELECTRICISTA ROSSI — Professional Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy:        #0d2137;
  --navy-mid:    #0f2d52;
  --blue:        #1455a4;
  --blue-light:  #1d6abf;
  --amber:       #e8a020;
  --amber-dark:  #c8860a;
  --dark:        #0d1520;
  --text:        #374151;
  --text-light:  #6b7280;
  --border:      #e5e7eb;
  --bg:          #f8f9fb;
  --white:       #ffffff;
  --red:         #b91c1c;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.07), 0 2px 8px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --radius:      10px;
  --radius-sm:   6px;
  --t:           .25s ease;
  --max:         1240px;
}

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

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ── EMERGENCY BANNER ── */
.emergency-bar {
  background: var(--red);
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .2px;
}
.emergency-bar a { color: #fecaca; border-bottom: 1px solid rgba(255,255,255,.4); }
.emergency-bar i { margin-right: 6px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: top var(--t), box-shadow var(--t);
}
.navbar.no-banner { top: 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 38px; height: 38px;
  background: var(--amber);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--navy);
}
.logo-text .brand { display: block; font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -.3px; line-height: 1.1; }
.logo-text .sub { display: block; font-size: 10px; font-weight: 600; color: rgba(255,255,255,.45); letter-spacing: 1.8px; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.78);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all var(--t);
}
.nav-menu a:hover, .nav-menu a.active { color: #fff; background: rgba(255,255,255,.08); }
.nav-cta-btn {
  margin-left: 8px;
  background: var(--amber) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta-btn:hover { background: var(--amber-dark) !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--t); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; transition: all var(--t);
  cursor: pointer;
}
.btn-primary { background: var(--amber); color: var(--navy); }
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,160,32,.35); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #f0f0f0; transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 13px; font-weight: 600; }

/* ── SECTION COMMONS ── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--navy); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.eyebrow::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--amber); border-radius: 2px; }

.section-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: var(--dark); line-height: 1.15; letter-spacing: -.5px; margin-bottom: 16px; }
.section-title span { color: var(--blue); }
.section-title.light { color: #fff; }
.section-desc { font-size: 17px; color: var(--text-light); max-width: 560px; }
.section-desc.light { color: rgba(255,255,255,.65); }

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.text-center .eyebrow { justify-content: center; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 104px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,25,45,.92) 0%, rgba(9,25,45,.75) 55%, rgba(9,25,45,.45) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(232,160,32,.45); color: var(--amber);
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 28px;
  background: rgba(232,160,32,.08);
}
.hero h1 {
  font-size: clamp(34px, 5vw, 62px); font-weight: 900; color: #fff;
  line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 22px;
}
.hero h1 span { color: var(--amber); display: block; }
.hero p { font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 520px; line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 40px; max-width: 480px;
}
.hero-stat strong { display: block; font-size: 34px; font-weight: 900; color: var(--amber); line-height: 1; }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 5px; display: block; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--dark); padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.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; color: rgba(255,255,255,.6); font-size: 13px; font-weight: 500; }
.trust-item i { color: var(--amber); font-size: 16px; }
.trust-sep { width: 1px; height: 24px; background: rgba(255,255,255,.1); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--t); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.service-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,33,55,.7) 0%, transparent 60%); }
.service-body { padding: 28px; }
.service-icon-wrap {
  width: 48px; height: 48px; background: rgba(20,85,164,.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 20px; margin-bottom: 16px;
}
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }
.service-link { font-size: 13px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--t); }
.service-link:hover { gap: 10px; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--amber); border-radius: var(--radius);
  padding: 16px 20px; text-align: center; box-shadow: var(--shadow-md);
}
.why-badge strong { display: block; font-size: 32px; font-weight: 900; color: var(--navy); line-height: 1; }
.why-badge span { font-size: 12px; font-weight: 700; color: var(--navy); opacity: .8; }
.why-items { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item-icon { width: 46px; height: 46px; background: rgba(20,85,164,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 18px; flex-shrink: 0; }
.why-item h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ── STATS ── */
.stats-section { background: var(--navy); padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 48px; font-weight: 900; color: var(--amber); line-height: 1; letter-spacing: -1px; }
.stat-item p { font-size: 14px; color: rgba(255,255,255,.55); margin-top: 8px; font-weight: 500; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.testi-stars { display: flex; gap: 3px; color: var(--amber); font-size: 14px; margin-bottom: 16px; }
.testi-card blockquote { font-size: 15px; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.testi-role { font-size: 12px; color: var(--text-light); }

/* ── CTA BANNER ── */
.cta-section { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 45%; background: url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=800&q=80') center/cover; opacity: .15; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: #fff; line-height: 1.2; max-width: 540px; }
.cta-inner h2 span { color: var(--amber); }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ── ABOUT PAGE ── */
.page-hero { position: relative; padding: 148px 0 72px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(9,25,45,.9) 0%, rgba(9,25,45,.7) 100%); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 50px); font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.1; letter-spacing: -.5px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.7); max-width: 540px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.breadcrumb a { color: var(--amber); }
.breadcrumb i { font-size: 10px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-lead { font-size: 19px; font-weight: 600; color: var(--blue); line-height: 1.55; margin-bottom: 20px; }
.about-body p { font-size: 16px; color: var(--text); margin-bottom: 18px; line-height: 1.8; }

.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; border: 1px solid var(--border); transition: all var(--t); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.value-icon-wrap { width: 60px; height: 60px; background: rgba(20,85,164,.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 24px; margin: 0 auto 18px; }
.value-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; }

.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: all var(--t); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo { height: 220px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .4s ease; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 20px; }
.team-info h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.team-info .role { font-size: 13px; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.team-info p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* Timeline */
.timeline { position: relative; max-width: 760px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue), var(--amber)); transform: translateX(-50%); }
.tl-item { display: flex; justify-content: flex-end; width: 50%; padding-right: 48px; margin-bottom: 40px; position: relative; }
.tl-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: 48px; margin-left: 50%; }
.tl-dot { position: absolute; right: -9px; top: 16px; width: 18px; height: 18px; border-radius: 50%; background: var(--amber); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--blue); }
.tl-item:nth-child(even) .tl-dot { right: auto; left: -9px; }
.tl-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; max-width: 280px; box-shadow: var(--shadow-sm); }
.tl-year { font-size: 11px; font-weight: 800; color: var(--amber); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.tl-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.tl-card p { font-size: 13px; color: var(--text-light); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: flex-start; }
.contact-info { background: linear-gradient(160deg, var(--navy-mid), var(--navy)); border-radius: var(--radius); padding: 40px; color: #fff; position: sticky; top: 110px; }
.contact-info h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.contact-info > p { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 36px; }
.ci-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { width: 42px; height: 42px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--amber); flex-shrink: 0; }
.ci-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 3px; }
.ci-value { font-size: 15px; font-weight: 600; }
.emergency-card { background: rgba(185,28,28,.25); border: 1px solid rgba(255,100,100,.3); border-radius: var(--radius-sm); padding: 20px; margin-top: 28px; }
.emergency-card h4 { font-size: 15px; font-weight: 700; color: #fca5a5; margin-bottom: 8px; }
.emergency-card p { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.emergency-card a { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--red); font-weight: 800; padding: 10px 18px; border-radius: var(--radius-sm); font-size: 15px; }

.contact-form-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.form-title { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--text-light); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; color: var(--text); font-family: inherit; background: var(--bg);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,85,164,.1); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12px; color: var(--text-light); margin-top: 14px; text-align: center; }
.form-success { display: none; background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: var(--radius-sm); padding: 16px; color: #065f46; font-weight: 600; font-size: 14px; margin-top: 16px; text-align: center; }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.faq-item h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.faq-item h4 i { color: var(--amber); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.faq-item p { font-size: 15px; color: var(--text-light); line-height: 1.7; padding-left: 24px; }

/* ── LOCATIONS PAGE ── */
.locations-wrap {
  display: grid; grid-template-columns: 380px 1fr;
  height: calc(100vh - 104px); margin-top: 104px;
}
.loc-sidebar {
  overflow-y: auto; background: var(--bg);
  border-right: 1px solid var(--border); padding: 24px;
  scrollbar-width: thin;
}
.loc-sidebar-head { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.loc-sidebar-head h2 { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.loc-sidebar-head p { font-size: 13px; color: var(--text-light); }
.loc-list { display: flex; flex-direction: column; gap: 10px; }
.loc-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
  cursor: pointer; transition: all var(--t);
}
.loc-card:hover, .loc-card.active {
  border-color: var(--blue); box-shadow: var(--shadow-sm);
  background: rgba(20,85,164,.03);
}
.loc-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.loc-card-top h3 { font-size: 15px; font-weight: 700; color: var(--dark); }
.loc-tag { background: rgba(20,85,164,.1); color: var(--blue); font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: .5px; text-transform: uppercase; }
.loc-card-addr { font-size: 13px; color: var(--text-light); display: flex; align-items: flex-start; gap: 6px; margin-bottom: 5px; }
.loc-card-addr i { color: var(--blue); margin-top: 2px; flex-shrink: 0; }
.loc-card-phone { font-size: 13px; color: var(--blue); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.loc-card-phone i { font-size: 12px; }
.loc-card-actions { display: flex; gap: 8px; margin-top: 12px; }
.loc-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 700; cursor: pointer; transition: all var(--t); text-decoration: none; }
.loc-btn-primary { background: var(--blue); color: #fff; }
.loc-btn-primary:hover { background: var(--navy); }

#map { width: 100%; height: 100%; }

/* ── LOCATION DETAIL ── */
.loc-detail-hero { position: relative; padding: 148px 0 60px; overflow: hidden; }
.loc-detail-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.loc-detail-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(9,25,45,.92) 0%, rgba(9,25,45,.7) 100%); }
.province-pill { display: inline-block; background: rgba(232,160,32,.2); border: 1px solid rgba(232,160,32,.4); color: var(--amber); font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; margin-bottom: 18px; }
.loc-detail-hero h1 { font-size: clamp(28px, 4.5vw, 48px); font-weight: 900; color: #fff; margin-bottom: 10px; letter-spacing: -.5px; }
.loc-detail-hero p { font-size: 16px; color: rgba(255,255,255,.65); }

.detail-grid { display: grid; grid-template-columns: 360px 1fr; gap: 36px; }
.detail-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.detail-card-head { background: linear-gradient(135deg, var(--navy-mid), var(--navy)); padding: 22px 24px; color: #fff; }
.detail-card-head h3 { font-size: 17px; font-weight: 800; margin-bottom: 3px; }
.detail-card-head p { font-size: 13px; opacity: .65; }
.detail-card-body { padding: 0 24px; }
.detail-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--bg); }
.detail-row:last-child { border-bottom: none; }
.detail-row-icon { width: 38px; height: 38px; background: var(--bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 15px; flex-shrink: 0; }
.detail-row-label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 2px; }
.detail-row-value { font-size: 14px; color: var(--dark); font-weight: 600; line-height: 1.5; }
.detail-card-actions { padding: 20px 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.detail-action { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; transition: all var(--t); cursor: pointer; text-decoration: none; }
.da-primary { background: var(--blue); color: #fff; }
.da-primary:hover { background: var(--navy); }
.da-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.da-outline:hover { background: var(--blue); color: #fff; }

.detail-main { display: flex; flex-direction: column; gap: 24px; }
.detail-map-wrap { border-radius: var(--radius); overflow: hidden; height: 280px; border: 1px solid var(--border); }
.detail-map-wrap #detail-map { height: 100%; }
.detail-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.detail-info-card h3 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.detail-info-card h3 i { color: var(--blue); }
.service-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.service-chip { background: rgba(20,85,164,.07); color: var(--blue); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(20,85,164,.15); display: inline-flex; align-items: center; gap: 6px; }
.service-chip i { font-size: 11px; }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-text .brand { font-size: 20px; color: #fff; }
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 14px; max-width: 260px; }
.footer-col h4 { font-size: 12px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.45); transition: color var(--t); }
.footer-col ul a:hover { color: rgba(255,255,255,.85); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.45); margin-bottom: 12px; }
.footer-contact-item i { color: var(--amber); margin-top: 3px; font-size: 14px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom a { color: var(--amber); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-photo { display: none; }
  .about-img { display: none; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .detail-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 28px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 16px 20px; gap: 4px; }
  .nav-menu.open { display: flex; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { gap: 16px; }
  .trust-sep { display: none; }
  .locations-wrap { grid-template-columns: 1fr; height: auto; }
  .loc-sidebar { max-height: 50vh; }
  #map { height: 50vh; }
  .timeline::before { left: 16px; }
  .tl-item { width: 100%; padding-left: 48px; padding-right: 0; justify-content: flex-start; }
  .tl-item:nth-child(even) { margin-left: 0; padding-left: 48px; }
  .tl-dot { right: auto; left: 7px; }
  .tl-item:nth-child(even) .tl-dot { left: 7px; }
}
