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

:root {
  --cream: #F7F3EC;
  --cream2: #EDE8DF;
  --cream3: #E0D9CE;
  --ink: #1A1714;
  --ink2: #3D3830;
  --ink3: #6B6257;
  --rust: #C4421A;
  --rust2: #9E3312;
  --rust-light: #F5E8E3;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Josefin Sans', sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--cream2)
}

::-webkit-scrollbar-thumb {
  background: var(--rust)
}

/* ─── NAV ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4% 0 4%;
  height: 68px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream3);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 300;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--ink);
  transition: .3s;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--cream);
  z-index: 250;
  display: flex;
  flex-direction: column;
  padding: 100px 40px;
  gap: 2rem;
  transition: .4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 240;
  display: none;
  backdrop-filter: blur(4px);
}

.overlay.active {
  display: block;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--rust);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--ink);
}

.logo-text em {
  color: var(--rust);
  font-style: italic
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem
}

nav a {
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink3);
  transition: color .2s;
}

nav a:hover {
  color: var(--rust)
}

.nav-btn {
  background: var(--rust);
  color: #fff !important;
  padding: 10px 24px;
  letter-spacing: 2px;
  font-weight: 600 !important;
  transition: background .2s !important;
}

.nav-btn:hover {
  background: var(--rust2) !important
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  background: var(--ink);
  padding: 8% 7% 6% 8%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(196, 66, 26, .25);
  border-radius: 50%;
}

.hero-left::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(196, 66, 26, .15);
  border-radius: 50%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 2rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--rust)
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 900;
  line-height: .95;
  color: #fff;
  margin-bottom: 2.5rem;
}

.hero-heading em {
  font-style: italic;
  color: var(--rust);
}

.hero-body {
  font-size: .88rem;
  line-height: 1.9;
  color: #a09890;
  max-width: 380px;
  margin-bottom: 3rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.btn-filled {
  background: var(--rust);
  color: #fff;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 30px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}

.btn-filled:hover {
  background: var(--rust2)
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 30px;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s;
}

.btn-ghost:hover {
  border-color: var(--rust)
}

.hero-stats-row {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.h-stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.h-stat-label {
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b6257;
  margin-top: 4px;
}

.hero-right {
  background: var(--cream2);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-right-top {
  flex: 1;
  background: var(--cream);
  border-bottom: 1px solid var(--cream3);
  border-left: 1px solid var(--cream3);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--cream3);
  padding: 8px 16px;
  font-size: .68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink3);
  width: fit-content;
}

.trust-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0
}

.sidebar-label {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink3);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

.hero-img-placeholder {
  background: var(--cream3);
  border-left: 1px solid var(--cream3);
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.elec-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.elec-art svg {
  width: 100%;
  height: 100%
}

.announce-bar {
  background: var(--rust);
  color: #fff;
  padding: 14px 3rem;
  border-left: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, opacity .2s;
}

.announce-bar:hover {
  background: var(--rust2);
  opacity: 0.95;
}

.announce-bar span {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase
}

.announce-bar strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic
}

/* ─── SECTION SHARED ─── */
.section-marker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.5rem;
}

.section-marker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--rust)
}

.section-h {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--ink);
}

.section-h em {
  font-style: italic;
  color: var(--rust)
}

/* ─── ABOUT ─── */
#about {
  display: block;
  min-height: auto;
  border-top: 1px solid var(--cream3);
}

.about-sidebar {
  background: var(--ink2);
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-sidebar .section-marker {
  color: #c4a08a
}

.about-sidebar .section-marker::before {
  background: #c4a08a
}

.about-sidebar .section-h {
  color: #fff
}

.about-sidebar .section-h em {
  color: var(--rust)
}

.about-sidebar p {
  font-size: .85rem;
  line-height: 1.9;
  color: #9a8e84;
  margin-top: 1rem;
}

.big-quote {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: #fff;
  border-left: 3px solid var(--rust);
  padding-left: 1.2rem;
  margin-top: auto;
}

.about-main {
  padding: 5rem 5%
}

.about-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.about-card {
  border: 1px solid var(--cream3);
  padding: 2rem;
  position: relative;
  transition: border-color .25s;
}

.about-card:hover {
  border-color: var(--rust)
}

.about-card::before {
  content: attr(data-n);
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 900;
  color: var(--cream3);
  position: absolute;
  top: -1rem;
  right: 1.2rem;
  line-height: 1;
  pointer-events: none;
}

.about-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .7rem;
}

.about-card p {
  font-size: .83rem;
  line-height: 1.8;
  color: var(--ink3)
}

/* ─── ELECTRICALS ─── */
#electricals {
  padding: 6rem 5%;
  background: var(--cream2);
  border-top: 1px solid var(--cream3);
}

.elec-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.elec-top p {
  font-size: .88rem;
  line-height: 1.85;
  color: var(--ink3);
  margin-top: 1rem
}

