/* ============================================
   JharProperty — Landing Page Styles
   ============================================ */

:root {
  /* Brand */
  --primary: #1e4e8c;
  --primary-dark: #163c6e;
  --primary-light: #3a6bae;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-gray: #f8fafc;
  --bg-blue-tint: #f3f7fc;

  /* Accents */
  --success: #2e7d32;
  --success-light: #e7f3e8;
  --orange: #f59e0b;
  --orange-light: #fef3e0;

  /* Text */
  --text-dark: #1f2937;
  --text-medium: #6b7280;
  --text-on-primary: #ffffff;

  /* Shape */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(30, 78, 140, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 78, 140, 0.1);
  --shadow-lg: 0 16px 40px rgba(30, 78, 140, 0.14);

  --font-display: "Manrope", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;

  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text-dark);
  margin: 0;
  line-height: 1.2;
  font-weight: 800;
}

p {
  margin: 0;
  color: var(--text-medium);
}

button {
  font-family: inherit;
  cursor: pointer;
}

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--primary);
  border: 1.5px solid #d7e3f3;
}
.btn-secondary:hover {
  background: var(--bg-blue-tint);
  border-color: var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 10px 20px;
}
.btn-ghost:hover {
  background: var(--bg-blue-tint);
}

.btn-block {
  width: 100%;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
    url("media/plot.jpeg");
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #edf2f9;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: visible;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--text-dark);
}
.logo-accent {
  color: var(--primary);
}
.footer-logo-text {
  color: #fff;
}
.footer-logo-text .logo-accent {
  color: var(--orange);
}

.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-medium);
  transition: color 0.15s;
}
.main-nav a:hover {
  color: var(--primary);
}

.header-call {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}
@media (max-width: 560px) {
  .header-call span {
    display: none;
  }
  .header-call {
    padding: 10px 12px;
  }
}

