/*
Theme Name: Zher-Su
Theme URI: https://mytdk.ru
Author: ЖЕР СУ
Author URI: https://mytdk.ru
Description: Корпоративная тема для ТОО «ЖЕР СУ» — гидрогеология и бурение скважин. Совместима с Elementor.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
Text Domain: zhersu
*/

/* ========================================================
   BRAND VARIABLES
   ======================================================== */
:root {
  --navy-deep: #0d1a2e;
  --navy:      #1a2d4a;
  --graphite:  #2a3347;
  --steel:     #6b7a96;
  --cyan:      #40b4d4;
  --cyan-soft: #e0f5fb;
  --white:     #ffffff;
  --bg:        #ffffff;
  --fg:        #0d1a2e;
  --border:    #e5e9f0;
  --muted:     #f4f6fa;
  --muted-fg:  #6b7a96;
  --radius:    0.5rem;
  --shadow-card: 0 4px 24px -8px rgba(13,26,46,0.15);
  --shadow-elevated: 0 20px 60px -20px rgba(13,26,46,0.35);
}

/* ========================================================
   BASE RESET & TYPOGRAPHY
   ======================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--navy-deep);
  margin-top: 0;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: 1.25rem; }

p { margin-top: 0; }

a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--cyan); }

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

/* ========================================================
   LAYOUT UTILITIES
   ======================================================== */
.container-x {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) { .container-x { padding-inline: 2rem; } }

.section-y { padding-block: 5rem; }
@media (min-width: 768px) { .section-y { padding-block: 7rem; } }

.grid-2 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ========================================================
   EYEBROW LABEL
   ======================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* ========================================================
   BUTTONS
   ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--cyan);
  color: var(--navy-deep);
}
.btn-primary:hover { background: #2da0be; color: var(--navy-deep); }

.btn-outline {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-deep); color: var(--white); }

/* ========================================================
   HEADER
   ======================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid rgba(229,233,240,0.6);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header__inner {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.site-header__logo img { height: 2.75rem; width: 2.75rem; object-fit: contain; }
.site-header__logo-name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  line-height: 1;
}
.site-header__logo-sub {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

.site-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1280px) { .site-nav { display: flex; } }

.site-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(13,26,46,0.8);
  transition: all .2s;
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--muted);
  color: var(--navy-deep);
}

.site-header__actions { display: flex; align-items: center; gap: 0.75rem; }
.site-header__phone {
  display: none;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-deep);
}
@media (min-width: 768px) { .site-header__phone { display: block; } }

/* Mobile menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  cursor: pointer;
}
@media (min-width: 1280px) { .mobile-menu-btn { display: none; } }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 0.75rem 0;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(13,26,46,0.8);
  border-radius: var(--radius);
}
.mobile-nav a:hover { background: var(--muted); color: var(--navy-deep); }

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1e3a5a 100%);
  color: var(--white);
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  mix-blend-mode: luminosity;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy-deep), rgba(13,26,46,0.85) 60%, rgba(13,26,46,0.4));
}
.hero__inner {
  position: relative;
  display: grid;
  gap: 3rem;
  padding-block: 5rem;
  align-items: center;
}
@media (min-width: 768px) { .hero__inner { padding-block: 7rem; } }
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1.3fr 1fr; } }

.hero__eyebrow { color: var(--cyan); }
.hero__title {
  margin-top: 1.25rem;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4.5rem);
}
.hero__desc {
  margin-top: 1.5rem;
  max-width: 40rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
}
.hero__btns {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero__badges {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
@media (min-width: 640px) { .hero__badges { grid-template-columns: repeat(4, 1fr); } }
.hero__badge { display: flex; align-items: center; gap: 0.5rem; }
.hero__badge svg { color: var(--cyan); flex-shrink: 0; }

/* ========================================================
   LEAD FORM CARD
   ======================================================== */
.lead-form-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
}
.lead-form-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.lead-form-card p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 1.25rem; }

.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color .2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
}
.form-field select option { background: var(--navy-deep); color: var(--white); }
.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.875rem;
  background: var(--cyan);
  color: var(--navy-deep);
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
}
.form-submit:hover { background: #2da0be; }

/* ========================================================
   STATS BAR
   ======================================================== */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(244,246,250,0.4);
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-block: 3rem;
}
@media (min-width: 768px) { .stats-bar__inner { grid-template-columns: repeat(4, 1fr); } }

.stat__value {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
}
.stat__label { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-fg); }

/* ========================================================
   SERVICES SECTION
   ======================================================== */
.services-section { background: var(--bg); }
.services-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.services-header__text { max-width: 40rem; }
.services-header h2 { margin-top: 0.75rem; }
.services-header__link { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.services-header__link:hover { color: var(--cyan); }

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1.75rem;
  transition: all .25s;
}
.service-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.service-card__num {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--navy-deep);
  color: var(--cyan);
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all .25s;
}
.service-card:hover .service-card__num {
  background: var(--cyan);
  color: var(--navy-deep);
}
.service-card h3 { margin-top: 1.25rem; font-size: 1.1rem; color: var(--navy-deep); }
.service-card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); }

/* ========================================================
   REGIONS SECTION
   ======================================================== */
.regions-section { background: var(--navy-deep); color: var(--white); }
.regions-section .eyebrow { color: var(--cyan); }
.regions-section h2 { color: var(--white); margin-top: 0.75rem; }
.regions-section > .container-x > p { margin-top: 1rem; max-width: 36rem; color: rgba(255,255,255,0.7); }

.regions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .regions-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .regions-grid { grid-template-columns: repeat(4, 1fr); } }

