/* ═══════════════════════════════════════════════
   Dollar Jordan Theme — main.css v2.0
   Clean, professional, no color bleeding
═══════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #D0021B;
  --red-dark:  #A80015;
  --red-light: #FDF0F0;
  --black:     #0D0D0D;
  --dark:      #1A1A1A;
  --gray-800:  #2C2C2C;
  --gray-600:  #555555;
  --gray-400:  #999999;
  --gray-200:  #E8E8E8;
  --gray-100:  #F6F6F6;
  --white:     #FFFFFF;
  --font:      'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --max:       1200px;
  --t:         .2s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
textarea { font-family: var(--font); resize: vertical; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link { position: absolute; top: -100px; left: 16px; z-index: 9999; background: var(--red); color: #fff; padding: 8px 16px; font-weight: 700; }
.skip-link:focus { top: 8px; }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.text-red   { color: var(--red); }

/* ── SECTION LABELS ── */
.section-eyebrow {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--red);
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--red); flex-shrink: 0; display: block; }
.section-title { font-family: var(--font-cond); font-size: 40px; font-weight: 800; text-transform: uppercase; line-height: 1.1; color: var(--black); margin-bottom: 16px; }
.section-sub   { font-size: 16px; color: var(--gray-600); max-width: 580px; margin-bottom: 48px; line-height: 1.75; }

/* ── BUTTONS ── */
.btn-primary, .btn-outline, .btn-white, .btn-outline-white, .btn-outline-dark, .btn-reserve {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-cond); font-weight: 700; font-size: 14px;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  padding: 13px 28px; transition: all var(--t); white-space: nowrap; border-radius: 0;
}
.btn-primary      { background: var(--red);   color: #fff; border: 2px solid var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline      { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--black); border: 2px solid var(--gray-200); }
.btn-outline-dark:hover { border-color: var(--black); }
.btn-white        { background: #fff; color: var(--red); border: 2px solid #fff; }
.btn-white:hover  { background: transparent; color: #fff; }
.btn-outline-white{ background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { border-color: #fff; }
.btn-reserve      { background: var(--red); color: #fff; border: 2px solid var(--red); padding: 11px 24px; font-size: 13px; }
.btn-reserve:hover { background: var(--red-dark); }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.topbar { background: var(--dark); color: rgba(255,255,255,.6); font-size: 13px; padding: 9px 0; border-bottom: 2px solid var(--red); }
.topbar-inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.6); transition: color var(--t); display: inline-flex; align-items: center; gap: 5px; }
.topbar a:hover { color: var(--red); }
.topbar-left, .topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-divider { width: 1px; height: 12px; background: rgba(255,255,255,.2); }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.site-header { background: var(--white); box-shadow: 0 1px 0 rgba(0,0,0,.08); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.logo { display: flex; align-items: center; flex-shrink: 0; line-height: 0; }
.logo img { height: 46px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gray-800); position: relative; padding-bottom: 4px; transition: color var(--t);
}
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--red); transition: width .25s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--red); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger-bar { display: block; width: 22px; height: 2px; background: var(--dark); transition: all .25s; }
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; background: var(--white); border-top: 2px solid var(--red); padding: 20px 32px 28px; }
.mobile-menu.is-open { display: block; }
.mobile-nav-list li a,
.mobile-menu > a { display: block; padding: 13px 0; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); border-bottom: 1px solid var(--gray-100); transition: color var(--t); }
.mobile-menu a:hover { color: var(--red); }
.mobile-cta { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.mobile-cta a { flex: 1; justify-content: center; min-width: 140px; }

/* ══════════════════════════════════════
   HERO — Front Page
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 600px;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .3;
}
/* Hard stop — red stays RIGHT side, never bleeds into text */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #1A1A1A 55%, rgba(26,26,26,0.85) 75%, rgba(120,0,10,0.4) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 48px; align-items: center;
  padding: 80px 32px; width: 100%;
  max-width: var(--max); margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--red);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--red); display: block; flex-shrink: 0; }
