:root {
  --deep: #0a1628;
  --navy: #0f2140;
  --teal: #00c9a7;
  --teal-dark: #00a88a;
  --gold: #f5a623;
  --gold-light: #ffd980;
  --white: #ffffff;
  --off-white: #f0f4f8;
  --light-gray: #e2e8f0;
  --text: #1e293b;
  --text-light: #64748b;
  --text-on-dark: #c8d6e5;
  --orange: #ff6b35;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  padding: 0 24px;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 22px;
  color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text-on-dark); font-size: 15px; font-weight: 500;
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: var(--deep) !important;
  padding: 10px 24px; border-radius: 50px;
  font-weight: 600; font-size: 14px;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.hamburger span {
  width: 26px; height: 2px; background: var(--white);
  transition: 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--deep); padding: 24px;
  flex-direction: column; gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  color: var(--white); font-size: 16px; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(15,33,64,0.88) 50%, rgba(0,201,167,0.15) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(0,201,167,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(245,166,35,0.15) 0%, transparent 50%),
    var(--deep);
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,201,167,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,201,167,0.12); border: 1px solid rgba(0,201,167,0.25);
  color: var(--teal); font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1.5px;
  animation: fadeDown 0.6s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero p {
  color: var(--text-on-dark); font-size: 18px;
  margin-bottom: 32px; max-width: 540px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}
.btn-primary {
  background: var(--teal);
  color: var(--deep);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,201,167,0.3);
}
.btn-secondary {
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--teal);
  background: rgba(0,201,167,0.08);
}
.hero-visual {
  position: relative;
  animation: fadeUp 1s ease 0.3s both;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  color: var(--text-on-dark);
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-phone {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--off-white);
  padding: 32px 24px;
  border-bottom: 1px solid var(--light-gray);
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
  text-align: center;
}
.trust-item {
  font-size: 14px; color: var(--text-light);
  font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.trust-item svg { flex-shrink: 0; }

/* ========== SECTIONS COMMON ========== */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 13px; font-weight: 700;
  color: var(--teal); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px; color: var(--text-light);
  max-width: 640px; margin-bottom: 48px;
}
.section-dark {
  background: var(--deep);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: var(--text-on-dark); }

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 36px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform 0.35s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0,201,167,0.1), rgba(245,166,35,0.1));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px; color: var(--text-light);
  line-height: 1.7;
}

/* ========== WHY HOMESTEAD ========== */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.why-text h2 { margin-bottom: 20px; }
.why-features { margin-top: 32px; }
.why-feature {
  display: flex; gap: 16px; margin-bottom: 24px;
}
.why-feature-icon {
  width: 44px; height: 44px;
  background: rgba(0,201,167,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-feature h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 700;
  margin-bottom: 4px;
}
.why-feature p {
  font-size: 15px; color: var(--text-light);
}
.why-visual {
  position: relative;
}
.why-card-main {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  border-radius: 20px;
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-card-main::after {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,201,167,0.15), transparent);
  border-radius: 50%;
}
.why-card-main h3 {
  font-size: 28px; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.why-card-main p {
  color: var(--text-on-dark);
  font-size: 16px;
  position: relative; z-index: 1;
  margin-bottom: 24px;
}
.why-card-stat {
  display: flex; gap: 32px;
  position: relative; z-index: 1;
}
.wcs-item {
  text-align: center;
}
.wcs-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 800;
  color: var(--teal);
}
.wcs-label {
  font-size: 12px;
  color: var(--text-on-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== PROCESS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  position: relative;
  transition: all 0.3s;
}
.process-step:hover {
  border-color: var(--teal);
  background: rgba(0,201,167,0.05);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 800;
  color: rgba(0,201,167,0.15);
  display: block; margin-bottom: 16px;
}
.process-step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-on-dark);
}

/* ========== AREAS WE SERVE ========== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.area-tag {
  background: rgba(0,201,167,0.06);
  border: 1px solid rgba(0,201,167,0.15);
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  text-align: center;
  transition: all 0.3s;
}
.area-tag:hover {
  background: var(--teal);
  color: var(--deep);
  border-color: var(--teal);
  transform: translateY(-2px);
}
.area-tag strong {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 2px;
}
.area-tag:hover strong { color: var(--deep); opacity: 0.7; }

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--teal);
  opacity: 0.2;
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 15px;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.testimonial-role {
  font-size: 13px;
  color: var(--text-light);
}

/* ========== FAQ ========== */
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.5;
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  font-size: 24px;
  color: var(--teal);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 300px; }

