/* ═══════════════════════════════════════════════════
   LIVA INN — Main Stylesheet
   Color Scheme: White | #FF6B00 Orange | #0A3D7C Blue
═══════════════════════════════════════════════════ */

:root {
  --orange: #FF6B00;
  --orange-dark: #e55d00;
  --orange-light: #ff8c35;
  --blue: #0A3D7C;
  --blue-dark: #072d5c;
  --blue-light: #1a5ca8;
  --white: #ffffff;
  --off-white: #f8f8f5;
  --light-gray: #f0f0ed;
  --mid-gray: #c8c8c4;
  --dark-gray: #4a4a47;
  --black: #0f0f0f;
  --text: #1a1a1a;
  --text-muted: #6b6b68;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.22);

  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: all 0.18s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container { width: min(1280px, 94%); margin: 0 auto; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

/* ── HEADER ───────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 40px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--blue);
  text-decoration: none;
}
.logo-icon { color: var(--orange); font-size: 1.4rem; }
.logo strong { color: var(--orange); }

/* PNG logo image */
.logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  /* Smooth render */
  image-rendering: -webkit-optimize-contrast;
}
.mobile-logo-img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  /* Invert for dark mobile menu background if needed */
}
.footer-logo-img {
  height: var(--logo-h-foot, 40px);
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  /* No forced invert — show logo as-is, just ensure it's visible on dark bg */
  filter: brightness(1.1) drop-shadow(0 1px 3px rgba(0,0,0,.3));
  opacity: 1;
}

.desktop-nav {
  display: flex; align-items: center; gap: 36px;
}
.desktop-nav a {
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--blue);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: var(--transition-fast);
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--orange); border-bottom-color: var(--orange); }
.nav-cta {
  background: var(--orange) !important; color: var(--white) !important;
  padding: 10px 26px !important; border-bottom: none !important;
  font-weight: 600 !important; letter-spacing: 0.08em !important;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px;
}
.hamburger span {
  display: block; height: 2px; background: var(--blue);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ──────────────────────────────────── */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(10,61,124,0.5);
  z-index: 1999; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed; top: 0; right: -340px; width: 320px; height: 100%;
  background: var(--blue); z-index: 2000;
  display: flex; flex-direction: column; padding: 30px 0;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu.active { right: 0; }

.mobile-menu__close {
  position: absolute; top: 20px; right: 20px;
  color: var(--white); font-size: 1.4rem;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition-fast);
}
.mobile-menu__close:hover { background: var(--orange); border-color: var(--orange); }

.mobile-menu__logo {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--white); padding: 20px 36px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 20px;
}
.mobile-menu__logo strong { color: var(--orange); }

.mobile-menu a {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 36px; color: rgba(255,255,255,0.8);
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition-fast);
}
.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--white); background: rgba(255,107,0,0.15);
  border-left: 3px solid var(--orange);
  padding-left: 33px;
}
.mobile-cta {
  background: var(--orange) !important;
  color: var(--white) !important; margin: 20px 36px !important;
  justify-content: center !important; border: none !important;
  border-radius: 0 !important; padding: 16px !important;
  font-weight: 600 !important;
}

.mobile-menu__social {
  display: flex; gap: 16px; padding: 24px 36px; margin-top: auto;
}
.mobile-menu__social a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); border-radius: 0; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.25);
  font-size: 1rem;
}
.mobile-menu__social a:hover { background: var(--orange); border-color: var(--orange); }

/* ── HERO SLIDER ──────────────────────────────────── */
.hero-slider {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; margin-top: 72px;
}
.hero-wrap .hero-slider { margin-top: 0; }
.hero-slider.compact { height: 60vh; min-height: 420px; }

.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.slide.active .slide-img { transform: scale(1.06); }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,61,124,0.72) 0%, rgba(0,0,0,0.4) 100%);
}
.slide-content {
  position: absolute; bottom: 18%; left: 0; right: 0;
  text-align: center; color: var(--white); padding: 0 20px;
  transform: translateY(30px); opacity: 0;
  transition: all 0.9s ease 0.4s;
}
.slide.active .slide-content { transform: translateY(0); opacity: 1; }

.slide-content h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 600; line-height: 1.1; margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-content p {
  font-size: clamp(1rem, 2vw, 1.25rem); opacity: 0.88;
  max-width: 560px; margin: 0 auto;
}

.slider-controls {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition-fast);
  border: none; padding: 0;
}
.slider-dot.active { background: var(--orange); width: 28px; }

.slider-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 20px; z-index: 10; pointer-events: none;
}
.slider-arrow {
  width: 52px; height: 52px; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; pointer-events: all;
  transition: var(--transition-fast); backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--orange); border-color: var(--orange); }

/* ── HERO SEARCH BAR ──────────────────────────────── */
/* ── HERO WRAP ────────────────────────────────────── */
.hero-wrap { position: relative; margin-top: 72px; }
.hero-wrap .hero-slider { margin-top: 0; }

.hero-search {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 20;
  padding: 0 20px;
}
.hero-search-inner {
  max-width: 900px; margin: 0 auto;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0;
}
.search-field {
  display: flex; flex-direction: column;
  padding: 18px 24px; border-right: 1px solid var(--light-gray);
  position: relative;
}
.search-field:last-of-type { border-right: none; }
.search-field label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--orange); margin-bottom: 5px;
}
.search-field input, .search-field select {
  border: none; outline: none; font-size: 0.95rem;
  color: var(--blue); font-weight: 500; background: transparent;
  width: 100%;
}
.search-field select { cursor: pointer; }
.search-btn {
  background: var(--orange); color: var(--white);
  padding: 0 32px; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.search-btn:hover { background: var(--orange-dark); }

/* ── SECTION HEADERS ──────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--orange);
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--blue); line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.title-bar {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 16px;
}
.title-bar::before, .title-bar::after {
  content: ''; flex: 1; max-width: 80px; height: 1px; background: var(--orange);
}

/* ── APARTMENT CARD ───────────────────────────────── */
.apt-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.apt-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.10);
  transform: translateY(-8px) rotateX(2deg);
}
.apt-card__img {
  position: relative; overflow: hidden;
  height: 220px;
}
.apt-card.large .apt-card__img { height: 320px; }
.apt-card__img img {
  width: 100%; height: 100%;
  transition: transform 0.6s ease;
}
.apt-card:hover .apt-card__img img { transform: scale(1.08); }