.region-card {
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  padding: 1rem;
  transition: border-color .2s;
}
.region-card:hover { border-color: var(--cyan); }
.region-card__header { display: flex; align-items: center; justify-content: space-between; }
.region-card__name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.region-card__count {
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: rgba(64,180,212,0.15);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cyan);
}
.region-card__focus {
  margin-top: 0.25rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
}

/* ========================================================
   PROJECTS SECTION
   ======================================================== */
.projects-section { background: var(--bg); }

.project-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform .3s;
}
.project-card:hover { transform: translateY(-4px); }

.project-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--muted);
}
.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}
.project-card:hover .project-card__img img { transform: scale(1.05); }

.project-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(13,26,46,0.8);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  backdrop-filter: blur(8px);
}
.project-card__body { padding: 1.5rem; }
.project-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-bottom: 0.75rem;
}
.project-card h3 { font-size: 1.1rem; color: var(--navy-deep); margin-bottom: 0.5rem; }
.project-card p { font-size: 0.875rem; color: var(--muted-fg); }

/* ========================================================
   EQUIPMENT SECTION
   ======================================================== */
.equipment-section { background: rgba(244,246,250,0.4); }

.equipment-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--white);
}
.equipment-card__img { aspect-ratio: 5/3; overflow: hidden; background: var(--white); }
.equipment-card__img img { width: 100%; height: 100%; object-fit: cover; }
.equipment-card__body { padding: 1.25rem; }
.equipment-card__count {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
}
.equipment-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy-deep); margin-top: 0.25rem; }
.equipment-card p { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.5rem; }

/* ========================================================
   WHY US
   ======================================================== */
.whyus-section { background: var(--bg); }

.whyus-card {
  border-left: 3px solid var(--cyan);
  border-radius: 1rem;
  background: var(--muted);
  padding: 1.5rem;
}
.whyus-card h3 { font-size: 1.1rem; color: var(--navy-deep); }
.whyus-card p { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.5rem; }

/* ========================================================
   TESTIMONIALS
   ======================================================== */
.testimonials-section { background: var(--navy-deep); color: var(--white); }
.testimonials-section h2 { color: var(--white); margin-top: 0.75rem; }

.testimonial-card {
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  padding: 1.75rem;
}
.testimonial-card__quote {
  font-size: 1.5rem;
  color: var(--cyan);
  line-height: 1;
}
.testimonial-card__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.testimonial-card__footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.testimonial-card__author { font-weight: 700; color: var(--white); }
.testimonial-card__role {
  margin-top: 0.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
}

/* ========================================================
   CTA SECTION
   ======================================================== */
.cta-section { background: var(--bg); }
.cta-box {
  border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1e3a5a 100%);
  padding: 3rem 2rem;
  overflow: hidden;
}
@media (min-width: 768px) { .cta-box { padding: 4rem 3.5rem; } }
.cta-box__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .cta-box__inner { grid-template-columns: 1.2fr 1fr; } }
.cta-box h2 { color: var(--white); margin-top: 0.75rem; font-size: clamp(1.6rem, 3vw, 2.5rem); }
.cta-box p { margin-top: 1rem; color: rgba(255,255,255,0.75); max-width: 30rem; }

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.8); }
.site-footer__inner {
  display: grid;
  gap: 2.5rem;
  padding-block: 4rem;
}
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand__name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand__desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 26rem;
}
.footer-contacts { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.footer-contacts a:hover { color: var(--white); }
.footer-contacts svg { color: var(--cyan); flex-shrink: 0; }

.footer-col__title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-col ul a:hover { color: var(--white); }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ========================================================
   FLOATING CONTACTS
   ======================================================== */
.floating-contacts {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 200;
}
.floating-btn {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-elevated);
  transition: transform .2s;
  text-decoration: none;
}
.floating-btn:hover { transform: scale(1.1); }
.floating-btn--phone { background: var(--cyan); color: var(--navy-deep); }
.floating-btn--wa { background: #25D366; color: white; }
.floating-btn--ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: white; }

/* ========================================================
   INNER PAGES — GENERAL
   ======================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding-block: 4rem;
}
.page-hero h1 { color: var(--white); }
.page-hero p { margin-top: 1rem; color: rgba(255,255,255,0.75); max-width: 40rem; }

/* ========================================================
   ARTICLES LIST
   ======================================================== */
.article-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1.75rem;
  transition: all .25s;
}
.article-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.article-card__meta { font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 0.75rem; }
.article-card h3 { font-size: 1.1rem; color: var(--navy-deep); }
.article-card p { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.5rem; }
.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}
.article-card__link:hover { color: var(--cyan); }

/* ========================================================
   CONTACT FORM PAGE
   ======================================================== */
.contact-page { background: var(--bg); }
.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }

.contact-info h3 { font-size: 1.5rem; color: var(--navy-deep); }
.contact-info p { margin-top: 0.5rem; color: var(--muted-fg); }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--muted);
  margin-bottom: 0.75rem;
}
.contact-detail svg { color: var(--cyan); }
.contact-detail__label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-fg); }
.contact-detail__value { font-size: 0.875rem; font-weight: 600; color: var(--navy-deep); }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}
.contact-form-box h3 { font-size: 1.25rem; color: var(--navy-deep); margin-bottom: 1.5rem; }
.contact-form-box .form-field label { color: var(--muted-fg); }
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
}
.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder { color: var(--muted-fg); }
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus { border-color: var(--cyan); }
.contact-form-box .form-submit { background: var(--navy-deep); color: var(--white); }
.contact-form-box .form-submit:hover { background: var(--navy); }

/* ========================================================
   ELEMENTOR OVERRIDES
   ======================================================== */
.elementor-section { padding: 0 !important; }
.elementor-widget-wrap { padding: 0 !important; }