.elec-table {
  width: 100%;
  border-collapse: collapse
}

.elec-table tr {
  border-bottom: 1px solid var(--cream3)
}

.elec-table tr:first-child {
  border-top: 1px solid var(--cream3)
}

.elec-table tr:hover td {
  background: var(--cream);
  color: var(--ink)
}

.elec-table tr:hover .etag {
  border-color: var(--rust);
  color: var(--rust)
}

.elec-table td {
  padding: 1.2rem 1rem;
  font-size: .85rem;
  color: var(--ink2);
  vertical-align: middle;
  transition: background .15s, color .15s;
}

.elec-table .eicon {
  font-size: 1.3rem;
  width: 50px
}

.elec-table .ename {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  width: 220px
}

.elec-table .edesc {
  color: var(--ink3);
  line-height: 1.6
}

.etag {
  display: inline-block;
  border: 1px solid var(--cream3);
  padding: 3px 10px;
  font-size: .65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink3);
  transition: border-color .15s, color .15s;
}

/* ─── SERVICES ─── */
#services {
  padding: 6rem 5%;
  background: var(--cream);
  border-top: 1px solid var(--cream3);
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--cream3);
}

.svc {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background .2s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.svc:hover {
  background: var(--rust-light)
}

.svc:hover .svc-n {
  color: rgba(196, 66, 26, .15)
}

.svc:hover h3 {
  color: var(--rust)
}

.svc.featured {
  background: var(--ink);
  grid-column: span 1;
}

.svc.featured:hover {
  background: var(--ink2)
}

.svc.featured .svc-n {
  color: rgba(255, 255, 255, .05)
}

.svc.featured h3 {
  color: #fff
}

.svc.featured p {
  color: #8a8078
}

.svc.featured .svc-tag {
  border-color: rgba(255, 255, 255, .15);
  color: #8a8078
}

.svc-n {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(26, 23, 20, .07);
  position: absolute;
  top: .5rem;
  right: 1rem;
  transition: color .2s;
}

.svc h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .8rem;
  transition: color .2s;
  position: relative;
}

.svc p {
  font-size: .82rem;
  line-height: 1.75;
  color: var(--ink3);
  position: relative;
}

.svc-tag {
  display: inline-block;
  border: 1px solid var(--cream3);
  padding: 4px 10px;
  font-size: .63rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-top: 1.2rem;
  position: relative;
}

.svc-arrow {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--rust);
  position: relative;
  transition: transform .2s;
}

.svc:hover .svc-arrow {
  transform: translateX(4px)
}

/* ─── CONTACT ─── */
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--cream3);
}

.contact-left {
  background: var(--rust);
  padding: 6rem 5%;
  color: #fff;
}

.contact-left .section-marker {
  color: rgba(255, 255, 255, .6)
}

.contact-left .section-marker::before {
  background: rgba(255, 255, 255, .6)
}

.contact-left .section-h {
  color: #fff
}

.contact-left p {
  font-size: .88rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, .75);
  margin-top: 1.2rem;
  margin-bottom: 3rem
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.cdl-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start
}

.cdl-ico {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cdl-item strong {
  font-size: .65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 4px;
}

.cdl-item span {
  font-size: .88rem;
  color: #fff
}

.contact-right {
  background: var(--cream2);
  padding: 6rem 5%;
  border-left: 1px solid var(--cream3);
}

.cf-label {
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  display: block;
  margin-bottom: 6px;
}

.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--cream3);
  color: var(--ink);
  font-family: var(--sans);
  font-size: .88rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s;
  margin-bottom: 1.1rem;
}

.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: var(--rust)
}

.cf-textarea {
  resize: vertical;
  min-height: 120px
}

.cf-select option {
  background: var(--cream)
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.cf-btn {
  width: 100%;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  cursor: pointer;
  margin-top: .5rem;
  transition: background .2s;
}

.cf-btn:hover {
  background: var(--rust)
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 5rem 5% 2rem;
  color: #fff;
  border-top: 3px solid var(--rust);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 2rem;
}

.footer-brand .logo-text {
  font-size: 1.5rem;
  color: #fff;
  display: block;
  margin-bottom: 1rem
}

.footer-brand .logo-text em {
  color: var(--rust)
}

.footer-brand p {
  font-size: .82rem;
  line-height: 1.85;
  color: #6b6257;
  max-width: 260px
}

.footer-col h5 {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem
}

.footer-col a {
  text-decoration: none;
  font-size: .82rem;
  color: #6b6257;
  transition: color .2s;
  letter-spacing: .5px;
}

.footer-col a:hover {
  color: var(--rust)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: .75rem;
  color: #3d3830
}

.footer-bottom span {
  color: var(--rust)
}

/* ─── SERVICE PAGES ─── */
.service-hero {
  background: var(--ink);
  padding: 120px 5% 80px;
  text-align: center;
  border-bottom: 1px solid var(--cream3);
}

.service-hero .section-marker {
  justify-content: center;
}

.service-hero .section-h {
  color: #fff;
  margin-bottom: 1.5rem;
}

.service-hero p {
  color: #a09890;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 6rem 5%;
  background: var(--cream);
}

.feature-card {
  background: var(--cream2);
  padding: 3rem 2.5rem;
  border: 1px solid var(--cream3);
  transition: border-color .3s, transform .3s;
}

.feature-card:hover {
  border-color: var(--rust);
  transform: translateY(-5px);
}

.feature-card.featured {
  background: var(--ink);
  border-color: var(--rust);
}

.feature-card.featured h3, 
.feature-card.featured .price {
  color: #fff;
}

.feature-card.featured p {
  color: #a09890;
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--ink);
}