.hero-title {
  font-family: var(--font-cond); font-size: 60px; font-weight: 800;
  line-height: 1.0; color: #fff; text-transform: uppercase; margin-bottom: 20px;
}
.hero-desc { font-size: 16px; color: rgba(255,255,255,.7); max-width: 500px; margin-bottom: 36px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Booking card */
.booking-card { background: #fff; padding: 32px 28px; }
.booking-card-title {
  font-family: var(--font-cond); font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 3px solid var(--red); color: var(--black);
}

/* ── FORMS ── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; border: 1.5px solid var(--gray-200);
  padding: 11px 14px; font-family: var(--font); font-size: 14px;
  color: var(--black); background: var(--white); outline: none;
  transition: border-color var(--t); border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group input[aria-invalid="true"] { border-color: var(--red); background: var(--red-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.required { color: var(--red); }
.form-feedback { margin-top: 12px; font-size: 14px; }
.form-feedback.success { color: #14532d; background: #f0fdf4; padding: 10px 14px; border-left: 3px solid #16a34a; }
.form-feedback.error   { color: #7f1d1d; background: var(--red-light); padding: 10px 14px; border-left: 3px solid var(--red); }
.booking-submit {
  width: 100%; background: var(--red); color: #fff;
  font-family: var(--font-cond); font-size: 15px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; padding: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--t); border: none; cursor: pointer;
}
.booking-submit:hover { background: var(--red-dark); }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar { background: var(--red); padding: 28px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,.2); padding: 8px 16px; }
.stat-item:last-child { border-right: none; }
.stat-number { display: block; font-family: var(--font-cond); font-size: 42px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.stat-label  { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.section-about { padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 440px; object-fit: cover; display: block; }
.about-accent {
  position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 3px solid var(--red); z-index: -1; pointer-events: none;
}
.about-content p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.about-check-list { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-800); line-height: 1.4; }
.check-icon {
  width: 20px; height: 20px; min-width: 20px;
  background: var(--red); color: #fff; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.img-placeholder {
  width: 100%; height: 440px; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
}
.img-placeholder svg { width: 100%; height: 100%; }

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.section-why { padding: 90px 0; background: var(--gray-100); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-top: 4px solid var(--red); padding: 32px 28px;
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.why-icon { width: 48px; height: 48px; background: var(--red-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.why-icon svg { width: 24px; height: 24px; color: var(--red); }
.why-card h3 { font-family: var(--font-cond); font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--black); margin-bottom: 10px; line-height: 1.3; }
.why-card p  { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ══════════════════════════════════════
   SERVICES GRID — Home
══════════════════════════════════════ */
.section-services { padding: 90px 0; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--gray-200); }
.service-card {
  border-right: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
  padding: 32px 24px; position: relative; overflow: hidden;
  transition: background .25s; background: var(--white); cursor: default;
}
.service-card:nth-child(4n) { border-right: none; }
.service-card:nth-last-child(-n+4) { border-bottom: none; }
.service-card:hover { background: var(--red); }
.service-card:hover .service-num,
.service-card:hover h3,
.service-card:hover p { color: #fff; }
.service-card:hover p { color: rgba(255,255,255,.8); }
.service-num { font-family: var(--font-cond); font-size: 48px; font-weight: 900; color: var(--gray-200); line-height: 1; margin-bottom: 14px; transition: color .25s; }
.service-card h3 { font-family: var(--font-cond); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--black); margin-bottom: 10px; transition: color .25s; line-height: 1.3; }
.service-card p  { font-size: 13px; color: var(--gray-600); line-height: 1.65; transition: color .25s; }
.badge-247 { background: var(--red); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 6px; letter-spacing: 1px; vertical-align: middle; margin-left: 4px; }
.service-card:hover .badge-247 { background: rgba(255,255,255,.2); color: #fff; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner { background: var(--dark); padding: 64px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-left { flex: 1; min-width: 260px; }
.cta-left h2 { font-family: var(--font-cond); font-size: 36px; font-weight: 800; text-transform: uppercase; color: #fff; line-height: 1.1; margin-bottom: 8px; }
.cta-left p  { font-size: 15px; color: rgba(255,255,255,.6); }
.cta-right { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
/* Accent bar on right */
.cta-banner .container { position: relative; }
.cta-accent { position: absolute; top: -64px; right: 0; width: 6px; height: calc(100% + 128px); background: var(--red); }

/* ══════════════════════════════════════
   FEATURES / SOLUTIONS
══════════════════════════════════════ */
.section-solutions { padding: 90px 0; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--gray-200); border: 1px solid var(--gray-200); }
.feature-item { background: var(--white); padding: 28px 28px; display: flex; gap: 20px; align-items: flex-start; transition: background var(--t); }
.feature-item:hover { background: var(--gray-100); }
.feature-icon-wrap { width: 44px; height: 44px; min-width: 44px; background: var(--red); display: flex; align-items: center; justify-content: center; }
.feature-icon-wrap svg { width: 22px; height: 22px; color: #fff; }
.feature-item h3 { font-family: var(--font-cond); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--black); margin-bottom: 6px; }
.feature-item p  { font-size: 13px; color: var(--gray-600); line-height: 1.65; }

/* ══════════════════════════════════════
   VISION / MISSION
══════════════════════════════════════ */
.section-vm { padding: 90px 0; background: var(--gray-100); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card { padding: 48px; position: relative; overflow: hidden; }
.vm-vision  { background: var(--dark); }
.vm-mission { background: var(--red); }
.vm-card::before {
  content: attr(data-label); position: absolute; bottom: -16px; right: 16px;
  font-family: var(--font-cond); font-size: 96px; font-weight: 900;
  letter-spacing: -4px; color: rgba(255,255,255,.04); text-transform: uppercase;
  line-height: 1; pointer-events: none;
}
.vm-label { font-family: var(--font-cond); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.vm-label::before { content: ''; display: block; width: 16px; height: 2px; background: rgba(255,255,255,.35); }
.vm-card h3 { font-family: var(--font-cond); font-size: 26px; font-weight: 800; text-transform: uppercase; color: #fff; margin-bottom: 16px; line-height: 1.1; }
.vm-card p  { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.75; position: relative; z-index: 1; }

/* ══════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════ */
.section-contact { padding: 90px 0; background: var(--gray-100); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 20px; background: var(--white); border-left: 4px solid var(--red); }
.contact-icon { width: 38px; height: 38px; min-width: 38px; background: var(--red); display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 18px; height: 18px; color: #fff; }
.contact-item-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 3px; }
.contact-item-value { font-family: var(--font-cond); font-size: 16px; font-weight: 700; color: var(--black); display: block; transition: color var(--t); }
a.contact-item-value:hover { color: var(--red); }
.contact-form-wrap { background: var(--white); padding: 40px; border-top: 4px solid var(--red); }
.contact-form-wrap h3 { font-family: var(--font-cond); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--black); margin-bottom: 28px; letter-spacing: .5px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--dark); color: rgba(255,255,255,.55); }
.footer-top { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo-link { display: inline-block; margin-bottom: 18px; line-height: 0; }
.footer-logo-img  { height: 46px; width: auto; object-fit: contain; }
.footer-brand p   { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); padding: 5px 10px; }
.footer-badge svg { color: var(--red); flex-shrink: 0; }
.footer-col-title { font-family: var(--font-cond); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #fff; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.4); transition: color var(--t); display: flex; align-items: center; gap: 7px; }
.footer-col ul li a::before { content: '›'; color: var(--red); font-weight: 700; font-size: 16px; line-height: 1; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a,
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,.4); transition: color var(--t); }
.footer-contact-item a:hover { color: var(--red); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.28); }
.footer-bottom p a { color: var(--red); transition: color var(--t); }
.footer-bottom p a:hover { color: #fff; }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom nav a { font-size: 12px; color: rgba(255,255,255,.28); transition: color var(--t); }
.footer-bottom nav a:hover { color: #fff; }

/* ══════════════════════════════════════
   PAGE TEMPLATES — INNER PAGES
══════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
/* IMPORTANT: no color bleed — solid dark bg with subtle bottom border only */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.page-hero-title {
  font-family: var(--font-cond);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; text-transform: uppercase;
  color: #fff; line-height: 1.1;
  margin-bottom: 12px; margin-top: 12px;
}
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,.55); max-width: 560px; }

/* Breadcrumb */
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--t); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span[aria-current] { color: var(--red); }

/* ── SERVICES DETAIL PAGE ── */
.services-detail-section { padding: 80px 0; }
.service-detail-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--gray-200);
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.service-detail-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.service-detail-left {
  background: var(--dark);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-detail-num {
  font-family: var(--font-cond); font-size: 56px; font-weight: 900;
  color: var(--red); line-height: 1; display: block; margin-bottom: 12px;
}
.service-detail-left h3 {
  font-family: var(--font-cond); font-size: 19px; font-weight: 700;
  text-transform: uppercase; color: #fff; line-height: 1.3; letter-spacing: .5px;
}
.service-detail-right { background: var(--white); padding: 36px 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; align-items: start; }
.service-detail-right p { font-size: 15px; color: var(--gray-600); line-height: 1.75; grid-column: 1 / -1; }
.service-feature-list { display: flex; flex-direction: column; gap: 10px; }
.service-feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-800); line-height: 1.5; }
.service-feature-list .check-icon { flex-shrink: 0; margin-top: 2px; }

