/* ===========================================================
   IMSVINA — WordPress Theme Stylesheet
   Style: Professional / Trustworthy (Navy & Blue)
   =========================================================== */

:root {
  --navy: #10294d;
  --navy-2: #16345f;
  --blue: #1d63c9;
  --blue-light: #eaf2fd;
  --gold: #d4a437;
  --gold-light: #fdf6e6;
  --text: #24303f;
  --text-muted: #64748b;
  --border: #e3e8ef;
  --bg-soft: #f6f8fb;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(16, 41, 77, 0.08);
  --shadow-lg: 0 20px 50px rgba(16, 41, 77, 0.16);
  --container: 1180px;
  --font: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px);
}

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

.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section--navy .eyebrow { color: var(--gold); background: rgba(212, 164, 55, 0.14); }

.section-head { max-width: 700px; margin: 0 auto 52px; text-align: center; }
.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section--navy .section-head h2 { color: #fff; }
.section-head p { color: var(--text-muted); font-size: 16px; }
.section--navy .section-head p { color: #c7d3e6; }

h1, h2, h3, h4 { color: var(--navy); font-weight: 800; letter-spacing: -0.01em; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--navy); }
.btn--primary:hover { background: #c39225; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212,164,55,0.35); }
.btn--outline { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn--outline:hover { background: rgba(255,255,255,0.12); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 20px; font-size: 13px; }

/* ---------------- Top bar ---------------- */
.topbar { background: var(--navy); color: #cbd8ec; font-size: 13px; }
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; gap: 8px;
}
.topbar__info { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar__info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__info i { color: var(--gold); }
.topbar__social { display: flex; gap: 14px; }
.topbar__social a {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.topbar__social a:hover { background: var(--gold); color: var(--navy); }

/* ---------------- Header / Nav ---------------- */
.header {
  background: #fff; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(16,41,77,0.04);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 18px; flex-shrink: 0;
  border: 3px solid var(--gold); overflow: hidden;
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.brand__text { line-height: 1.25; }
.brand__text strong { display: block; font-size: 19px; color: var(--navy); font-weight: 800; letter-spacing: 0.02em; }
.brand__text span { display: block; font-size: 11.5px; color: var(--text-muted); letter-spacing: 0.03em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav ul { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 10px 15px; font-weight: 600; font-size: 14.5px; color: var(--text);
  border-radius: 6px; position: relative; display: inline-block;
}
.nav a:hover, .nav .current-menu-item > a, .nav a.active { color: var(--blue); background: var(--blue-light); }

.header__cta { display: flex; align-items: center; gap: 14px; }
.header__phone { display: flex; align-items: center; gap: 10px; }
.header__phone-icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.header__phone-text { line-height: 1.2; }
.header__phone-text small { display: block; font-size: 11px; color: var(--text-muted); }
.header__phone-text strong { display: block; font-size: 16px; color: var(--navy); }

.nav-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--navy); cursor: pointer; }

/* ---------------- Hero ---------------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, #0c1e39 100%);
  color: #fff; position: relative; overflow: hidden; padding: 90px 0 110px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(212,164,55,0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(29,99,201,0.35) 0%, transparent 40%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 600;
  margin-bottom: 22px; color: #f0d693;
}
.hero h1 { font-size: 44px; line-height: 1.2; color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 16.5px; color: #c7d3e6; margin-bottom: 32px; max-width: 520px; }
.hero__actions { display: flex; gap: 16px; margin-bottom: 44px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero__stats div strong { display: block; font-size: 27px; color: var(--gold); font-weight: 800; }
.hero__stats div span { font-size: 13px; color: #aebbd2; }

.hero__art {
  position: relative; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px; padding: 34px; backdrop-filter: blur(6px);
}
.hero__art-badge {
  display: flex; align-items: center; gap: 14px; background: #fff; color: var(--navy);
  border-radius: 12px; padding: 16px 18px; margin-bottom: 14px; box-shadow: var(--shadow-lg);
}
.hero__art-badge i { font-size: 22px; color: var(--blue); }
.hero__art-badge strong { display: block; font-size: 14px; }
.hero__art-badge span { font-size: 12px; color: var(--text-muted); }
.hero__art-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero__art-grid .mini {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 16px; text-align: center;
}
.hero__art-grid .mini i { font-size: 22px; color: var(--gold); margin-bottom: 8px; }
.hero__art-grid .mini span { font-size: 12.5px; color: #dbe4f2; font-weight: 600; }

/* ---------------- Trust / partner strip ---------------- */
.trust { background: #fff; border-bottom: 1px solid var(--border); padding: 30px 0; }
.trust .container { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; justify-content: space-between; }
.trust__label { font-size: 12.5px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.trust__logos { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; opacity: 0.75; }
.trust__logos span { font-weight: 800; font-size: 17px; color: var(--navy); letter-spacing: 0.02em; }

/* ---------------- Cards: services ---------------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card-service {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: all 0.25s ease; position: relative;
}
.card-service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-service__icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px;
}
.card-service h3 { font-size: 17.5px; margin-bottom: 10px; }
.card-service p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.card-service__link { font-size: 13.5px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.card-service__link i { font-size: 11px; transition: transform 0.2s; }
.card-service:hover .card-service__link i { transform: translateX(4px); }

.card-service:nth-child(4n+2) .card-service__icon { background: var(--gold-light); color: var(--gold); }
.card-service:nth-child(4n+3) .card-service__icon { background: #e9f7ef; color: #1e8449; }
.card-service:nth-child(4n+4) .card-service__icon { background: #fdeeee; color: #c0392b; }

/* ---------------- Why us ---------------- */
.why { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.why__visual {
  background: linear-gradient(160deg, var(--blue-light), #fff); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px; position: relative;
}
.why__visual .stat-box { background: #fff; border-radius: 14px; box-shadow: var(--shadow); padding: 22px; text-align: center; }
.why__visual .stat-box strong { display: block; font-size: 30px; color: var(--navy); }
.why__visual .stat-box span { font-size: 12.5px; color: var(--text-muted); }
.why__visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.why__list { display: flex; flex-direction: column; gap: 22px; }
.why__item { display: flex; gap: 18px; }
.why__item .icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.why__item h4 { font-size: 16.5px; margin-bottom: 6px; }
.why__item p { font-size: 14px; color: var(--text-muted); }

/* ---------------- Process ---------------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process__step { position: relative; padding: 0 20px; text-align: center; }
.process__step::after {
  content: ""; position: absolute; top: 30px; right: -20%; width: 40%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 14px);
}
.process__step:last-child::after { display: none; }
.process__num {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px; background: #fff;
  border: 2px solid var(--blue); color: var(--blue); font-weight: 800; font-size: 22px;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.process__step h4 { font-size: 15.5px; margin-bottom: 8px; }
.process__step p { font-size: 13.5px; color: var(--text-muted); }

/* ---------------- Testimonials ---------------- */
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; }
.testi-card .stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: 14.5px; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testi-card__who { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.testi-card__who strong { display: block; font-size: 14px; }
.testi-card__who span { font-size: 12.5px; color: var(--text-muted); }

/* ---------------- News ---------------- */
.news-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.news-card__img {
  height: 170px; background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); font-size: 34px;
  overflow: hidden;
}
.news-card__img img { width: 100%; height: 100%; object-fit: cover; }
.news-card__body { padding: 22px; }
.news-card__date { font-size: 12px; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; display: block; }
.news-card h3 { font-size: 16px; margin-bottom: 10px; line-height: 1.4; }
.news-card h3 a:hover { color: var(--blue); }
.news-card p { font-size: 13.5px; color: var(--text-muted); }

/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy), var(--blue)); border-radius: 20px; padding: 54px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #fff; flex-wrap: wrap;
}
.cta-banner h3 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.cta-banner p { color: #d3ddef; font-size: 14.5px; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------- Page header (inner pages) ---------------- */
.page-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff;
  padding: 60px 0 46px; position: relative; overflow: hidden;
}
.page-header::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(212,164,55,0.18) 0%, transparent 40%);
}
.page-header .container { position: relative; }
.page-header h1 { color: #fff; font-size: 34px; margin-bottom: 12px; }
.breadcrumb { display: flex; gap: 8px; font-size: 13.5px; color: #b9c6de; }
.breadcrumb a { color: #b9c6de; font-weight: 600; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: #5c6d8a; }
.breadcrumb .current { color: var(--gold); }

/* ---------------- Footer ---------------- */
.footer { background: #0c1c34; color: #a9b6cc; padding: 70px 0 0; }
.footer .container { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 20px; letter-spacing: 0.02em; }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer p { font-size: 13.8px; line-height: 1.75; color: #93a2bc; }
.footer ul li { margin-bottom: 11px; font-size: 13.8px; }
.footer ul li a:hover { color: var(--gold); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact i { color: var(--gold); margin-top: 3px; width: 14px; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}
.footer__social a:hover { background: var(--gold); color: var(--navy); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; font-size: 12.8px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---------------- Floating buttons ---------------- */
.floating { position: fixed; right: 22px; bottom: 22px; z-index: 200; display: flex; flex-direction: column; gap: 12px; }
.floating a {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 21px; box-shadow: var(--shadow-lg);
}
.floating .fb-zalo { background: #0068ff; }
.floating .fb-phone { background: #1e8449; animation: pulse 1.8s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(30,132,73,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(30,132,73,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,132,73,0); }
}

/* ---------------- Forms ---------------- */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font); font-size: 14.5px; color: var(--text); background: var(--bg-soft); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-msg { padding: 14px 18px; border-radius: 8px; font-size: 14px; margin-bottom: 20px; font-weight: 600; }
.form-msg--success { background: #e9f7ef; color: #1e8449; border: 1px solid #bfe6cf; }
.form-msg--error { background: #fdeeee; color: #c0392b; border: 1px solid #f4c9c4; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 50px; }
.contact-info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; }
.contact-info-card .icon {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 16px; background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 21px;
}
.contact-info-card h4 { font-size: 15.5px; margin-bottom: 8px; }
.contact-info-card p { font-size: 13.8px; color: var(--text-muted); }

.map-embed { width: 100%; height: 380px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------------- About page specifics ---------------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-split__visual {
  background: linear-gradient(160deg, var(--navy), var(--blue)); border-radius: 20px; padding: 40px; color: #fff;
  position: relative; overflow: hidden;
}
.about-split__visual::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 90%, rgba(212,164,55,0.25), transparent 45%);
}
.about-split__visual .quote-icon { font-size: 40px; color: var(--gold); margin-bottom: 18px; }
.about-split__visual blockquote { font-size: 19px; line-height: 1.6; margin-bottom: 24px; position: relative; }
.about-split__visual .sig { font-weight: 700; color: var(--gold); }

.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.timeline__item { position: relative; padding-bottom: 34px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ""; position: absolute; left: -34px; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue);
}
.timeline__item h4 { font-size: 15.5px; margin-bottom: 6px; }
.timeline__item span.year { color: var(--blue); font-weight: 800; font-size: 13px; }
.timeline__item p { font-size: 13.8px; color: var(--text-muted); margin-top: 6px; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { text-align: center; padding: 26px 18px; }
.value-card .icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 25px;
}
.value-card h4 { font-size: 15.5px; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--text-muted); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-align: center; }
.team-card__photo {
  height: 190px; background: linear-gradient(160deg, var(--blue-light), #dbe6f7);
  display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 44px; overflow: hidden;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 18px; }
.team-card h4 { font-size: 15px; margin-bottom: 4px; }
.team-card span { font-size: 12.5px; color: var(--text-muted); }

/* ---------------- Service page specifics ---------------- */
.service-cat { display: flex; gap: 26px; padding: 30px 0; border-bottom: 1px solid var(--border); }
.service-cat:last-child { border-bottom: none; }
.service-cat__icon {
  width: 64px; height: 64px; border-radius: 16px; flex-shrink: 0; background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.service-cat h3 { font-size: 19px; margin-bottom: 8px; }
.service-cat p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list span {
  background: var(--bg-soft); border: 1px solid var(--border); color: var(--text);
  font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 999px;
}

/* ---------------- Blog / Tin tức ---------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px;
  border-radius: 8px; border: 1px solid var(--border); font-size: 14px; font-weight: 600; color: var(--text);
}
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination a:hover { border-color: var(--blue); color: var(--blue); }

.single-post { max-width: 820px; margin: 0 auto; }
.single-post__meta { display: flex; gap: 16px; color: var(--text-muted); font-size: 13.5px; margin-bottom: 24px; flex-wrap: wrap; }
.single-post__meta span { display: inline-flex; align-items: center; gap: 6px; }
.single-post__thumb { border-radius: 16px; overflow: hidden; margin-bottom: 34px; }
.single-post__content { font-size: 15.5px; color: var(--text); }
.single-post__content p { margin-bottom: 18px; }
.single-post__content h2, .single-post__content h3 { margin: 30px 0 14px; }
.single-post__content ul, .single-post__content ol { margin: 0 0 18px 22px; }
.single-post__content img { border-radius: 12px; margin: 20px 0; }
.single-post__content a { color: var(--blue); text-decoration: underline; }

/* ---------------- Utilities ---------------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.alignwide, .alignfull { max-width: 100%; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 10px 24px 20px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav.nav--open { display: flex; }
  .nav ul { flex-direction: column; width: 100%; align-items: stretch; }
  .nav a { display: block; }
  .nav-toggle { display: block; }
  .header__phone-text { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .grid-4, .process, .value-grid, .team-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .why, .about-split { grid-template-columns: 1fr; }
  .footer .container { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: 1fr; }
  .process__step::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .section { padding: 56px 0; }
  .hero h1 { font-size: 30px; }
  .grid-4, .grid-3, .value-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 26px; flex-direction: column; text-align: center; }
  .footer .container { grid-template-columns: 1fr; }
  .topbar__info { gap: 14px; }
  .service-cat { flex-direction: column; }
}