.price {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--rust);
  margin-bottom: 1.5rem;
  display: block;
}

.price span {
  font-size: 1rem;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink3);
}

.feature-card.featured .price span {
  color: #6b6257;
}

.feature-card ul {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-card li {
  font-size: .88rem;
  color: var(--ink3);
  margin-bottom: .8rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.feature-card li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--rust);
  font-size: .75rem;
}

.feature-card.featured li {
  color: #8a8078;
}

.faq-section {
  padding: 6rem 5%;
  background: var(--cream2);
  border-top: 1px solid var(--cream3);
}

.faq-container {
  max-width: 850px;
  margin: 4rem auto 0;
}

.faq-item {
  background: var(--cream);
  border: 1px solid var(--cream3);
  margin-bottom: 1.2rem;
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item:hover {
  border-color: var(--rust);
}

.faq-q {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-a {
  padding: 0 1.5rem 1.5rem;
  font-size: .95rem;
  color: var(--ink3);
  line-height: 1.8;
  display: none;
}

.faq-a.show {
  display: block;
}

.cta-section {
  padding: 7rem 5%;
  text-align: center;
  background: var(--rust);
  color: #fff;
}

.cta-section .section-h {
  color: #fff;
  margin-bottom: 2.5rem;
}

/* ─── RESPONSIVE ─── */
@media(max-width:960px) {
  .hamburger {
    display: flex;
  }

  header nav a:not(.nav-btn) {
    display: none;
  }

  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 60px 5%;
  }

  .hero-right {
    display: none;
  }

  #about {
    grid-template-columns: 1fr;
  }

  .about-sidebar {
    padding: 4rem 5%;
  }

  .big-quote {
    margin-top: 2rem;
  }

  #contact {
    grid-template-columns: 1fr;
  }

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

  .services-layout {
    grid-template-columns: 1fr 1fr;
  }

  .elec-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-hero {
    padding: 100px 5% 60px;
  }
}

@media(max-width:640px) {
  .hero-heading {
    font-size: 3.5rem;
  }

  .section-h {
    font-size: 2.4rem;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .services-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .hero-stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    padding: 4rem 5%;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .faq-q {
    font-size: 1.1rem;
  }
}

/* ─── NEW ABOUT CARD & EMERGENGY CTA ─── */
.about-container-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  background: var(--ink);
  border-radius: 20px;
  padding: 4.5rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--cream2);
  opacity: 0.9;
}

.about-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.btn-white-call {
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid #fff;
}

.btn-white-call:hover {
  background: transparent;
  color: #fff;
}

.about-specialties {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.specialties-title {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
  opacity: 0.9;
}

.specialties-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.specialties-list li {
  font-size: 0.92rem;
  color: var(--cream2);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.specialties-list .checkmark {
  color: #22C55E; /* Vibrant green checkmark like the image */
  font-weight: bold;
  font-size: 1.15rem;
}

/* ─── EMERGENCY CTA BANNER ─── */
#emergency-cta {
  background: #062E22; /* Premium deep forest green/teal background */
  padding: 6rem 5%;
  text-align: center;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.emergency-cta-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.emergency-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
}

.emergency-subtitle {
  font-size: clamp(0.92rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  max-width: 750px;
  line-height: 1.6;
}

.emergency-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.emergency-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 16px 38px;
  border-radius: 50px; /* Pill shape like the image */
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.emergency-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-call {
  background: #fff;
  color: #062E22;
}

.btn-whatsapp {
  background: #25D366; /* Standard WhatsApp Green */
  color: #fff;
}

.phone-icon {
  color: #E11D48; /* Accent color for phone */
  font-size: 1.1rem;
}

.whatsapp-icon {
  font-size: 1.1rem;
}

@media (max-width: 960px) {
  .about-container-card {
    grid-template-columns: 1fr;
    padding: 3rem 2.5rem;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  #emergency-cta {
    padding: 4rem 5%;
  }
  .emergency-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .emergency-btn {
    width: 100%;
    padding: 14px 24px;
  }
}