/* ── BLOG PAGE ── */
.blog-section { padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 56px; }
.blog-card {
  background: var(--white); border: 1px solid var(--gray-200);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.blog-card-img-wrap { display: block; overflow: hidden; height: 210px; background: var(--dark); }
.blog-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.04); }
.blog-card-placeholder {
  height: 210px; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-placeholder span { font-family: var(--font-cond); font-size: 16px; font-weight: 700; color: var(--red); letter-spacing: 2px; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--gray-400); margin-bottom: 12px; flex-wrap: wrap; }
.blog-cat { background: var(--red-light); color: var(--red); font-weight: 700; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding: 2px 8px; }
.blog-card-title { font-family: var(--font-cond); font-size: 20px; font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: 10px; }
.blog-card-title a { color: inherit; transition: color var(--t); }
.blog-card-title a:hover { color: var(--red); }
.blog-card-excerpt { font-size: 14px; color: var(--gray-600); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.blog-read-more { font-family: var(--font-cond); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.blog-read-more:hover { gap: 10px; }
.blog-pagination { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.blog-pagination .page-numbers { font-family: var(--font-cond); font-size: 14px; font-weight: 700; padding: 8px 16px; border: 1.5px solid var(--gray-200); color: var(--gray-600); transition: all var(--t); }
.blog-pagination .page-numbers:hover,
.blog-pagination .current { background: var(--red); border-color: var(--red); color: #fff; }

/* Single post */
.single-post-content h2 { font-family: var(--font-cond); font-size: 26px; font-weight: 800; text-transform: uppercase; margin: 36px 0 12px; color: var(--black); }
.single-post-content h3 { font-family: var(--font-cond); font-size: 20px; font-weight: 700; margin: 28px 0 10px; }
.single-post-content p  { margin-bottom: 20px; }
.single-post-content ul, .single-post-content ol { margin: 16px 0 20px 24px; }
.single-post-content li { margin-bottom: 6px; }
.single-post-content img { max-width: 100%; margin: 24px 0; }
.single-post-content a { color: var(--red); text-decoration: underline; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .booking-card { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-detail-card { grid-template-columns: 220px 1fr; }
}

@media (max-width: 900px) {
  .section-title { font-size: 30px; }
  .hero-title { font-size: 44px; }
  .hero-inner { padding: 60px 32px; }
  section, .section-about, .section-why, .section-services,
  .section-solutions, .section-vm, .section-contact,
  .services-detail-section, .blog-section { padding: 64px 0; }

  /* Nav */
  .nav-links, .btn-reserve { display: none; }
  .nav-toggle { display: flex; }

  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding: 16px; }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.15); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* Layouts */
  .about-grid, .contact-grid, .vm-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-accent { display: none; }
  .about-img-wrap img, .img-placeholder { height: 300px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-right { grid-template-columns: 1fr; }
  .service-detail-right p { grid-column: auto; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; gap: 28px; }
  .cta-accent { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  section, .section-about, .section-why, .section-services,
  .section-solutions, .section-vm, .section-contact,
  .services-detail-section, .blog-section { padding: 48px 0; }
  .section-title { font-size: 26px; }
  .section-sub { margin-bottom: 28px; }
  .hero-title { font-size: 34px; }
  .hero-inner { padding: 48px 20px; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { justify-content: center; }
  .topbar-right { display: none; }
  .topbar-inner { justify-content: center; }
  .stats-inner { padding: 0 20px; }
  .stat-number { font-size: 32px; }
  .why-grid, .services-grid { grid-template-columns: 1fr; }
  .about-check-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .vm-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { padding: 40px 0 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .footer-bottom nav { justify-content: center; }
  .mobile-cta { flex-direction: column; }
  .mobile-cta a { width: 100%; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 52px 0 44px; }
  .service-detail-left { padding: 24px 20px; }
  .service-detail-right { padding: 24px 20px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 28px; }
  .section-title { font-size: 22px; }
  .logo img { height: 38px; }
}

@media print {
  .topbar, .site-header, .cta-banner, .booking-card, .nav-toggle { display: none !important; }
}
