/* ==========================================================================
   GSMXpand Unlocking Service — Master Stylesheet
   Single stylesheet for the whole site. All pages link to css/style.css.
   ========================================================================== */

/* ---- Theme tokens ---- */
:root {
  --brand-blue: #0b5ed7;
  --brand-blue-dark: #093b6b;
  --brand-navy: #0b132b;
  --accent-amber: #ffb703;
  --accent-amber-dark: #f59e0b;
  --success-green: #25d366;
  --success-green-dark: #1a7a3a;
  --warn-amber: #f5a623;
  --danger-red: #b91c1c;
  --text-body: #4a5568;
  --text-dark: #1f2937;
  --bg-light: #f5f8fc;
  --bg-page: #ffffff;
  --border-soft: #e7ebf2;
  --shadow-soft: 0 10px 26px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 6px 16px rgba(15, 23, 42, 0.06);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-pill: 999px;
}

/* ---- Reset & base ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
}

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

h2 {
  color: var(--brand-navy);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--brand-blue);
}

.section-title.left {
  text-align: left;
  margin-bottom: 12px;
}

/* ---- Header / navigation ---- */
.site-header {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  gap: 16px;
  box-shadow: var(--shadow-card);
  border-bottom: 1px solid var(--border-soft);
  isolation: isolate;
}

.site-header .logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header .logo img {
  height: 80px;
  background: transparent;
  padding: 6px 8px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.site-header nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-header nav a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  transition: .22s;
  font-size: 16px;
}

.site-header nav a:hover {
  background: rgba(11, 94, 215, 0.06);
}

.site-header .menu-toggle {
  display: none;
  font-size: 30px;
  color: var(--brand-blue);
  cursor: pointer;
  line-height: 1;
  border: 0;
  background: transparent;
  padding: 8px;
  margin: 0;
  width: auto;
}

@media (max-width: 768px) {
  .site-header {
    flex-wrap: nowrap;
    padding: 12px 16px;
  }

  .site-header .logo { min-width: 0; }

  .site-header .logo img {
    display: block;
    max-width: min(70vw, 220px);
    height: 58px;
    object-fit: contain;
  }

  .site-header .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 8px 0;
    box-shadow: var(--shadow-card);
    border-top: 1px solid var(--border-soft);
    z-index: 1100;
  }

  .site-header nav.active { display: flex; }

  .site-header nav a {
    padding: 14px 16px;
    border-radius: 0;
    border-top: 1px solid #f1f5f9;
    text-align: center;
    color: var(--brand-navy);
    display: block;
  }

  .site-header .menu-toggle[aria-expanded="true"] {
    color: #ffffff;
    background: var(--brand-blue);
    border-radius: 8px;
  }
}

/* Generic page headers */
header h1 {
  font-size: 35px;
  margin-bottom: 8px;
  color: var(--brand-navy);
}

header p {
  margin-top: 8px;
  font-size: 18px;
  opacity: 0.95;
}

.hero-intro h1,
.hero-intro p { text-align: center; }