/* ============ HERO ============ */
.hero {
  background:
    linear-gradient(rgba(30, 78, 140, 0.5), rgba(30, 78, 140, 0.5)),
    url("media/plot.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-content {
  text-align: center;
  max-width: 700px;
  color: #fff;
}
.eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 70px;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: #ffffff;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}
.hero-trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.hero-trustline li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.hero-visual {
  position: relative;
}
.hero-image-wrap {
  position: relative;
}
.hero-image-ph {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
}
.hero-badge-label {
  font-size: 12px;
  color: var(--text-medium);
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero {
    padding: 80px 0;
    min-height: 500px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-badge {
    left: 12px;
    bottom: -16px;
    padding: 10px 16px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 60px 0;
    min-height: 400px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero-sub {
    font-size: 15.5px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-trustline {
    gap: 16px;
  }
}

/* ============ LEAD FORM CARD (hero) ============ */
.lead-card-section {
  padding: 36px 0 64px;
}
.lead-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid #eef3fa;
  padding: 36px;
  max-width: 900px;
  margin: 0 auto;
}
.lead-card-head {
  text-align: center;
  margin-bottom: 24px;
}
.lead-card-head h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.lead-card-head p {
  font-size: 14.5px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}
.lead-form[hidden] {
  display: none;
}
.lead-card .lead-form {
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
}
.lead-card .lead-form .btn-block {
  grid-column: span 4;
}
.lead-card .form-microcopy {
  grid-column: span 4;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-row label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}
.form-row input,
.form-row select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #e2e8f0;
  background: var(--bg-gray);
  color: var(--text-dark);
  width: 100%;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.form-row input::placeholder {
  color: #9ca7b5;
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%236B7280' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-microcopy {
  font-size: 12.5px;
  text-align: center;
  color: var(--text-medium);
  margin-top: -4px;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 0;
}
.form-success[hidden] {
  display: none;
}
.form-success h3 {
  font-size: 20px;
  color: var(--success);
}
.form-success p {
  max-width: 380px;
}

@media (max-width: 760px) {
  .lead-card {
    padding: 26px 20px;
    border-radius: var(--radius-md);
    margin-top: 0;
  }
  .lead-card .lead-form {
    grid-template-columns: 1fr;
  }
  .lead-card .lead-form .btn-block,
  .lead-card .form-microcopy {
    grid-column: span 1;
  }
}

/* ============ SECTION SHELL ============ */
.section {
  padding: 72px 0;
}
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}
.section-head h2 {
  font-size: 30px;
  margin-bottom: 12px;
}
.section-head p {
  font-size: 15.5px;
}
.section-head.light h2,
.section-head.light p {
  color: #fff;
}
.section-head.light p {
  opacity: 0.85;
}

@media (max-width: 600px) {
  .section {
    padding: 52px 0;
  }
  .section-head h2 {
    font-size: 25px;
  }
  .section-head {
    margin-bottom: 32px;
  }
}

/* ============ TRUST HIGHLIGHTS ============ */
.trust-section {
  background: var(--bg-gray);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 26px 22px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.trust-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 12px;
}
.trust-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.trust-card p {
  font-size: 14px;
}

@media (max-width: 860px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ ABOUT ============ */
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-image img,
.about-image svg {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
}
.about-text {
  font-size: 15.5px;
  margin-bottom: 28px;
}
.about-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--primary);
}
.stat-label {
  font-size: 13px;
  color: var(--text-medium);
  font-weight: 600;
}

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

/* ============ FEATURES ============ */
.features-section {
  background: var(--bg-blue-tint);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 16.5px;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 14px;
}

@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.location-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  align-items: center;
}
.location-list h3 {
  font-size: 19px;
  margin-bottom: 18px;
}
.location-items {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 22px;
}
.location-items li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14.5px;
}
.loc-name {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.loc-dots {
  flex: 1;
  border-bottom: 1.5px dotted #d1d9e3;
  height: 0;
  transform: translateY(-4px);
}
.loc-dist {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.maps-btn {
  display: inline-flex;
}
.location-map {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.location-map svg {
  border-radius: var(--radius-md);
  width: 100%;
}
.location-map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 860px) {
  .location-block {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .location-map {
    order: -1;
  }
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.gallery-item svg {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-item figcaption {
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-medium);
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ REVIEWS ============ */
.reviews-section {
  background: var(--bg-gray);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-text {
  font-size: 14.5px;
  color: var(--text-dark);
  margin-bottom: 20px;
  min-height: 90px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar-ph {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.author-name {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}
.author-loc {
  display: block;
  font-size: 12.5px;
  color: var(--text-medium);
}

@media (max-width: 860px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-text {
    min-height: auto;
  }
}

/* ============ LEAD FORM (full) ============ */
.leadform-section {
  background: var(--primary);
  background-image: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
}
.leadform-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.leadform-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  max-width: 640px;
  width: 100%;
}
.leadform-card .lead-form {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
  .leadform-card {
    padding: 26px 20px;
  }
  .leadform-card .lead-form {
    grid-template-columns: 1fr;
  }
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1.5px solid #edf2f9;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--text-dark);
  text-align: left;
}
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-blue-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange-light);
  color: var(--orange);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.25s ease,
    padding 0.25s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 22px 20px;
}
.faq-answer p {
  font-size: 14.5px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #16243b;
  color: #fff;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 0 36px;
}
.footer-brand .logo {
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 14px;
  color: #9fb0c7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col a {
  font-size: 14px;
  color: #9fb0c7;
  transition: color 0.15s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-address {
  font-size: 14px;
  color: #9fb0c7;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-ph {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.15s;
}
.social-ph:hover {
  background: var(--orange);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}
.footer-bottom p {
  font-size: 13px;
  color: #8195ae;
  text-align: center;
}

/* Center all footer content */
.site-footer .footer-inner {
  text-align: center;
}
.footer-brand .logo {
  margin: 0 auto 14px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
}

@media (max-width: 860px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 40px 0 24px;
    gap: 28px;
  }
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 84px;
    right: 16px;
  }
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: #fff;
  border-top: 1px solid #e5eaf0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  padding: 10px 14px;
  gap: 10px;
}
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
}
.sticky-call {
  background: var(--bg-blue-tint);
  color: var(--primary);
  flex: 0 0 84px;
}
.sticky-enquire {
  background: var(--orange);
  color: #fff;
}

@media (max-width: 600px) {
  .sticky-mobile-cta {
    display: flex;
  }
  body {
    padding-bottom: 72px;
  }
}

/* ============ ABOUT US ============ */
.about-us-section {
  background: var(--bg-blue-tint);
}

/* ============ POPUP MODAL ============ */
.popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.popup-modal.active {
  display: flex;
}
.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.popup-content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 500px;
  animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.popup-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  padding: 8px;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition:
    background 0.15s,
    color 0.15s;
  z-index: 11;
}
.popup-close:hover {
  background: var(--bg-gray);
  color: var(--primary);
}
.popup-close:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.popup-head {
  margin-bottom: 24px;
  text-align: center;
}
.popup-head h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.popup-head p {
  font-size: 14.5px;
  color: var(--text-medium);
}
.popup-modal .lead-form {
  grid-template-columns: 1fr;
}
.popup-modal .form-success {
  text-align: center;
}

@media (max-width: 600px) {
  .popup-card {
    padding: 26px 20px;
  }
  .popup-close {
    top: 12px;
    right: 12px;
  }
  .popup-head h2 {
    font-size: 20px;
  }
}

/* ============ FOCUS VISIBILITY ============ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* ============ FOOTER ============ */

.site-footer {
  background: #10284d;
  color: #fff;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  text-align: center;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.footer-brand,
.footer-col {
  max-width: 320px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-address,
.footer-tagline {
  margin-top: 15px;
  line-height: 1.7;
}