.apt-card__badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 9px;
  z-index: 2; pointer-events: none;
  display: inline-block; width: auto; max-width: fit-content;
}
.badge-available { background: #22c55e; color: #fff; }
.badge-booked { background: var(--blue); color: #fff; }
.badge-pending { background: var(--orange); color: #fff; }
.badge-featured { background: var(--orange); color: #fff; }
.badge-discount {
  position: absolute; top: 10px; right: 10px; left: auto !important;
  bottom: auto !important;
  background: rgba(10,61,124,0.9); color: #fff;
  font-size: 0.6rem; font-weight: 700; padding: 3px 8px;
  z-index: 2; pointer-events: none;
  display: inline-block !important;
  width: auto !important; max-width: fit-content !important;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.apt-card__body { padding: 20px 24px 24px; display: flex; flex-direction: column; }
.apt-card__location {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--orange); margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.apt-card__title {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  color: var(--blue); margin-bottom: 14px; line-height: 1.25;
}
.apt-card.large .apt-card__title { font-size: 1.7rem; }

.apt-card__meta {
  display: flex; gap: 20px; margin-bottom: 18px;
  font-size: 0.82rem; color: var(--text-muted);
}
.apt-card__meta span { display: flex; align-items: center; gap: 6px; }
.apt-card__meta i { color: var(--blue); }

.apt-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--light-gray);
  margin-top: auto;
}
.apt-card__price { display: flex; flex-direction: column; }
.apt-card__price .price-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.apt-card__price .price-value {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.apt-card__price .price-original {
  font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through;
}
.apt-card__cta {
  background: var(--blue); color: var(--white);
  padding: 10px 20px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.apt-card__cta:hover { background: var(--orange); }

/* ── FEATURED APARTMENTS — 2 col equal grid ──────── */
.featured-scroll-wrap { position: relative; }
.featured-scroll {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 4px 0 8px;
}
.featured-scroll .apt-card {
  min-width: 0;
  width: 100%;
  flex-shrink: unset;
  scroll-snap-align: unset;
}
.featured-scroll .apt-card:first-child { min-width: 0; }
/* Featured card image — taller, full width */
.featured-scroll .apt-card .apt-card__img { height: 210px; width: 100%; }
.featured-scroll .apt-card .apt-card__img img { width: 100%; height: 100%; object-fit: cover; }
/* Compact body */
.featured-scroll .apt-card .apt-card__body { padding: 16px 18px 18px; }
.featured-scroll .apt-card .apt-card__title { font-size: 1.05rem; margin-bottom: 10px; }
.featured-scroll .apt-card .apt-card__meta { gap: 10px; margin-bottom: 12px; font-size: 0.76rem; }
.featured-scroll .apt-card .apt-card__price .price-value { font-size: 1.25rem; }
.featured-scroll .apt-card .apt-card__cta { padding: 9px 14px; font-size: 0.72rem; }

.scroll-nav { display: none; }

/* ── AVAILABLE APARTMENTS GRID ────────────────────── */
.apt-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}
.apt-grid .apt-card:first-child {
  grid-column: 1 / 3; grid-row: 1 / 2;
}
.apt-grid .apt-card:first-child .apt-card__img { height: 380px; }

/* ── STATS STRIP ──────────────────────────────────── */
.stats-strip { background: var(--blue); padding: 56px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  text-align: center;
}
.stat-item {
  padding: 0 32px; color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.stat-label { font-size: 0.82rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; }

/* ── WHY LIVA INN ─────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.feature-card {
  background: var(--off-white); padding: 48px 36px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--orange);
  transform: scaleX(0); transition: var(--transition);
}
.feature-card:hover { background: var(--white); box-shadow: var(--shadow-md); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem; margin-bottom: 24px;
}
.feature-card h3 {
  font-family: var(--font-display); font-size: 1.35rem; color: var(--blue);
  margin-bottom: 12px; font-weight: 600;
}
.feature-card p { color: var(--text-muted); line-height: 1.7; }

/* ── PAGINATION ───────────────────────────────────── */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 60px;
}
.page-btn {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--light-gray); color: var(--text);
  font-weight: 600; font-size: 0.9rem; transition: var(--transition-fast);
}
.page-btn:hover, .page-btn.active {
  background: var(--orange); border-color: var(--orange); color: var(--white);
}
.page-btn.prev-next {
  width: auto; padding: 0 20px; gap: 8px;
  background: var(--blue); border-color: var(--blue); color: var(--white);
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.page-btn.prev-next:hover { background: var(--orange); border-color: var(--orange); }

/* ── APARTMENT DETAIL ─────────────────────────────── */
.detail-main { padding-top: 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }

.detail-main-img {
  height: 500px; overflow: hidden; position: relative; background: var(--off-white);
}
.detail-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.detail-main-img:hover img { transform: scale(1.02); }

.detail-gallery {
  display: flex; gap: 10px; overflow-x: auto; padding: 10px 0 4px; margin-top: 10px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--orange) var(--light-gray);
}
.detail-gallery::-webkit-scrollbar { height: 3px; }
.detail-gallery::-webkit-scrollbar-thumb { background: var(--orange); }
.detail-gallery img {
  height: 80px; width: 120px; flex-shrink: 0; object-fit: cover;
  cursor: pointer; opacity: 0.65; transition: var(--transition-fast);
  border: 2px solid transparent; scroll-snap-align: start;
}
.detail-gallery img:hover, .detail-gallery img.active { opacity: 1; border-color: var(--orange); }

.detail-sidebar {
  position: sticky; top: 100px;
  background: var(--off-white); padding: 36px;
}
.detail-price-box { background: var(--blue); padding: 28px 36px; margin: -36px -36px 28px; }
.detail-price-box .label { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }
.detail-price-box .price {
  font-family: var(--font-display); font-size: 2.8rem; color: var(--orange);
  font-weight: 700; line-height: 1;
}
.detail-price-box .period { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.detail-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; margin-top: 10px;
}
.detail-status.available { color: #22c55e; }
.detail-status.booked { color: #ef4444; }
.detail-status.pending { color: var(--orange); }

.detail-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.spec-item {
  background: var(--white); padding: 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.spec-item .spec-icon { color: var(--orange); font-size: 1.1rem; }
.spec-item .spec-val { font-family: var(--font-display); font-size: 1.3rem; color: var(--blue); font-weight: 600; }
.spec-item .spec-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.amenities-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.amenity-tag {
  background: var(--white); border: 1px solid var(--light-gray);
  padding: 6px 14px; font-size: 0.78rem; color: var(--blue);
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition-fast);
}
.amenity-tag:hover { border-color: var(--orange); color: var(--orange); }
.amenity-tag i { color: var(--orange); }

.btn-primary {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; width: 100%; padding: 18px;
  background: var(--orange); color: var(--white);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; transition: var(--transition);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.35); }

/* ── BOOKING FORM ─────────────────────────────────── */
.booking-section { padding: 80px 0; background: var(--off-white); }
.booking-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }

.booking-form-card { background: var(--white); padding: 48px; box-shadow: var(--shadow-md); }
.booking-form-card h2 {
  font-family: var(--font-display); font-size: 2rem; color: var(--blue);
  margin-bottom: 8px; font-weight: 600;
}
.booking-form-card .subtitle { color: var(--text-muted); margin-bottom: 36px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--blue);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--light-gray); padding: 14px 16px;
  font-size: 0.95rem; color: var(--text); outline: none;
  transition: var(--transition-fast); background: var(--white);
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

.booking-submit {
  margin-top: 24px; width: 100%; padding: 18px;
  background: var(--blue); color: var(--white);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; display: flex; align-items: center;
  justify-content: center; gap: 12px; transition: var(--transition);
}
.booking-submit:hover { background: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.booking-info-card {
  background: var(--blue); padding: 48px; color: var(--white);
  display: flex; flex-direction: column; gap: 32px; height: fit-content;
}
.booking-info-card h3 {
  font-family: var(--font-display); font-size: 1.7rem;
  font-weight: 600; margin-bottom: 4px;
}
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0; font-size: 1rem;
}
.info-item h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.info-item p { font-size: 0.82rem; opacity: 0.75; }

/* ── SUCCESS ALERT ────────────────────────────────── */
.alert {
  padding: 20px 24px; margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
  font-weight: 500;
}
.alert-success { background: #f0fdf4; border-left: 4px solid #22c55e; color: #166534; }
.alert-error { background: #fef2f2; border-left: 4px solid #ef4444; color: #991b1b; }

/* ── ABOUT PAGE ───────────────────────────────────── */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mission-card { background: var(--off-white); padding: 56px 48px; }
.mission-card.dark { background: var(--blue); color: var(--white); }
.mission-card h3 {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--orange); margin-bottom: 20px; font-weight: 600;
}
.mission-card p { line-height: 1.8; opacity: 0.85; }

.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.team-card {
  position: relative; overflow: hidden; background: var(--off-white);
}
.team-card img { width: 100%; height: 320px; object-fit: cover; object-position: top; }
.team-card__overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,61,124,0.95) 40%, transparent);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; transform: translateY(60px); transition: var(--transition);
}
.team-card:hover .team-card__overlay { transform: translateY(0); }
.team-card h4 { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); }
.team-card .role { color: var(--orange); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.team-card p { color: rgba(255,255,255,0.75); font-size: 0.83rem; line-height: 1.6; }

/* ── CONTACT PAGE ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.contact-info { background: var(--blue); padding: 64px 56px; color: var(--white); }
.contact-info h2 {
  font-family: var(--font-display); font-size: 2.4rem;
  font-weight: 600; margin-bottom: 12px;
}
.contact-info p { opacity: 0.75; margin-bottom: 40px; line-height: 1.7; }
.contact-detail { display: flex; gap: 18px; margin-bottom: 28px; align-items: flex-start; }
.contact-detail-icon {
  width: 50px; height: 50px; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.75rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 5px; }
.contact-detail p, .contact-detail a { color: var(--white); font-size: 0.95rem; line-height: 1.5; }
.contact-detail a:hover { color: var(--orange); }

.contact-form-wrap { background: var(--white); padding: 64px 56px; }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 2rem; color: var(--blue); margin-bottom: 8px; font-weight: 600; }
.contact-form-wrap .sub { color: var(--text-muted); margin-bottom: 36px; }

/* ── RELATED APARTMENTS ───────────────────────────── */
.related-scroll {
  display: flex; gap: 24px; overflow-x: auto; padding: 20px 0 32px;
  scrollbar-width: thin; scrollbar-color: var(--orange) var(--light-gray);
}
.related-scroll::-webkit-scrollbar { height: 4px; }
.related-scroll::-webkit-scrollbar-thumb { background: var(--orange); }
.related-scroll .apt-card { min-width: 300px; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────── */
.site-footer { background: var(--black); }
.footer-top { padding: 80px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 56px; }

.footer-logo {
  font-family: var(--font-display); font-size: 2rem; color: var(--white);
  margin-bottom: 16px;
}
.footer-logo strong { color: var(--orange); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.whatsapp-link:hover { background: #25d366 !important; border-color: #25d366 !important; }

.footer-links h4, .footer-contact h4, .footer-hours h4 {
  color: var(--white); font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 600; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
  color: rgba(255,255,255,0.55); font-size: 0.88rem;
  display: flex; align-items: center; gap: 8px; transition: var(--transition-fast);
}
.footer-links ul li a i { color: var(--orange); font-size: 0.65rem; }
.footer-links ul li a:hover { color: var(--orange); }

.footer-contact ul li {
  display: flex; gap: 12px; align-items: flex-start;
  color: rgba(255,255,255,0.55); font-size: 0.85rem;
  margin-bottom: 14px; line-height: 1.5;
}
.footer-contact ul li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.footer-contact ul li a { color: rgba(255,255,255,0.55); }
.footer-contact ul li a:hover { color: var(--orange); }

.footer-hours ul li {
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.55); font-size: 0.82rem;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}

.btn-whatsapp {
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: var(--white);
  padding: 14px 20px; margin-top: 20px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; transition: var(--transition);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
}
.footer-bottom p { text-align: center; color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ── SEARCH FILTER BAR ────────────────────────────── */
.filter-bar {
  background: var(--white); box-shadow: var(--shadow-md);
  padding: 28px 40px; margin-bottom: 48px;
  display: flex; gap: 20px; align-items: flex-end;
  position: sticky; top: 72px; z-index: 50;
}
.filter-group { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.filter-group label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); }
.filter-group input,
.filter-group select {
  border: 2px solid var(--light-gray); padding: 12px 14px;
  font-size: 0.9rem; color: var(--text); outline: none; transition: var(--transition-fast);
}
.filter-group input:focus,
.filter-group select:focus { border-color: var(--orange); }
.filter-search-btn {
  background: var(--orange); color: var(--white);
  padding: 12px 28px; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 8px; transition: var(--transition);
  white-space: nowrap;
}
.filter-search-btn:hover { background: var(--blue); }

/* ── MISC ─────────────────────────────────────────── */
.page-content { padding-top: 72px; }

.orange-line {
  width: 48px; height: 3px; background: var(--orange); margin: 16px auto 0;
}
.orange-line.left { margin-left: 0; }

.breadcrumb {
  background: var(--off-white); padding: 16px 0;
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--blue); }
.breadcrumb-inner a:hover { color: var(--orange); }
.breadcrumb-inner i { font-size: 0.6rem; color: var(--mid-gray); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .apt-grid { grid-template-columns: 1fr 1fr; }
  .apt-grid .apt-card:first-child { grid-column: 1 / -1; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .booking-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-search-inner { grid-template-columns: 1fr 1fr; }
  .search-btn { grid-column: 1 / -1; padding: 16px; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { padding: 24px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .features-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 20px; }
  .section { padding: 60px 0; }
  .hero-slider { height: 75vh; }
  .hero-slider.compact { height: 55vh; }
  .hero-search-inner { grid-template-columns: 1fr 1fr; border-top: 3px solid var(--orange); }
  .search-btn { grid-column: 1 / -1; padding: 16px; justify-content: center; }
  .search-field { border-right: none; border-bottom: 1px solid var(--light-gray); }
  .search-field:nth-child(2) { border-right: none; }
  .search-field:nth-child(odd) { border-right: 1px solid var(--light-gray); }
  .apt-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .apt-grid .apt-card:first-child { grid-column: 1 / -1; }
  .featured-scroll { grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info, .contact-form-wrap { padding: 40px 28px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-form-card, .booking-info-card { padding: 32px 24px; }
  .filter-bar { padding: 20px; position: static; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  /* ── General ── */
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-number { font-size: 2.2rem; }
  .stats-strip { padding: 36px 0; }
  .section-header h2 { font-size: 1.5rem; }

  /* ════════════════════════════════════════
     FEATURED — 2-col grid on phone too
     Image TOP, details BELOW, left/right columns
  ════════════════════════════════════════ */
  .featured-scroll-wrap { margin: 0; }
  .featured-scroll {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    overflow-x: unset !important;
    padding: 4px 0 8px !important;
    scroll-snap-type: unset !important;
  }
  .featured-scroll .apt-card {
    display: flex !important;
    flex-direction: column !important;
    flex-shrink: unset !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    scroll-snap-align: unset !important;
    border-bottom: none !important;
    box-shadow: 0 3px 14px rgba(0,0,0,0.11), 0 1px 4px rgba(0,0,0,0.07) !important;
    transform: none !important;
  }
  .featured-scroll .apt-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
    transform: translateY(-2px) !important;
  }
  .featured-scroll .apt-card .apt-card__img {
    width: 100% !important; min-width: 100% !important;
    height: 120px !important; min-height: 120px !important;
    flex-shrink: 0 !important;
  }
  .featured-scroll .apt-card .apt-card__body {
    flex: 1 !important; padding: 10px !important;
    display: flex !important; flex-direction: column !important;
  }
  .featured-scroll .apt-card .apt-card__location {
    font-size: 0.55rem !important; margin-bottom: 3px !important;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .featured-scroll .apt-card .apt-card__title {
    font-size: 0.78rem !important; margin-bottom: 6px !important;
    line-height: 1.25 !important;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .featured-scroll .apt-card .apt-card__meta {
    font-size: 0.58rem !important; gap: 5px !important;
    flex-wrap: wrap !important; margin-bottom: 8px !important;
  }
  .featured-scroll .apt-card .apt-card__footer {
    padding-top: 7px !important; margin-top: auto !important;
    border-top: 1px solid var(--light-gray) !important;
  }
  .featured-scroll .apt-card .apt-card__price .price-value { font-size: 0.92rem !important; }
  .featured-scroll .apt-card .apt-card__price .price-label { font-size: 0.5rem !important; }
  .featured-scroll .apt-card .apt-card__price .price-original { font-size: 0.58rem !important; }
  .featured-scroll .apt-card .apt-card__cta { padding: 7px 8px !important; font-size: 0.56rem !important; gap: 3px !important; }
  .featured-scroll .apt-card .apt-card__badge { font-size: 0.5rem !important; padding: 2px 6px !important; top: 6px !important; left: 6px !important; }
  .featured-scroll .apt-card .badge-discount { top: 24px !important; right: 6px !important; left: auto !important; font-size: 0.5rem !important; padding: 2px 5px !important; }

  /* ════════════════════════════════════════
     APT-GRID — horizontal row per item
     Thumbnail LEFT, all details RIGHT
  ════════════════════════════════════════ */
  .apt-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .apt-grid .apt-card,
  .apt-grid .apt-card.large {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    width: 100% !important;
    min-width: 0 !important;
    border-bottom: 1px solid var(--light-gray) !important;
    box-shadow: none !important;
    transform: none !important;
    margin-bottom: 0 !important;
  }
  .apt-grid .apt-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.09) !important;
    transform: none !important;
  }

  /* First card: full-width vertical hero */
  .apt-grid .apt-card:first-child,
  .apt-grid .apt-card.large:first-child {
    flex-direction: column !important;
    border-bottom: 3px solid var(--orange) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
  }
  .apt-grid .apt-card:first-child .apt-card__img {
    width: 100% !important; min-width: 100% !important;
    height: 200px !important; min-height: 200px !important;
  }
  .apt-grid .apt-card:first-child .apt-card__body { padding: 14px !important; }
  .apt-grid .apt-card:first-child .apt-card__title { font-size: 1rem !important; margin-bottom: 8px !important; }
  .apt-grid .apt-card:first-child .apt-card__badge { font-size: 0.58rem !important; padding: 3px 9px !important; }

  /* Row cards: thumbnail left */
  .apt-grid .apt-card:not(:first-child) .apt-card__img {
    width: 110px !important; min-width: 110px !important;
    height: auto !important; min-height: 130px !important;
    flex-shrink: 0 !important;
  }
  .apt-grid .apt-card:not(:first-child) .apt-card__img img { height: 100% !important; object-fit: cover !important; }
  .apt-grid .apt-card:not(:first-child) .apt-card__body {
    flex: 1 !important; padding: 10px 12px 10px 10px !important;
    display: flex !important; flex-direction: column !important;
    min-width: 0 !important; overflow: hidden !important;
  }
  .apt-grid .apt-card:not(:first-child) .apt-card__location { font-size: 0.58rem !important; margin-bottom: 2px !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .apt-grid .apt-card:not(:first-child) .apt-card__title { font-size: 0.8rem !important; line-height: 1.25 !important; margin-bottom: 4px !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .apt-grid .apt-card:not(:first-child) .apt-card__meta { font-size: 0.58rem !important; gap: 4px !important; flex-wrap: wrap !important; margin-bottom: 4px !important; }
  .apt-grid .apt-card:not(:first-child) .apt-card__meta span { gap: 3px !important; }
  .apt-grid .apt-card:not(:first-child) .apt-card__footer { padding-top: 6px !important; margin-top: auto !important; }
  .apt-grid .apt-card:not(:first-child) .apt-card__price .price-value { font-size: 0.9rem !important; }
  .apt-grid .apt-card:not(:first-child) .apt-card__price .price-label { font-size: 0.5rem !important; }
  .apt-grid .apt-card:not(:first-child) .apt-card__cta { padding: 6px 10px !important; font-size: 0.58rem !important; gap: 3px !important; }
  .apt-grid .apt-card:not(:first-child) .apt-card__body > p { display: none !important; }
  .apt-grid .apt-card:not(:first-child) .apt-card__badge { font-size: 0.5rem !important; padding: 2px 6px !important; top: 6px !important; left: 6px !important; }
  .apt-grid .apt-card:not(:first-child) .badge-discount { top: 22px !important; left: 6px !important; right: auto !important; font-size: 0.5rem !important; }

  /* ════════════════════════════════════════
     SEARCH BAR — 2x2 grid below hero
  ════════════════════════════════════════ */
  .hero-search {
    position: relative !important;
    bottom: auto !important; left: auto !important; right: auto !important;
    padding: 0 !important; z-index: 10 !important;
  }
  .hero-search-inner {
    max-width: 100% !important; margin: 0 !important;
    display: grid !important; grid-template-columns: 1fr 1fr !important;
    border-top: 3px solid var(--orange) !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.14) !important;
  }
  .search-field { padding: 11px 13px !important; border-right: none !important; border-bottom: 1px solid var(--light-gray) !important; }
  .search-field:nth-child(1) { border-right: 1px solid var(--light-gray) !important; }
  .search-field:nth-child(3) { border-right: 1px solid var(--light-gray) !important; border-bottom: none !important; }
  .search-field:nth-child(2) { border-bottom: none !important; }
  .search-btn { grid-column: 1 / -1 !important; padding: 14px !important; justify-content: center !important; font-size: 0.85rem !important; border-bottom: none !important; }
  .search-field label { font-size: 0.58rem !important; }
  .search-field input, .search-field select { font-size: 0.8rem !important; }

  /* Hero shrinks since search sits below */
  .hero-wrap .hero-slider { height: 46vh !important; min-height: 260px !important; }
  .slide-content { bottom: 10% !important; }
  .slide-content h1 { font-size: 1.4rem !important; margin-bottom: 6px !important; }
  .slide-content p { font-size: 0.78rem !important; }

  /* Misc */
  .filter-group input, .filter-group select { padding: 10px 12px !important; font-size: 0.82rem !important; }
  .filter-search-btn { padding: 10px 18px !important; font-size: 0.78rem !important; }
  .related-scroll .apt-card, .blog-related-scroll .blog-card { min-width: 260px !important; }
}

/* ── SCROLL ANIMATION ─────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   BLOG SYSTEM
═══════════════════════════════════════════════════ */

/* ── Blog Layout ─────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.blog-main { min-width: 0; }
.blog-sidebar { position: sticky; top: 100px; }

/* ── Blog Grid ────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.blog-grid .blog-card:first-child {
  grid-column: 1 / -1;
}

/* ── Blog Card ────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  transform-style: preserve-3d;
}
.blog-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}
.blog-card__img {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}
.blog-card:first-child .blog-card__img { height: 360px; }
.blog-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }

.blog-card__cat {
  position: absolute; top: 16px; left: 16px;
  background: var(--orange); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 12px; z-index: 2;
}
.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__meta {
  display: flex; gap: 16px; align-items: center;
  font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px;
}
.blog-card__meta span { display: flex; align-items: center; gap: 5px; }
.blog-card__meta i { color: var(--orange); }
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600; color: var(--blue);
  line-height: 1.3; margin-bottom: 12px;
  transition: color 0.2s;
}
.blog-card:first-child .blog-card__title { font-size: 1.7rem; }
.blog-card:hover .blog-card__title { color: var(--orange); }
.blog-card__excerpt {
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.7;
  margin-bottom: 20px; flex: 1;
}
.blog-card__read {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: var(--transition-fast); align-self: flex-start;
}
.blog-card__read:hover { border-bottom-color: var(--orange); }

/* ── Blog Sidebar ─────────────────────────────────── */
.sidebar-widget {
  background: var(--white); padding: 28px; margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h3 {
  font-family: var(--font-display); font-size: 1.2rem; color: var(--blue);
  font-weight: 600; margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}
/* Search widget */
.sidebar-search {
  display: flex; border: 2px solid var(--light-gray);
}
.sidebar-search input {
  flex: 1; padding: 12px 14px; border: none; outline: none;
  font-size: 0.88rem; font-family: inherit;
}
.sidebar-search button {
  background: var(--orange); color: var(--white);
  padding: 0 16px; font-size: 0.9rem; transition: var(--transition-fast);
}
.sidebar-search button:hover { background: var(--orange-dark); }

/* Categories */
.cat-list { display: flex; flex-direction: column; gap: 0; }
.cat-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--light-gray);
  font-size: 0.88rem; color: var(--text); transition: var(--transition-fast);
}
.cat-list a:last-child { border-bottom: none; }
.cat-list a:hover { color: var(--orange); padding-left: 6px; }
.cat-list a span {
  background: var(--light-gray); color: var(--text-muted);
  font-size: 0.7rem; font-weight: 700; padding: 2px 8px;
  min-width: 24px; text-align: center;
}
.cat-list a:hover span { background: var(--orange); color: var(--white); }

/* Recent posts */
.recent-post {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--light-gray);
}
.recent-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.recent-post img {
  width: 68px; height: 68px; object-fit: cover; flex-shrink: 0;
}
.recent-post__info { flex: 1; }
.recent-post__title {
  font-size: 0.84rem; font-weight: 600; color: var(--blue);
  line-height: 1.4; margin-bottom: 5px; display: block;
  transition: color 0.2s;
}
.recent-post__title:hover { color: var(--orange); }
.recent-post__date { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.recent-post__date i { color: var(--orange); }

/* Tags */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-link {
  background: var(--light-gray); color: var(--text);
  padding: 6px 14px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.04em; transition: var(--transition-fast); display: block;
}
.tag-link:hover { background: var(--orange); color: var(--white); }

/* CTA widget */
.sidebar-cta {
  background: var(--blue); padding: 32px 28px; text-align: center;
  margin-bottom: 28px;
}
.sidebar-cta h3 { color: var(--white); font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; }
.sidebar-cta p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 20px; line-height: 1.6; }
.sidebar-cta a {
  display: block; background: var(--orange); color: var(--white);
  padding: 13px; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition-fast);
}
.sidebar-cta a:hover { background: var(--orange-dark); }

/* ── Single Blog Post ─────────────────────────────── */
.post-hero { position: relative; height: 480px; overflow: hidden; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,61,124,0.85) 0%, rgba(0,0,0,0.2) 60%);
}
.post-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px;
}
.post-cat-badge {
  display: inline-block; background: var(--orange); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 14px; margin-bottom: 16px;
}
.post-hero h1 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white); font-weight: 600; line-height: 1.2; margin-bottom: 16px;
}
.post-meta-bar {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 0.8rem; color: rgba(255,255,255,0.75);
}
.post-meta-bar span { display: flex; align-items: center; gap: 6px; }
.post-meta-bar i { color: var(--orange); }