/* ---- Hero banners (home / inner pages / blog) ---- */
.hero {
  background-image: linear-gradient(rgba(4, 35, 70, 0.68), rgba(4, 35, 70, 0.78)), url("../images/drivers.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 70px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 15px;
  color: white;
}

.hero p {
  font-size: 20px;
  margin-bottom: 25px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ru,
.blog-hero {
  background-image: linear-gradient(rgba(4, 35, 70, 0.62), rgba(4, 35, 70, 0.78)), url("../images/tooly.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 260px;
  padding: 60px 20px;
  text-align: center;
}

.page-title {
  background-image: linear-gradient(rgba(4, 35, 70, 0.62), rgba(4, 35, 70, 0.78)), url("../images/toolsie.png.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 260px;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ru h1, .ru h2, .ru p,
.page-title h1, .page-title h2, .page-title p,
.blog-hero h1, .blog-hero h2, .blog-hero p {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.55);
}

.ru h2 { font-size: 40px; margin-bottom: 15px; }
.ru p { font-size: 20px; margin-bottom: 25px; }

.page-title h1 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-title h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 8px; }
.page-title p { font-size: 1.3rem; }

@media (max-width: 700px) {
  .site-header .logo img { height: 64px; }
  .hero, .page-title, .ru { padding: 44px 16px; }
  .hero h2, .ru h2 { font-size: 30px; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--accent-amber);
  color: #111;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.25);
  transition: .3s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--accent-amber-dark); transform: translateY(-2px); }

.btn-secondary {
  background: #fff;
  color: var(--brand-blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.btn-primary {
  background-color: #ffcc00;
  color: #000000;
  text-decoration: none;
  text-align: center;
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-block;
}
.btn-primary:hover { background-color: #e6b800; }

/* ---- Sliding notice banner ---- */
.sliding-banner {
  width: 100%;
  background: #fff7df;
  color: #4a3200;
  overflow: hidden;
  padding: 10px 16px;
  border-bottom: 1px solid #f0d98b;
  position: relative;
  z-index: 1;
}
.sliding-banner span {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0 0 28px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  text-align: center;
  position: relative;
}
.sliding-banner span::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--warn-amber);
  color: #ffffff;
  font-weight: 800;
}
@media (max-width: 700px) {
  .sliding-banner { padding: 9px 14px; }
  .sliding-banner span { padding-left: 26px; font-size: 13px; text-align: left; }
}

/* Generic warning / advisory box (used on Tools & Drivers page) */
.advanced-note {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 16px 20px;
  background: #fff3cd;
  border-left: 5px solid var(--warn-amber);
  border-radius: 6px;
  color: #7a5300;
  font-size: 14.5px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.advanced-note i { margin-top: 2px; color: var(--warn-amber); }

.flag-note {
  font-size: 12.5px;
  color: var(--danger-red);
  font-weight: 600;
  margin: 6px 0;
}

/* ---- Services / cards (homepage) ---- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 1px solid var(--border-soft);
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14); }
.card i { font-size: 45px; color: var(--brand-blue); margin-bottom: 15px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-body); }

/* ---- How It Works ---- */
.how-it-works { padding: 60px 20px; background: var(--bg-light); }
.how-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.how-step {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.how-step .num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 14px;
}
.how-step h3 { font-size: 19px; margin-bottom: 8px; color: var(--brand-navy); }
.how-step p { color: var(--text-body); font-size: 14.5px; line-height: 1.6; }

/* ---- About box / bullet list / proof strip ---- */
.about-box {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 700px) { .about-box { grid-template-columns: 1fr; } }

.bullet-list { display: grid; gap: 10px; }
.bullet-list div { display: flex; align-items: center; gap: 8px; color: var(--text-dark); }
.bullet-list i { color: var(--brand-blue); }

.proof-strip {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.proof-item {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.proof-item strong { display: block; font-size: 22px; color: var(--brand-blue); margin-bottom: 4px; }
.proof-item span { font-size: 13.5px; color: var(--text-body); }

/* ---- Gallery ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.gallery-item {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.gallery img {
  width: 100%;
  border-radius: 12px;
  height: 220px;
  object-fit: cover;
  margin-top: 10px;
}
.phot {
  font-size: 16px;
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ---- Testimonials ---- */
.testimonials { padding: 60px 20px; }
.testi-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.testi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}
.testi-card .stars { color: var(--accent-amber); margin-bottom: 10px; }
.testi-card p { color: var(--text-body); line-height: 1.6; font-style: italic; margin-bottom: 14px; }
.testi-name { font-weight: 700; color: var(--brand-navy); font-size: 14.5px; }
.testi-service { font-size: 12.5px; color: var(--brand-blue); font-weight: 600; }

/* ---- Speed / quick-service strip ---- */
.speed {
  background: whitesmoke;
  color: var(--text-dark);
  padding: 50px 20px;
  text-align: center;
}
.speed h2 { font-size: 35px; margin-bottom: 20px; color: var(--brand-blue); }
.speed p { font-size: 22px; color: var(--text-dark); }

/* ---- FAQ teaser (homepage) ---- */
.faq-teaser {
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
  padding: 50px 20px;
  text-align: center;
  color: white;
}
.faq-teaser h2 { color: white; margin-bottom: 12px; }
.faq-teaser p { color: #dbe7fb; max-width: 600px; margin: 0 auto 20px; }

/* ---- Footer & floating WhatsApp button ---- */
footer {
  background: var(--brand-blue);
  color: white;
  padding: 35px 20px;
  text-align: center;
}
footer a { color: white; margin: 10px; font-size: 26px; }
.footer-links { display: flex; justify-content: center; gap: 12px; margin: 14px 0; }
.footer-links a { color: white; font-size: 22px; }
.footer-note { margin-top: 14px; opacity: 0.9; }

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--success-green);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  color: white;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   Tools & Drivers page
   ========================================================================== */
.category-heading {
  max-width: 1100px;
  margin: 40px auto 10px;
  padding: 0 20px;
  font-size: 22px;
  color: var(--brand-navy);
  border-left: 4px solid var(--brand-blue);
  padding-left: 14px;
}

.downloads-container { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }

.downloads-search {
  max-width: 780px;
  margin: 28px auto;
  padding: 0 20px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.downloads-search input[type="search"] {
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #dbe7f7;
  font-size: 1rem;
  margin: 0;
}
.downloads-search button {
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--brand-blue);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  margin: 0;
  width: auto;
}
.downloads-search button:hover { opacity: .95; }

.downloads-grid {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
@media (max-width: 700px) { .downloads-grid { grid-template-columns: minmax(0, 1fr); } }

.download-card {
  background-color: #fbfcfd;
  border: 1px solid #e6eef8;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.download-card:hover { transform: translateY(-6px); box-shadow: 0 8px 24px rgba(2, 6, 23, 0.08); }
.download-card h3 { font-size: 1.15rem; font-weight: 600; margin: 0 0 10px; }
.download-card p { color: var(--text-body); font-size: 14.5px; line-height: 1.6; margin-bottom: 14px; }

.card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }

.version-badge {
  align-self: flex-start;
  background-color: #f1f5f9;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
}

.type-badge {
  align-self: flex-start;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  color: #fff;
}
.type-badge.tool { background: linear-gradient(90deg, #1a7a3a, #34c759); }
.type-badge.driver { background: linear-gradient(90deg, #1e90ff, #6fb8ff); }

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.meta-item { background-color: #f8fafc; padding: 12px; border-radius: 8px; text-align: center; }
.meta-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.meta-value { font-size: 0.9rem; font-weight: 600; }

.actions { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }

.downloads-search input:focus,
input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(11, 94, 215, 0.3);
  outline-offset: 2px;
}

/* ==========================================================================
   Request Unlock page
   ========================================================================== */
.title { text-align: center; margin-bottom: 35px; color: var(--brand-blue-dark); }

.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.brand {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
}
.brand:hover { transform: translateY(-5px); }
.brand i { font-size: 45px; color: var(--brand-blue); margin-bottom: 10px; }
.brand h3 { font-size: 18px; }

form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}
label { display: block; margin-top: 18px; font-weight: bold; }
input, select, textarea {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}
textarea { height: 120px; resize: none; }
button {
  margin-top: 25px;
  width: 100%;
  padding: 15px;
  border: none;
  background: var(--brand-blue);
  color: white;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
}
button:hover { background: #0846a8; }

.note {
  margin-top: 30px;
  padding: 20px;
  background: #eaf4ff;
  border-left: 5px solid var(--brand-blue);
  border-radius: 8px;
}
.note p { text-align: left; }

.form-intro { max-width: 700px; margin: 0 auto 25px; text-align: center; color: var(--text-body); font-size: 15px; line-height: 1.6; }
.required-hint { color: var(--danger-red); font-weight: 600; }
#unlockForm label { font-weight: 600; color: var(--brand-navy); margin-top: 14px; display: block; font-size: 14.5px; }
#unlockForm .field-hint { font-size: 12.5px; color: #6c757d; margin: 2px 0; }

.next-steps { max-width: 800px; margin: 40px auto 0; }
.next-steps h3 { margin-bottom: 16px; }
.next-steps ol { padding-left: 20px; color: var(--text-body); line-height: 1.9; }
.next-steps ol li strong { color: var(--brand-navy); }

/* ==========================================================================
   Status page
   ========================================================================== */
body.status-page { background: #f5f7fb; }

.container.status-container {
  max-width: 700px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.status-container h2 { color: var(--brand-blue-dark); }

.result {
  display: none;
  margin-top: 30px;
  padding: 20px;
  border-radius: 10px;
  background: #eef7ff;
  border-left: 6px solid var(--brand-blue);
}
.status { font-size: 22px; font-weight: bold; color: var(--success-green-dark); margin-top: 15px; }

.status-intro { max-width: 650px; margin: 0 auto 25px; text-align: center; color: var(--text-body); font-size: 15px; line-height: 1.6; }
.status-intro strong { color: var(--brand-navy); }

.no-ref-note { max-width: 650px; margin: 18px auto 0; text-align: center; font-size: 14px; color: #6c757d; }
.no-ref-note a { color: var(--brand-blue); font-weight: 600; text-decoration: none; }
.no-ref-note a:hover { text-decoration: underline; }

.status-legend { max-width: 800px; margin: 50px auto 0; padding: 0 20px; }
.status-legend h3 { margin-bottom: 18px; text-align: center; }
.legend-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.legend-item {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
}
.legend-item strong { color: var(--brand-navy); font-size: 14.5px; }
.legend-item p { margin-top: 6px; font-size: 13px; color: var(--text-body); line-height: 1.5; }
.legend-item .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 8px; }
.dot-received { background: var(--warn-amber); }
.dot-progress { background: var(--brand-blue); }
.dot-waiting { background: var(--danger-red); }
.dot-done { background: var(--success-green-dark); }

@media (max-width: 700px) {
  .container.status-container { width: calc(100% - 32px); margin: 28px auto; padding: 22px 18px; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.about-blurb { max-width: 800px; margin: 0 auto 35px; text-align: center; color: var(--text-body); font-size: 15px; line-height: 1.7; }
.about-blurb strong { color: var(--brand-navy); }

.contact-cta-strip { max-width: 1100px; margin: 0 auto 20px; text-align: center; }
.contact-cta-strip a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--success-green);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
}

.response-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eaf7ee;
  color: var(--success-green-dark);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  margin-top: 18px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}
.box h2 { margin-bottom: 20px; color: var(--brand-navy); }
.info { margin: 18px 0; font-size: 18px; }
.info i { width: 35px; color: var(--brand-blue); }
.info a { text-decoration: none; color: #333; }

form input, form textarea {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}
form textarea { height: 140px; resize: none; }

.map {
  margin-top: 40px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
}
iframe { width: 100%; height: 350px; border: 0; border-radius: 10px; }
.map-caption { max-width: 700px; margin: 12px auto 0; text-align: center; color: #6c757d; font-size: 13.5px; }

/* ==========================================================================
   Blog page
   ========================================================================== */
.article-list {
  display: grid;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto 40px;
}
.article-list a {
  display: block;
  padding: 14px 18px;
  background: white;
  border-radius: 10px;
  border: 1px solid #ccc;
  color: var(--brand-blue-dark);
  text-decoration: none;
  transition: background 0.2s ease;
}
.article-list a:hover { background: #e6f2ff; }

.article-section { max-width: 800px; margin: 0 auto 40px; }
.article-section h2 { margin-bottom: 14px; }
.article-section h3 { margin: 18px 0 8px; color: var(--brand-navy); }
.article-section p { color: var(--text-body); margin-bottom: 12px; line-height: 1.7; }
.article-section ul { color: var(--text-body); padding-left: 20px; margin-bottom: 12px; line-height: 1.8; }
.article-section code {
  background: #eef2f7;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.95em;
}

.article-cta {
  background: var(--bg-light);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--text-body);
}
.article-cta a { color: var(--brand-blue); font-weight: 700; text-decoration: none; }
.article-cta a:hover { text-decoration: underline; }

.big-cta {
  max-width: 900px;
  margin: 50px auto 0;
  text-align: center;
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
  padding: 45px 20px;
  border-radius: var(--radius-lg);
}
.big-cta h3 { color: white; margin-bottom: 10px; }
.big-cta p { color: #dbe7fb; margin-bottom: 18px; }
.big-cta a {
  display: inline-block;
  background: var(--accent-amber);
  color: #111;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
}