/* ========== CTA ========== */
.cta-section {
  background: linear-gradient(135deg, rgba(5,10,20,0.96) 0%, rgba(10,20,40,0.95) 60%, rgba(0,100,80,0.40) 100%);
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,201,167,0.08), transparent 70%);
  border-radius: 50%;
}
.cta-section h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  text-shadow: 0 3px 16px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
}
.cta-section p {
  color: var(--white);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 1px 3px rgba(0,0,0,0.9);
}
.cta-phone {
  font-size: 32px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 24px;
  position: relative;
  font-family: 'DM Sans', sans-serif;
  text-shadow: 0 3px 16px rgba(0,0,0,0.7);
}
.cta-phone a { color: var(--teal); }
.cta-phone a:hover { color: var(--gold); }
.cta-btns {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  position: relative;
}

/* ========== FOOTER ========== */
footer {
  background: var(--deep);
  color: var(--text-on-dark);
  padding: 60px 24px 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p {
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.7;
  color: var(--text-on-dark);
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-on-dark);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-on-dark);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-on-dark);
  transition: all 0.3s;
  font-size: 14px;
}
.footer-socials a:hover {
  background: var(--teal);
  color: var(--deep);
}

/* ========== SEO CONTENT ========== */
.seo-content {
  background: var(--off-white);
}
.seo-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.seo-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}
.seo-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 16px;
  max-width: 900px;
}

/* ========== IMAGE STYLES ========== */
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -36px -36px 20px -36px;
  width: calc(100% + 72px);
}
.seo-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.seo-img-row img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-num { font-size: 32px; }
  .cta-phone { font-size: 24px; }
  .seo-img-row { grid-template-columns: 1fr; }
  .seo-img-row img { height: 220px; }
  .service-img { height: 180px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; justify-content: center; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { gap: 24px; }
}
/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, rgba(10,22,40,0.94) 0%, rgba(15,33,64,0.90) 50%, rgba(0,201,167,0.15) 100%);
  padding: 140px 24px 80px;
  text-align: center;
}
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  color: var(--text-on-dark);
  font-size: 18px;
  margin-bottom: 28px;
}

/* ========== SERVICE DETAIL ========== */
.service-detail {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--light-gray);
}
.service-detail:last-child { border-bottom: none; }
.service-detail img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}
.service-detail h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.service-detail p { font-size: 16px; color: var(--text-light); margin-bottom: 12px; }

/* ========== CONTENT WITH SIDEBAR ========== */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.main-content h2 {
  font-size: 28px;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--text);
}
.main-content h2:first-child { margin-top: 0; }
.main-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
}
.main-content p { font-size: 16px; color: var(--text-light); margin-bottom: 14px; line-height: 1.8; }
.main-content p strong { color: var(--text); }
.content-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 24px 0;
  box-shadow: var(--shadow);
}

/* ========== SIDEBAR ========== */
.sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.sidebar-card p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; }
.sidebar-card a {
  display: block;
  font-size: 14px;
  color: var(--teal);
  padding: 6px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: color 0.2s;
}
.sidebar-card a:last-child { border-bottom: none; }
.sidebar-card a:hover { color: var(--gold); }

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-grid h2 { font-size: 32px; margin-bottom: 16px; }
.about-grid h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
}
.about-grid p { font-size: 16px; color: var(--text-light); margin-bottom: 12px; }
.about-grid p strong { color: var(--text); }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
  text-align: center;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-grid h2 { font-size: 32px; margin-bottom: 16px; }
.contact-grid p { font-size: 16px; color: var(--text-light); margin-bottom: 16px; }
.contact-info-item {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-gray);
}
.contact-info-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-card p { font-size: 15px; color: var(--text-light); margin-bottom: 20px; }

/* ========== BLOG GRID ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-tag {
  display: inline-block;
  background: rgba(0,201,167,0.1);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  width: fit-content;
}
.blog-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.4;
}
.blog-card p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; flex: 1; }
.blog-read {
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
}

/* ========== BLOG ARTICLE ========== */
.blog-article { padding: 120px 24px 60px; }
.blog-header { margin-bottom: 40px; }
.blog-header h1 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text);
  margin-bottom: 12px;
}
.blog-meta {
  font-size: 14px;
  color: var(--text-light);
}

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 1024px) {
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article { padding: 100px 20px 40px; }
  .page-hero { padding: 120px 20px 60px; }
}