/* Post body content */
.post-body {
  padding: 48px 0;
  font-size: 1.02rem; line-height: 1.9; color: var(--text);
}
.post-body h2 {
  font-family: var(--font-display); font-size: 1.8rem; color: var(--blue);
  font-weight: 600; margin: 36px 0 16px;
}
.post-body h3 {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--blue);
  font-weight: 600; margin: 28px 0 12px;
}
.post-body p { margin-bottom: 20px; }
.post-body img { width: 100%; margin: 28px 0; }
.post-body blockquote {
  border-left: 4px solid var(--orange); padding: 16px 24px;
  background: var(--off-white); margin: 28px 0;
  font-style: italic; color: var(--text-muted); font-size: 1.05rem;
}
.post-body ul, .post-body ol {
  padding-left: 24px; margin-bottom: 20px;
}
.post-body li { margin-bottom: 8px; }

/* Tags & share */
.post-footer {
  padding: 28px 0; border-top: 2px solid var(--light-gray);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.post-tags span { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); }

.share-bar { display: flex; gap: 10px; align-items: center; }
.share-bar span { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); }
.share-btn {
  width: 38px; height: 38px; display: flex; align-items: center;
  justify-content: center; font-size: 0.9rem; color: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}
.share-btn:hover { transform: translateY(-3px); opacity: 0.85; }
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #000; }
.share-btn.wa { background: #25d366; }
.share-btn.li { background: #0a66c2; }

/* Comments */
.comments-section { padding: 40px 0; }
.comments-section h3 {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--blue);
  font-weight: 600; margin-bottom: 28px; padding-bottom: 14px;
  border-bottom: 2px solid var(--light-gray);
}
.comment {
  display: flex; gap: 16px; margin-bottom: 28px;
}
.comment__avatar {
  width: 48px; height: 48px; background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  flex-shrink: 0;
}
.comment__body { flex: 1; }
.comment__header {
  display: flex; justify-content: space-between; margin-bottom: 8px;
  align-items: baseline;
}
.comment__name { font-weight: 700; font-size: 0.9rem; color: var(--blue); }
.comment__date { font-size: 0.74rem; color: var(--text-muted); }
.comment__text { font-size: 0.9rem; line-height: 1.7; color: var(--text); }

.comment-form { background: var(--off-white); padding: 32px; margin-top: 36px; }
.comment-form h4 {
  font-family: var(--font-display); font-size: 1.3rem; color: var(--blue);
  font-weight: 600; margin-bottom: 20px;
}

/* Related blogs scroll */
.blog-related-scroll {
  display: flex; gap: 24px; overflow-x: auto; padding: 8px 0 28px;
  scrollbar-width: thin; scrollbar-color: var(--orange) var(--light-gray);
}
.blog-related-scroll::-webkit-scrollbar { height: 4px; }
.blog-related-scroll::-webkit-scrollbar-thumb { background: var(--orange); }
.blog-related-scroll .blog-card { min-width: 300px; flex-shrink: 0; }

/* ── Blog Responsive ──────────────────────────────── */
@media (max-width: 1100px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .sidebar-cta { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid .blog-card:first-child { grid-column: 1 / -1; }
  .post-hero { height: 320px; }
  .post-hero-content { padding: 24px; }
  .post-body { padding: 28px 0; }
  .post-footer { flex-direction: column; align-items: flex-start; }
  .blog-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .blog-card__img { height: 140px; }
  .blog-card:first-child .blog-card__img { height: 200px; }
  .blog-card__body { padding: 14px; }
  .blog-card__title { font-size: 0.9rem; }
  .blog-card:first-child .blog-card__title { font-size: 1.1rem; }
  .blog-card__excerpt { display: none; }
  .blog-related-scroll .blog-card { min-width: 240px; }
}


/* ═══════════════════════════════════════════════════
   APARTMENT DETAIL PAGE — Complete Rewrite
═══════════════════════════════════════════════════ */

/* Hero */
.apd-hero { position: relative; background: var(--black); overflow: hidden; }
.apd-hero__img-wrap { position: relative; height: 520px; }
.apd-hero__img-wrap img { width:100%; height:100%; object-fit:cover; opacity:0.85; transition: opacity 0.4s; }
.apd-hero__img-wrap img:hover { opacity:0.95; }
.apd-hero__gradient { position:absolute; inset:0; background: linear-gradient(to top, rgba(10,61,124,0.92) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.2) 100%); }
.apd-hero__top { position:absolute; top:0; left:0; right:0; display:flex; align-items:flex-start; justify-content:space-between; padding:20px 36px; }
.apd-breadcrumb { display:flex; align-items:center; gap:8px; font-size:0.75rem; color:rgba(255,255,255,0.75); }
.apd-breadcrumb a { color:rgba(255,255,255,0.75); transition:color 0.2s; }
.apd-breadcrumb a:hover { color:var(--orange); }
.apd-breadcrumb i { font-size:0.55rem; opacity:0.6; }
.apd-hero__badges { display:flex; gap:8px; flex-wrap:wrap; }
.apd-badge { font-size:0.68rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; padding:5px 12px; }
.apd-badge--available { background:#22c55e; color:#fff; }
.apd-badge--booked { background:#ef4444; color:#fff; }
.apd-badge--pending { background:var(--orange); color:#fff; }
.apd-badge--featured { background:var(--orange); color:#fff; }
.apd-badge--discount { background:var(--blue-light); color:#fff; }

.apd-hero__bottom { position:absolute; bottom:0; left:0; right:0; padding:28px 36px; display:flex; align-items:flex-end; justify-content:space-between; gap:24px; }
.apd-hero__location { font-size:0.78rem; font-weight:600; text-transform:uppercase; letter-spacing:0.1em; color:var(--orange); display:flex; align-items:center; gap:6px; margin-bottom:8px; }
.apd-hero__title { font-family:var(--font-display); font-size:clamp(1.6rem,3.5vw,2.8rem); color:#fff; font-weight:600; line-height:1.15; margin-bottom:12px; }
.apd-hero__specs { display:flex; gap:20px; flex-wrap:wrap; }
.apd-hero__specs span { font-size:0.82rem; color:rgba(255,255,255,0.85); display:flex; align-items:center; gap:6px; }
.apd-hero__specs i { color:var(--orange); }
.apd-hero__price { text-align:right; flex-shrink:0; }
.apd-hp-original { font-size:0.85rem; color:rgba(255,255,255,0.5); text-decoration:line-through; margin-bottom:4px; }
.apd-hp-value { font-family:var(--font-display); font-size:2.4rem; color:var(--orange); font-weight:700; line-height:1; }
.apd-hp-value span { font-size:1rem; color:rgba(255,255,255,0.6); }

/* Gallery strip */
.apd-gallery-strip { background:var(--black); padding:10px 0; border-bottom:3px solid var(--orange); }
.apd-gallery-scroll { display:flex; gap:8px; overflow-x:auto; padding:0 16px; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
.apd-gallery-scroll::-webkit-scrollbar { display:none; }
.apd-gallery-scroll img { height:72px; width:110px; flex-shrink:0; object-fit:cover; cursor:pointer; opacity:0.55; border:2px solid transparent; transition:all 0.2s; scroll-snap-align:start; }
.apd-gallery-scroll img:hover, .apd-gallery-scroll img.active { opacity:1; border-color:var(--orange); }

/* Body grid */
.apd-body { background:var(--off-white); }
.apd-grid { display:grid; grid-template-columns:1fr 360px; gap:32px; align-items:start; }
.apd-left { display:flex; flex-direction:column; gap:20px; }
.apd-sidebar { position:sticky; top:88px; display:flex; flex-direction:column; gap:10px; }

/* Cards */
.apd-card { background:var(--white); padding:28px; box-shadow:0 2px 12px rgba(0,0,0,0.07); }
.apd-card__head { display:flex; align-items:center; gap:10px; margin-bottom:20px; padding-bottom:14px; border-bottom:2px solid var(--light-gray); }
.apd-card__head i { color:var(--orange); font-size:1.1rem; width:36px; height:36px; background:rgba(255,107,0,0.1); display:flex; align-items:center; justify-content:center; }
.apd-card__head h2 { font-family:var(--font-display); font-size:1.25rem; color:var(--blue); font-weight:600; margin:0; }
.apd-description { color:var(--text-muted); line-height:1.85; font-size:0.97rem; }

/* Specs grid */
.apd-specs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.apd-spec { background:var(--off-white); padding:16px 14px; display:flex; align-items:center; gap:12px; transition:var(--transition-fast); }
.apd-spec:hover { background:var(--light-gray); }
.apd-spec > i { color:var(--orange); font-size:1.1rem; flex-shrink:0; }
.apd-spec > div { display:flex; flex-direction:column; }
.apd-spec strong { font-family:var(--font-display); font-size:1.15rem; color:var(--blue); font-weight:600; line-height:1.1; }
.apd-spec small { font-size:0.68rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--text-muted); margin-top:2px; }

/* Amenities */
.apd-amenities { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }
.apd-amenity { display:flex; align-items:center; gap:10px; padding:12px 14px; background:var(--off-white); font-size:0.85rem; color:var(--text); transition:var(--transition-fast); }
.apd-amenity:hover { background:var(--light-gray); color:var(--blue); }
.apd-amenity i { color:var(--orange); font-size:1rem; width:20px; text-align:center; flex-shrink:0; }

/* Sidebar price box */
.apd-price-box { background:var(--blue); padding:24px; }
.apd-pb-top { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:14px; }
.apd-pb-label { font-size:0.68rem; text-transform:uppercase; letter-spacing:0.12em; color:rgba(255,255,255,0.55); margin-bottom:4px; }
.apd-pb-orig { font-size:0.85rem; color:rgba(255,255,255,0.4); text-decoration:line-through; margin-bottom:4px; }
.apd-pb-price { font-family:var(--font-display); font-size:2.4rem; color:var(--orange); font-weight:700; line-height:1; }
.apd-pb-price span { font-size:0.95rem; color:rgba(255,255,255,0.5); }
.apd-pb-disc { background:var(--orange); color:#fff; text-align:center; padding:10px 14px; font-family:var(--font-display); font-size:1.4rem; font-weight:700; line-height:1; flex-shrink:0; }
.apd-pb-disc small { font-size:0.65rem; font-family:var(--font-body); letter-spacing:0.06em; display:block; }
.apd-pb-status { font-size:0.75rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; display:flex; align-items:center; gap:6px; }
.apd-pb-status i { font-size:0.45rem; }
.apd-st--available { color:#4ade80; }
.apd-st--booked { color:#f87171; }
.apd-st--pending { color:var(--orange); }

/* Sidebar specs list */
.apd-sb-specs { background:var(--white); padding:16px; display:flex; flex-direction:column; gap:0; box-shadow:0 2px 8px rgba(0,0,0,0.06); }
.apd-sb-spec { display:flex; align-items:center; gap:12px; padding:11px 12px; border-bottom:1px solid var(--light-gray); font-size:0.88rem; color:var(--text); }
.apd-sb-spec:last-child { border-bottom:none; }
.apd-sb-spec i { color:var(--orange); font-size:0.9rem; width:18px; text-align:center; flex-shrink:0; }

/* Buttons */
.apd-btn-book { display:flex; align-items:center; justify-content:center; gap:10px; padding:16px; background:var(--orange); color:#fff; font-size:0.85rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; transition:var(--transition); }
.apd-btn-book:hover { background:var(--orange-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(255,107,0,0.3); }
.apd-btn-book--full { width:100%; }
.apd-btn-contact { display:flex; align-items:center; justify-content:center; gap:8px; padding:13px; border:2px solid var(--blue); color:var(--blue); font-size:0.8rem; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; transition:var(--transition-fast); }
.apd-btn-contact:hover { background:var(--blue); color:#fff; }
.apd-btn-wa { display:flex; align-items:center; justify-content:center; gap:8px; padding:13px; background:#25d366; color:#fff; font-size:0.8rem; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; transition:var(--transition-fast); }
.apd-btn-wa--full { width:100%; }
.apd-btn-wa:hover { background:#1da851; }

/* Share row */
.apd-share-row { display:flex; align-items:center; gap:8px; padding-top:4px; }
.apd-share-row span { font-size:0.7rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.08em; flex-shrink:0; }
.apd-sh { width:34px; height:34px; display:flex; align-items:center; justify-content:center; color:#fff; font-size:0.8rem; transition:transform 0.2s; }
.apd-sh:hover { transform:translateY(-2px); }
.apd-sh.fb { background:#1877f2; } .apd-sh.wa { background:#25d366; } .apd-sh.tw { background:#000; } .apd-sh.li { background:#0a66c2; }

/* Mobile CTA bar (hidden on desktop) */
.apd-mobile-cta { display:none; }

/* ── Related scroll ── */
.related-scroll { display:flex; gap:20px; overflow-x:auto; padding:4px 0 20px; scrollbar-width:thin; scrollbar-color:var(--orange) var(--light-gray); scroll-behavior:smooth; }
.related-scroll::-webkit-scrollbar { height:4px; }
.related-scroll::-webkit-scrollbar-thumb { background:var(--orange); }

/* ── Detail page responsive ── */
@media (max-width: 1100px) {
  .apd-grid { grid-template-columns: 1fr 320px; gap:24px; }
  .apd-specs-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .apd-grid { grid-template-columns: 1fr; }
  .apd-sidebar { position:static; display:grid; grid-template-columns:1fr 1fr; gap:12px; }
  .apd-price-box { grid-column: 1 / -1; }
  .apd-sb-specs { grid-column: 1 / -1; }
  .apd-btn-book--full, .apd-btn-contact, .apd-btn-wa--full { grid-column: auto; }
  .apd-share-row { grid-column: 1 / -1; }
  .apd-hero__img-wrap { height:420px; }
  .apd-hero__bottom { flex-direction:column; align-items:flex-start; gap:12px; }
  .apd-hero__price { text-align:left; }
}
@media (max-width: 600px) {
  .apd-hero__img-wrap { height:280px; }
  .apd-hero__top { padding:14px 16px; }
  .apd-hero__bottom { padding:16px; }
  .apd-hero__title { font-size:1.4rem; }
  .apd-hero__specs { gap:12px; }
  .apd-hero__specs span { font-size:0.72rem; }
  .apd-hp-value { font-size:1.8rem; }
  .apd-gallery-scroll img { height:58px; width:88px; }
  .apd-body .container { padding:0 12px; }
  .apd-card { padding:18px 14px; }
  .apd-card__head h2 { font-size:1.05rem; }
  .apd-specs-grid { grid-template-columns:repeat(2,1fr); gap:8px; }
  .apd-spec { padding:12px 10px; }
  .apd-spec strong { font-size:1rem; }
  .apd-amenities { grid-template-columns:1fr 1fr; gap:8px; }
  .apd-amenity { padding:10px; font-size:0.78rem; }
  .apd-sidebar { display:flex; flex-direction:column; gap:10px; }
  .apd-price-box { padding:18px; }
  .apd-pb-price { font-size:1.9rem; }
  /* Show sticky mobile CTA bar */
  .apd-mobile-cta { display:flex; align-items:center; justify-content:space-between; gap:10px; position:fixed; bottom:0; left:0; right:0; background:#fff; padding:12px 16px; box-shadow:0 -4px 20px rgba(0,0,0,0.15); z-index:500; border-top:2px solid var(--orange); }
  .apd-mcta-price { display:flex; flex-direction:column; }
  .apd-mcta-orig { font-size:0.68rem; color:var(--text-muted); text-decoration:line-through; }
  .apd-mcta-val { font-family:var(--font-display); font-size:1.4rem; color:var(--orange); font-weight:700; line-height:1; }
  .apd-mcta-actions { display:flex; gap:8px; }
  .apd-btn-book { padding:12px 18px; font-size:0.78rem; }
  .apd-btn-wa { padding:12px 14px; font-size:1rem; }
  /* Pad page bottom for sticky bar */
  .apd-left { padding-bottom:80px; }
  /* Breadcrumb hide on tiny screens */
  .apd-breadcrumb { display:none; }
  .apd-hero__badges { gap:5px; }
  .apd-badge { font-size:0.58rem; padding:3px 8px; }
}

/* ═══════════════════════════════════════════════════
   BOOKING PAGE — Redesign
═══════════════════════════════════════════════════ */
.bk-apt-banner { display:flex; align-items:center; gap:20px; background:#fff; padding:20px 24px; margin-bottom:36px; box-shadow:0 4px 20px rgba(0,0,0,0.08); border-left:4px solid var(--orange); }
.bk-apt-banner img { width:90px; height:70px; object-fit:cover; flex-shrink:0; }
.bk-apt-banner__info { flex:1; min-width:0; }
.bk-apt-banner__info h3 { font-family:var(--font-display); font-size:1.1rem; color:var(--blue); font-weight:600; margin:4px 0 8px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.bk-apt-banner__meta { display:flex; gap:14px; flex-wrap:wrap; font-size:0.75rem; color:var(--text-muted); }
.bk-apt-banner__meta span { display:flex; align-items:center; gap:5px; }
.bk-apt-banner__meta i { color:var(--orange); }
.bk-apt-banner__price { flex-shrink:0; text-align:right; }

.bk-layout { display:grid; grid-template-columns:1fr 340px; gap:28px; align-items:start; }

.bk-form-wrap { background:#fff; padding:36px; box-shadow:0 4px 20px rgba(0,0,0,0.08); }
.bk-form-header { display:flex; align-items:center; gap:16px; margin-bottom:28px; padding-bottom:20px; border-bottom:2px solid var(--light-gray); }
.bk-form-header__icon { width:52px; height:52px; background:var(--orange); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0; }
.bk-form-header h2 { font-family:var(--font-display); font-size:1.5rem; color:var(--blue); font-weight:600; margin:0 0 3px; }
.bk-form-header p { font-size:0.83rem; color:var(--text-muted); margin:0; }

.bk-success { display:flex; align-items:center; gap:16px; background:#f0fdf4; border-left:4px solid #22c55e; padding:18px 20px; margin-bottom:24px; }
.bk-success__icon { font-size:2rem; color:#22c55e; flex-shrink:0; }
.bk-success h4 { font-weight:700; color:#166534; margin:0 0 3px; }
.bk-success p { font-size:0.85rem; color:#15803d; margin:0; }

.bk-section-label { display:flex; align-items:center; gap:8px; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.12em; color:var(--blue); margin-bottom:14px; padding-bottom:8px; border-bottom:1px solid var(--light-gray); }
.bk-section-label i { color:var(--orange); }
.bk-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.req { color:var(--orange); }

.bk-form .form-group { margin-bottom:16px; }
.bk-form .form-group label { display:block; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:var(--blue); margin-bottom:6px; }
.bk-form input, .bk-form select, .bk-form textarea {
  width:100%; border:2px solid var(--light-gray); padding:13px 14px; font-size:0.92rem;
  color:var(--text); outline:none; transition:border-color 0.2s; background:#fff;
  border-radius:0; font-family:inherit; display:block;
}
.bk-form input:focus, .bk-form select:focus, .bk-form textarea:focus { border-color:var(--orange); }
.bk-form textarea { resize:vertical; min-height:110px; }
.bk-submit { width:100%; display:flex; align-items:center; justify-content:center; gap:12px; padding:18px; background:var(--blue); color:#fff; font-size:0.9rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; transition:var(--transition); margin-top:8px; }
.bk-submit:hover { background:var(--orange); transform:translateY(-2px); box-shadow:0 8px 28px rgba(10,61,124,0.25); }
.bk-note { text-align:center; font-size:0.75rem; color:var(--text-muted); margin-top:12px; display:flex; align-items:center; justify-content:center; gap:6px; }
.bk-note i { color:var(--orange); }

/* Info panel */
.bk-info { display:flex; flex-direction:column; gap:2px; }
.bk-info-card { background:#fff; padding:20px; display:flex; gap:14px; align-items:flex-start; border-left:3px solid transparent; transition:border-color 0.2s; }
.bk-info-card:hover { border-left-color:var(--orange); }
.bk-info-card__icon { width:42px; height:42px; background:var(--blue); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.bk-info-card h4 { font-weight:700; font-size:0.88rem; color:var(--blue); margin:0 0 4px; }
.bk-info-card p { font-size:0.8rem; color:var(--text-muted); margin:0; line-height:1.6; }

.bk-wa-card { background:var(--blue); padding:20px; display:flex; align-items:center; gap:14px; margin-top:4px; }
.bk-wa-card i { font-size:2rem; color:#25d366; flex-shrink:0; }
.bk-wa-card h4 { color:#fff; font-weight:700; font-size:0.88rem; margin:0 0 2px; }
.bk-wa-card p { color:rgba(255,255,255,0.65); font-size:0.78rem; margin:0; }
.bk-wa-card a { flex-shrink:0; background:#25d366; color:#fff; padding:10px 16px; font-size:0.75rem; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; white-space:nowrap; transition:background 0.2s; }
.bk-wa-card a:hover { background:#1da851; }

.bk-contact-list { background:#fff; padding:18px 20px; display:flex; flex-direction:column; gap:12px; }
.bk-contact-list a, .bk-contact-list div { display:flex; align-items:center; gap:10px; font-size:0.84rem; color:var(--text); }
.bk-contact-list i { color:var(--orange); width:16px; text-align:center; }
.bk-contact-list a:hover { color:var(--orange); }

@media (max-width: 900px) { .bk-layout { grid-template-columns:1fr; } }
@media (max-width: 600px) {
  .bk-form-wrap { padding:22px 16px; }
  .bk-row { grid-template-columns:1fr; gap:0; }
  .bk-apt-banner { flex-wrap:wrap; gap:12px; }
  .bk-apt-banner__price { width:100%; text-align:left; }
}

/* ═══════════════════════════════════════════════════
   BLOG POST PAGE — Improvements
═══════════════════════════════════════════════════ */
.post-hero { position:relative; height:500px; overflow:hidden; margin-top:72px; }
.post-hero img { width:100%; height:100%; object-fit:cover; }
.post-hero-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(10,61,124,0.9) 0%, rgba(0,0,0,0.2) 60%); }
.post-hero-content { position:absolute; bottom:0; left:0; right:0; padding:40px; }
.post-cat-badge { display:inline-block; background:var(--orange); color:#fff; font-size:0.7rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; padding:5px 14px; margin-bottom:14px; }
.post-hero h1 { font-family:var(--font-display); font-size:clamp(1.6rem,3.5vw,2.8rem); color:#fff; font-weight:600; line-height:1.2; margin-bottom:14px; }
.post-meta-bar { display:flex; align-items:center; gap:18px; flex-wrap:wrap; font-size:0.78rem; color:rgba(255,255,255,0.75); }
.post-meta-bar span { display:flex; align-items:center; gap:5px; }
.post-meta-bar i { color:var(--orange); }

.post-body { font-size:1.02rem; line-height:1.9; color:var(--text); }
.post-body h2 { font-family:var(--font-display); font-size:1.7rem; color:var(--blue); font-weight:600; margin:36px 0 14px; padding-bottom:10px; border-bottom:2px solid var(--light-gray); }
.post-body h3 { font-family:var(--font-display); font-size:1.3rem; color:var(--blue); font-weight:600; margin:26px 0 10px; }
.post-body p { margin-bottom:20px; }
.post-body img { width:100%; margin:24px 0; box-shadow:var(--shadow-md); }
.post-body blockquote { border-left:4px solid var(--orange); padding:16px 24px; background:var(--off-white); margin:28px 0; font-style:italic; color:var(--text-muted); font-size:1.05rem; }
.post-body ul, .post-body ol { padding-left:24px; margin-bottom:20px; }
.post-body li { margin-bottom:8px; }

.post-footer { padding:24px 0; border-top:2px solid var(--light-gray); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; margin-top:32px; }
.post-tags { display:flex; gap:8px; flex-wrap:wrap; align-items:center; }
.post-tags span { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--blue); }
.share-bar { display:flex; gap:8px; align-items:center; }
.share-bar span { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--blue); }
.share-btn { width:36px; height:36px; display:flex; align-items:center; justify-content:center; font-size:0.85rem; color:#fff; transition:transform 0.2s,opacity 0.2s; }
.share-btn:hover { transform:translateY(-3px); }
.share-btn.fb{background:#1877f2;} .share-btn.tw{background:#000;} .share-btn.wa{background:#25d366;} .share-btn.li{background:#0a66c2;}

/* Comments */
.comments-section { padding:36px 0; }
.comments-section h3 { font-family:var(--font-display); font-size:1.4rem; color:var(--blue); font-weight:600; margin-bottom:24px; padding-bottom:12px; border-bottom:2px solid var(--light-gray); display:flex; align-items:center; gap:10px; }
.comments-section h3 i { color:var(--orange); }
.comment { display:flex; gap:14px; margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid var(--light-gray); }
.comment:last-of-type { border-bottom:none; }
.comment__avatar { width:46px; height:46px; background:var(--blue); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:1.2rem; font-weight:700; flex-shrink:0; }
.comment__body { flex:1; }
.comment__header { display:flex; justify-content:space-between; margin-bottom:6px; align-items:baseline; }
.comment__name { font-weight:700; font-size:0.88rem; color:var(--blue); }
.comment__date { font-size:0.72rem; color:var(--text-muted); }
.comment__text { font-size:0.9rem; line-height:1.75; color:var(--text); }

.comment-form { background:var(--off-white); padding:28px; margin-top:28px; }
.comment-form h4 { font-family:var(--font-display); font-size:1.2rem; color:var(--blue); font-weight:600; margin-bottom:18px; display:flex; align-items:center; gap:8px; }
.comment-form h4 i { color:var(--orange); }

@media (max-width: 600px) {
  .post-hero { height:280px; margin-top:72px; }
  .post-hero-content { padding:20px; }
  .post-hero h1 { font-size:1.35rem; }
  .post-meta-bar { gap:10px; font-size:0.72rem; }
  .post-footer { flex-direction:column; align-items:flex-start; }
  .comment-form { padding:18px; }
}

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE — Complete Redesign
   ════════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────────── */
.abt-hero {
  position: relative;
  height: 100vh;
  max-height: 820px;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Slides stacked behind content */
.abt-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
.abt-hero__slide.active { opacity: 1; }

.abt-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 10s ease;
}
.abt-hero__slide.active .abt-hero__bg { transform: scale(1); }

/* Rich layered overlay: dark at bottom for legibility, blue tint on sides */
.abt-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,  rgba(5,20,50,.92) 0%, rgba(5,20,50,.55) 35%, transparent 65%),
    linear-gradient(to right, rgba(10,61,124,.5) 0%, transparent 60%);
}

/* Decorative orange vertical accent bar */
.abt-hero__accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--orange);
  z-index: 2;
}

/* Content sits at bottom-left, above the dark gradient */
.abt-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 clamp(24px, 8vw, 120px) clamp(64px, 10vh, 100px);
  max-width: 820px;
}

.abt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 7px 18px;
  margin-bottom: 22px;
}
.abt-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: rgba(255,255,255,.7);
}

.abt-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
/* Orange underline on last word */
.abt-hero__title em {
  font-style: normal;
  color: var(--orange);
}

.abt-hero__sub {
  font-size: clamp(.9rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
  padding-left: 0;
}

/* CTA row */
.abt-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.abt-hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  padding: 16px 34px;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  transition: background .25s, gap .25s, transform .25s;
  border: 2px solid var(--orange);
}
.abt-hero__cta:hover { background: #d95a00; border-color: #d95a00; gap: 16px; }

.abt-hero__cta--ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,.45);
  color: #fff;
}
.abt-hero__cta--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; gap: 16px; }

/* Scroll indicator */
.abt-hero__scroll {
  position: absolute;
  bottom: 28px;
  right: clamp(24px,6vw,80px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.abt-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(.7); }
}

/* Custom arrows — pushed to edges, not overlapping content */
.abt-hero .slider-arrows {
  top: auto;
  bottom: clamp(64px,10vh,100px);
  transform: none;
  width: auto;
  right: clamp(24px,6vw,80px);
  left: auto;
  padding: 0;
  gap: 8px;
  display: flex;
  justify-content: flex-end;
}
.abt-hero .slider-arrow {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
}
.abt-hero .slider-arrow:hover { background: var(--orange); border-color: var(--orange); }

/* Dot indicators */
.abt-hero .slider-controls {
  bottom: 16px;
  left: clamp(24px,8vw,120px);
  transform: none;
  gap: 8px;
}
.abt-hero .slider-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.3);
  border-radius: 0;
  transition: width .3s, background .3s;
}
.abt-hero .slider-dot.active {
  width: 32px;
  background: var(--orange);
}

/* Stats bar pinned to hero bottom */
.abt-hero__statsbar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  overflow: hidden;
}
.abt-hero__statitem {
  flex: 1;
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .2s;
}
.abt-hero__statitem:last-child { border-right: none; }
.abt-hero__statitem:hover { background: rgba(255,107,0,.15); }
.abt-hero__statnum {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.abt-hero__statnum span { color: var(--orange); }
.abt-hero__statlabel {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* ── Story ──────────────────────────────────────────────────── */
.abt-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.abt-story__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--blue);
  font-weight: 700;
  line-height: 1.2;
  margin: 14px 0 20px;
}
.abt-story__text p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.abt-story__text em { color: var(--blue); font-style: italic; font-weight: 500; }
.abt-story__badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 28px 0 32px;
}
.abt-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  padding: 8px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue);
}
.abt-badge i { color: var(--orange); font-size: .85rem; }
.btn-primary-about {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  padding: 15px 32px;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 0;
  transition: background .25s, gap .25s;
}
.btn-primary-about:hover { background: #d95a00; gap: 16px; }

/* Story image composition */
.abt-story__visual { position: relative; }
.abt-story__img-wrap { position: relative; }
.abt-story__img {
  width: 100%; height: 500px;
  object-fit: cover;
  display: block;
}
.abt-story__img-secondary {
  position: absolute;
  bottom: -32px;
  right: -28px;
  width: 48%;
  border: 6px solid #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.abt-story__img-secondary img {
  width: 100%; height: 180px;
  object-fit: cover; display: block;
}
.abt-story__badge-float {
  position: absolute;
  top: 32px;
  left: -28px;
  background: var(--orange);
  color: #fff;
  padding: 22px 26px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 8px 24px rgba(255,107,0,.35);
}
.abt-story__badge-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
.abt-story__badge-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9;
  margin-top: 6px;
  line-height: 1.4;
}

/* ── Stats strip ────────────────────────────────────────────── */
.abt-stats {
  background: var(--blue);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.abt-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.abt-stats::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,107,0,.06);
}
.abt-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.abt-stat {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
  position: relative;
}
.abt-stat:last-child { border-right: none; }
.abt-stat__icon {
  font-size: 1.6rem;
  color: rgba(255,255,255,.25);
  margin-bottom: 12px;
}
.abt-stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.abt-stat__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ── Mission & Vision ───────────────────────────────────────── */
.abt-mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.abt-mv__card {
  padding: 48px 40px;
  background: var(--off-white);
  border-top: 4px solid var(--orange);
  position: relative;
  overflow: hidden;
}
.abt-mv__card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,107,0,.06);
}
.abt-mv__card--dark {
  background: var(--blue);
  border-top-color: #fff;
}
.abt-mv__card--dark::after { background: rgba(255,255,255,.04); }
.abt-mv__card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange);
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.abt-mv__card--dark .abt-mv__card-icon { background: rgba(255,255,255,.15); }
.abt-mv__card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}
.abt-mv__card--dark h3 { color: #fff; }
.abt-mv__card p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.abt-mv__card--dark p { color: rgba(255,255,255,.75); }
.abt-mv__list { list-style: none; padding: 0; margin: 0; }
.abt-mv__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--light-gray);
}
.abt-mv__list li:last-child { border-bottom: none; }
.abt-mv__card--dark .abt-mv__list li { color: rgba(255,255,255,.75); border-bottom-color: rgba(255,255,255,.1); }
.abt-mv__list i { color: var(--orange); font-size: .75rem; flex-shrink: 0; }
.abt-mv__card--dark .abt-mv__list i { color: rgba(255,255,255,.6); }

/* ── Values ─────────────────────────────────────────────────── */
.abt-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.abt-value-card {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.abt-value-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s;
}
.abt-value-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-4px); }
.abt-value-card:hover::before { transform: scaleX(1); }
.abt-value-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 16px;
  transition: color .3s;
}
.abt-value-card:hover .abt-value-card__num { color: rgba(255,107,0,.15); }
.abt-value-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,107,0,.1);
  color: var(--orange);
  font-size: 1.2rem;
  margin-bottom: 16px;
  transition: background .3s, color .3s;
}
.abt-value-card:hover .abt-value-card__icon { background: var(--orange); color: #fff; }
.abt-value-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.abt-value-card__text { color: var(--text-muted); line-height: 1.7; font-size: .875rem; }

/* ── Team ───────────────────────────────────────────────────── */
.abt-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.abt-team-card {
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.abt-team-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.12); transform: translateY(-6px); }

.abt-team-card__photo-wrap {
  position: relative;
  overflow: hidden;
}
.abt-team-card__photo {
  width: 100%; height: 300px;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform .5s ease;
}
.abt-team-card:hover .abt-team-card__photo { transform: scale(1.06); }

.abt-team-card__socials {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  transform: translateY(100%);
  transition: transform .3s ease;
  background: linear-gradient(to top, rgba(10,61,124,.95), rgba(10,61,124,.6));
  padding: 20px 16px 14px;
  gap: 10px;
  justify-content: center;
}
.abt-team-card:hover .abt-team-card__socials { transform: translateY(0); }
.abt-team-card__socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: background .2s;
  border: 1px solid rgba(255,255,255,.2);
}
.abt-team-card__socials a:hover { background: var(--orange); border-color: var(--orange); }

.abt-team-card__info {
  padding: 20px;
  border-top: 3px solid var(--orange);
}
.abt-team-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}
.abt-team-card__role {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.abt-team-card__bio {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Timeline ───────────────────────────────────────────────── */
.abt-timeline__track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.abt-timeline__line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--blue));
}
.abt-tl-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 44px);
  margin-bottom: 48px;
  position: relative;
}
.abt-tl-item--right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 44px);
}
.abt-tl-item__connector {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.abt-tl-item__dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: #fff;
  transition: transform .3s;
}
.abt-tl-item:nth-child(odd) .abt-tl-item__dot { background: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,0,.2); }
.abt-tl-item:nth-child(even) .abt-tl-item__dot { background: var(--blue); box-shadow: 0 0 0 4px rgba(10,61,124,.2); }
.abt-tl-item:hover .abt-tl-item__dot { transform: scale(1.15); }
.abt-tl-item__card {
  background: var(--white);
  padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  max-width: 360px;
  width: 100%;
  border-left: 4px solid transparent;
  transition: box-shadow .3s, border-color .3s;
}
.abt-tl-item:nth-child(odd) .abt-tl-item__card { border-left-color: var(--orange); }
.abt-tl-item--right .abt-tl-item__card { border-left: none; border-right: 4px solid var(--blue); }
.abt-tl-item:hover .abt-tl-item__card { box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.abt-tl-item__year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.abt-tl-item--right .abt-tl-item__year { color: var(--blue); }
.abt-tl-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.abt-tl-item__desc { color: var(--text-muted); font-size: .85rem; line-height: 1.7; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.abt-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--blue);
}
.abt-cta__bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1400&q=60') center/cover;
  opacity: .12;
}
.abt-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.abt-cta__inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.abt-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 14px 0 16px;
  line-height: 1.15;
}
.abt-cta__sub {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.abt-cta__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.abt-cta__btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 32px;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: all .25s;
}
.abt-cta__btn--primary { background: var(--orange); color: #fff; }
.abt-cta__btn--primary:hover { background: #d95a00; transform: translateY(-2px); }
.abt-cta__btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.abt-cta__btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE — RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .abt-team__grid { grid-template-columns: repeat(2, 1fr); }
  .abt-values__grid { grid-template-columns: repeat(2, 1fr); }
  .abt-story__img { height: 420px; }
  .abt-story__img-secondary { width: 42%; bottom: -20px; right: -16px; }
}

@media (max-width: 768px) {
  /* Story */
  .abt-story__grid { grid-template-columns: 1fr; gap: 48px; }
  .abt-story__visual { order: -1; }
  .abt-story__img { height: 300px; }
  .abt-story__img-secondary { width: 44%; bottom: -16px; right: -12px; }
  .abt-story__badge-float { top: 16px; left: -12px; padding: 16px 18px; min-width: 90px; }
  .abt-story__badge-num { font-size: 2.2rem; }

  /* Stats */
  .abt-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .abt-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .abt-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .abt-stat:nth-last-child(-n+2) { border-bottom: none; }

  /* Mission */
  .abt-mv__grid { grid-template-columns: 1fr; gap: 12px; }
  .abt-mv__card { padding: 36px 28px; }

  /* Values */
  .abt-values__grid { grid-template-columns: 1fr 1fr; }
  .abt-value-card { padding: 28px 20px; }

  /* Team */
  .abt-team__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .abt-team-card__photo { height: 240px; }

  /* Timeline — collapse to single column */
  .abt-timeline__track { padding: 0 0 0 36px; }
  .abt-timeline__line { left: 20px; transform: none; }
  .abt-tl-item,
  .abt-tl-item--right {
    justify-content: flex-start;
    padding-left: 48px;
    padding-right: 0;
  }
  .abt-tl-item__connector { left: -14px; top: 14px; transform: none; }
  .abt-tl-item__dot { width: 36px; height: 36px; font-size: .75rem; }
  .abt-tl-item__card { max-width: 100%; border-left: 4px solid var(--orange) !important; border-right: none !important; }
  .abt-tl-item--right .abt-tl-item__year { color: var(--orange); }

  /* CTA */
  .abt-cta { padding: 72px 0; }
}

@media (max-width: 480px) {
  /* Hero */
  .abt-hero { height: 100svh; min-height: 560px; max-height: none; }
  .abt-hero__content { padding: 0 20px clamp(100px,18vh,140px); max-width: 100%; }
  .abt-hero__title { font-size: clamp(1.9rem,7vw,2.6rem); }
  .abt-hero__sub { font-size: .9rem; margin-bottom: 28px; }
  .abt-hero__ctas { flex-direction: column; align-items: flex-start; }
  .abt-hero__cta { padding: 14px 26px; font-size: .76rem; }
  .abt-hero .slider-arrows { bottom: clamp(100px,18vh,140px); right: 20px; }
  .abt-hero .slider-controls { left: 20px; }
  .abt-hero__scroll { display: none; }
  .abt-hero__statsbar { display: none; }
  .abt-hero__accent { width: 3px; }

  /* Story */
  .abt-story__img-secondary { display: none; }
  .abt-story__badges { flex-direction: column; }

  /* Values */
  .abt-values__grid { grid-template-columns: 1fr; }

  /* Team */
  .abt-team__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .abt-team-card__photo { height: 320px; }
  .abt-team-card__socials { transform: translateY(0); background: linear-gradient(to top, rgba(10,61,124,.9), transparent); }

  /* Stats */
  .abt-stats__grid { grid-template-columns: 1fr 1fr; }

  /* CTA buttons */
  .abt-cta__actions { flex-direction: column; align-items: center; }
  .abt-cta__btn { width: 100%; max-width: 280px; justify-content: center; }
}
