/* ============================================================
   VOLAR MEDIA HOUSE — GLOBAL STYLESHEET
   Version: 2.0 | Author: Volar Media House
   ============================================================ */

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --red:        #E8192C;
  --red-dark:   #c0111f;
  --red-light:  #ff3347;
  --red-pale:   #fff0f1;
  --red-pale2:  #ffe2e5;
  --white:      #ffffff;
  --off-white:  #f9f6f3;
  --light:      #f2eeeb;
  --border:     #e8e2dd;
  --border2:    #d8d0c8;
  --dark:       #1a1210;
  --dark2:      #2d201c;
  --text:       #2d2520;
  --muted:      #7a6e6a;
  --muted2:     #b0a49f;
  --card-bg:    #ffffff;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow:     0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg:  0 24px 80px rgba(0,0,0,0.14);
  --shadow-red: 0 12px 40px rgba(232,25,44,0.28);
  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --transition: 0.3s cubic-bezier(0.16,1,0.3,1);
  --font-head:  'DM Serif Display', Georgia, serif;
  --font-body:  'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.72;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; }
input, textarea, select { font-family: var(--font-body); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--dark);
  font-weight: 400;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
p { color: var(--muted); line-height: 1.8; }
em { color: var(--red); font-style: italic; }
strong { color: var(--dark); font-weight: 700; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 10px; }

/* ─── CUSTOM CURSOR ─── */
#cursor, #cursor-ring { pointer-events: none; position: fixed; z-index: 9999; border-radius: 50%; transform: translate(-50%,-50%); transition: transform 0.08s, width 0.3s, height 0.3s, opacity 0.3s; }
#cursor { width: 10px; height: 10px; background: var(--red); mix-blend-mode: multiply; }
#cursor-ring { width: 38px; height: 38px; border: 1.5px solid var(--red); opacity: 0.35; transition: all 0.18s ease-out; }
#cursor.hovered { width: 5px; height: 5px; }
#cursor-ring.hovered { width: 56px; height: 56px; opacity: 0.15; }
@media (hover: none) { #cursor, #cursor-ring { display: none; } }

/* ─── SECTION TAGS ─── */
.tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.71rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.tag::before { content: ''; width: 26px; height: 2px; background: var(--red); flex-shrink: 0; }
.tag-white { color: rgba(255,255,255,0.7); }
.tag-white::before { background: rgba(255,255,255,0.5); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: var(--radius-sm); border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap;
  line-height: 1;
}
.btn-red     { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); color: #fff; }
.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.btn-dark    { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); color: #fff; }
.btn-white   { background: #fff; color: var(--red); border-color: #fff; }
.btn-white:hover { background: var(--off-white); color: var(--red-dark); transform: translateY(-2px); }
.btn-ghost   { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); color: #fff; }
.btn-lg { padding: 17px 40px; font-size: 0.88rem; }
.btn-sm { padding: 9px 20px; font-size: 0.75rem; }
.btn-icon { gap: 10px; }
.btn-icon .arrow { transition: transform var(--transition); }
.btn-icon:hover .arrow { transform: translateX(4px); }

/* ─── FORMS ─── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text); margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px;
  background: var(--off-white); color: var(--dark);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: all var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 3px rgba(232,25,44,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 78px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 5vw;
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.09); }
.nav-logo { display: flex; align-items: center; gap: 0; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-fallback {
  font-family: var(--font-head); font-size: 1.4rem; color: var(--dark); display: none;
}
.nav-logo-fallback span { color: var(--red); }
.nav-center { display: flex; align-items: center; gap: 2px; margin-left: auto; margin-right: 24px; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.81rem; font-weight: 600; letter-spacing: 0.03em;
  color: var(--muted); transition: all 0.2s; position: relative; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--red); background: var(--red-pale); }
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-wrap:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px;
  min-width: 260px; max-width: 300px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.13);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  z-index: 300;
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 500; color: var(--text);
  transition: all 0.15s; white-space: nowrap;
}
.nav-dropdown a .nav-dd-icon { font-size: 1rem; width: 20px; text-align: center; }
.nav-dropdown a:hover { background: var(--red-pale); color: var(--red); }
.nav-dropdown .dd-divider { height: 1px; background: var(--border); margin: 6px 0; }
.nav-dropdown .dd-head { padding: 8px 14px 4px; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted2); }
.nav-btn { padding: 10px 24px; font-size: 0.79rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: #fff; flex-direction: column;
  align-items: flex-start; justify-content: center;
  gap: 6px; padding: 100px 5vw 60px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head); font-size: 2rem; color: var(--dark);
  padding: 6px 0; border-bottom: 1px solid var(--border); width: 100%;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu-sub { padding-left: 20px; display: flex; flex-direction: column; gap: 4px; margin: 4px 0; width: 100%; }
.mobile-menu-sub a { font-family: var(--font-body); font-size: 0.9rem; color: var(--muted); border-bottom: none; padding: 4px 0; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 156px 5vw 90px;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,25,44,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 { color: #fff; }
.page-hero .hero-desc { color: rgba(255,255,255,0.62); font-size: 1.07rem; max-width: 560px; margin-top: 18px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(255,255,255,0.42); margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.42); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { opacity: 0.3; }
.breadcrumb .current { color: var(--red); }
.page-hero-img-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-img-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }

/* ─── HERO HOME ─── */
.hero-home {
  min-height: 100vh;
  padding-top: 78px;
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; overflow: hidden; position: relative;
}
.hero-bg-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 2px 2px, rgba(232,25,44,0.055) 1px, transparent 0);
  background-size: 38px 38px;
}
.hero-left { padding: 80px 5vw; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-pale); border: 1px solid rgba(232,25,44,0.18);
  color: var(--red); font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 26px;
}
.hero-badge .pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.25} }
.hero-h1 { margin-bottom: 22px; }
.hero-underline { position: relative; display: inline-block; }
.hero-underline::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 4px; background: var(--red); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: lineGrow 1s 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }
.hero-desc { font-size: 1.08rem; max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust { display: flex; align-items: center; gap: 16px; padding-top: 28px; border-top: 1px solid var(--border); }
.trust-avs { display: flex; }
.trust-av {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff;
  background: linear-gradient(135deg, var(--red-pale), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 800; color: var(--red-dark);
  margin-left: -8px; flex-shrink: 0;
}
.trust-av:first-child { margin-left: 0; }
.trust-txt { font-size: 0.82rem; color: var(--muted); }
.trust-txt strong { color: var(--dark); }
.hero-right { position: relative; height: 100vh; min-height: 580px; overflow: hidden; }
.hero-visual {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, var(--dark) 0%, #2d1018 50%, #3d0d18 100%);
}
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(232,25,44,0.32) 0%, transparent 65%);
}
.hero-float-cards {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  gap: 14px; padding: 60px 40px;
}
.hfc {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.11); border-radius: var(--radius);
  padding: 18px 22px; color: #fff;
  animation: cardFloat 6s ease-in-out infinite;
}
.hfc:nth-child(2) { animation-delay: -2s; margin-left: 48px; }
.hfc:nth-child(3) { animation-delay: -4s; margin-left: 24px; }
@keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hfc-label { font-size: 0.67rem; opacity: 0.55; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 5px; }
.hfc-val { font-family: var(--font-head); font-size: 1.75rem; }
.hfc-change { font-size: 0.73rem; margin-top: 3px; }
.hfc-change.up { color: #4ade80; }
.hfc-change.dn { color: #f87171; }
.hero-location-tag {
  position: absolute; bottom: 28px; right: 28px; z-index: 3;
  background: var(--red); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-sm);
  font-size: 0.77rem; font-weight: 700;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--dark); color: #fff;
  padding: 52px 5vw;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 28px;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), #ff8c00, var(--red-light), var(--red));
  background-size: 300% 100%; animation: gradShift 4s linear infinite;
}
@keyframes gradShift { 0%{background-position:0} 100%{background-position:300%} }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head); font-size: 3rem; color: #fff;
  line-height: 1; margin-bottom: 8px;
}
.stat-num sup { font-size: 1.5rem; color: var(--red); vertical-align: super; }
.stat-num sub { font-size: 1.2rem; color: var(--red); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.46); letter-spacing: 0.09em; text-transform: uppercase; }

/* ─── SECTION LAYOUTS ─── */
.section { padding: 96px 5vw; }
.section-sm { padding: 64px 5vw; }
.section-lg { padding: 120px 5vw; }
.section-dark { background: var(--dark); }
.section-light { background: var(--off-white); }
.section-white { background: var(--white); }
.section-red { background: var(--red); }

.section-head { margin-bottom: 56px; }
.section-head-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; margin-bottom: 56px; }
.section-head-center { text-align: center; }
.section-head-center .tag { justify-content: center; }
.section-head-center h2 { max-width: 640px; margin: 0 auto; }
.section-head-center p { max-width: 560px; margin: 16px auto 0; }

/* ─── GRID SYSTEMS ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ─── CARDS ─── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(232,25,44,0.15); }
.card-pad { padding: 32px 28px; }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--red-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
  transition: background var(--transition);
}
.card:hover .card-icon { background: var(--red); }
.card-tag { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.88rem; line-height: 1.75; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); transition: gap var(--transition);
}
.card:hover .card-link { gap: 12px; }
.card-img { overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}

/* Service Card Accent */
.card-service::before {
  content: ''; display: block; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.card-service:hover::before { transform: scaleX(1); }

/* ─── SERVICE ICON BIG ─── */
.svc-num {
  font-family: var(--font-head); font-size: 4rem;
  color: var(--border); line-height: 1; margin-bottom: 16px;
  transition: color var(--transition);
}
.card:hover .svc-num { color: var(--red-pale2); }

/* ─── SPLIT SECTIONS ─── */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.split-3-2 { grid-template-columns: 3fr 2fr; }
.split-2-3 { grid-template-columns: 2fr 3fr; }
.split-content { padding: 80px 5vw; display: flex; flex-direction: column; justify-content: center; }
.split-img { overflow: hidden; position: relative; }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.split:hover .split-img img { transform: scale(1.03); }
.split-img-placeholder { width: 100%; height: 100%; min-height: 480px; display: flex; align-items: center; justify-content: center; font-size: 7rem; }
.split-dark { background: var(--dark); }
.split-dark h2, .split-dark h3 { color: #fff; }
.split-dark p { color: rgba(255,255,255,0.58); }
.split-dark .tag { color: var(--red); }

/* ─── PROCESS STEPS ─── */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
  margin-top: 60px; position: relative;
}
.process-grid::before {
  content: ''; position: absolute;
  top: 35px; left: 9%; right: 9%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-dot {
  width: 70px; height: 70px; border-radius: 50%;
  background: #fff; border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px; position: relative; z-index: 1;
  font-family: var(--font-head); font-size: 1.5rem; color: var(--red);
  box-shadow: 0 0 0 8px var(--red-pale);
  transition: all var(--transition);
}
.process-step:hover .process-dot { background: var(--red); color: #fff; transform: scale(1.08); }
.process-step h4 { margin-bottom: 10px; }
.process-step p { font-size: 0.85rem; }

/* ─── TIMELINE ─── */
.timeline { position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 27px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--red), var(--red-pale));
}
.tl-item { display: grid; grid-template-columns: 54px 1fr; gap: 28px; margin-bottom: 36px; }
.tl-dot {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  background: #fff; border: 2px solid var(--red); position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.2rem; color: var(--red);
  box-shadow: 0 0 0 5px var(--red-pale);
  transition: all var(--transition);
}
.tl-item:hover .tl-dot { background: var(--red); color: #fff; }
.tl-content {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all var(--transition);
}
.tl-item:hover .tl-content { box-shadow: var(--shadow); border-color: rgba(232,25,44,0.15); }
.tl-content h4 { margin-bottom: 8px; }
.tl-content p { font-size: 0.87rem; }

/* ─── TESTIMONIALS ─── */
.testi-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 30px;
  transition: all var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-stars { color: var(--red); letter-spacing: 2px; margin-bottom: 14px; font-size: 0.88rem; }
.testi-text { font-size: 0.94rem; font-style: italic; line-height: 1.82; color: var(--text); margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red-pale), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 800; color: var(--red-dark);
}
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.testi-role { font-size: 0.76rem; color: var(--muted); }

/* ─── CTA BLOCKS ─── */
.cta-section {
  background: var(--red); padding: 100px 5vw;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.07) 1px, transparent 0);
  background-size: 28px 28px; pointer-events: none;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2, .cta-section h3 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.73); max-width: 520px; margin: 14px auto 44px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Mid-page CTA strip */
.cta-strip {
  background: var(--dark); padding: 52px 5vw;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.cta-strip h3 { color: #fff; margin-bottom: 6px; }
.cta-strip p { color: rgba(255,255,255,0.52); margin: 0; font-size: 0.9rem; }
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* Inline CTA bar */
.cta-inline {
  background: var(--red-pale); border: 1px solid rgba(232,25,44,0.18);
  border-radius: var(--radius-lg); padding: 40px 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  margin: 56px 0;
}
.cta-inline h3 { margin-bottom: 6px; color: var(--dark); }
.cta-inline p { color: var(--muted); margin: 0; font-size: 0.9rem; }

/* ─── BLOG CARDS ─── */
.blog-card .card-img { height: 220px; }
.blog-card-featured .card-img { height: 320px; }
.blog-card h3 { font-size: 1.2rem; line-height: 1.35; margin-bottom: 10px; }
.blog-card p { font-size: 0.86rem; }
.blog-meta { display: flex; align-items: center; gap: 0; margin-top: 16px; flex-wrap: wrap; }
.blog-meta-item { font-size: 0.75rem; color: var(--muted); }
.blog-meta-item::before { content: '·'; margin: 0 8px; }
.blog-meta-item:first-child::before { content: ''; margin: 0 8px 0 0; }
.blog-cat-badge {
  display: inline-block;
  background: var(--red-pale); color: var(--red);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 11px; border-radius: 100px; margin-bottom: 12px;
}

/* Single Blog Page */
.blog-article { max-width: 780px; margin: 0 auto; padding: 80px 5vw; }
.blog-article h1 { margin-bottom: 24px; }
.blog-article .blog-meta { margin-bottom: 36px; }
.blog-article-content { font-size: 1.02rem; line-height: 1.9; color: var(--text); }
.blog-article-content h2 { font-size: 1.9rem; margin: 40px 0 18px; }
.blog-article-content h3 { font-size: 1.45rem; margin: 32px 0 14px; }
.blog-article-content p { margin-bottom: 20px; color: var(--text); }
.blog-article-content ul, .blog-article-content ol { margin: 0 0 20px 24px; list-style: disc; }
.blog-article-content li { margin-bottom: 8px; color: var(--text); }
.blog-article-content blockquote {
  border-left: 4px solid var(--red); padding: 20px 28px;
  background: var(--red-pale); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0; font-style: italic; font-size: 1.05rem; color: var(--dark);
}
.blog-article-content strong { color: var(--dark); }
.blog-article-content a { color: var(--red); border-bottom: 1px solid var(--red-pale2); }
.blog-share { display: flex; align-items: center; gap: 12px; margin: 48px 0; padding: 28px; background: var(--off-white); border-radius: var(--radius); }
.blog-author-box {
  background: var(--off-white); border-radius: var(--radius-lg); padding: 32px;
  display: flex; gap: 24px; align-items: flex-start;
  border: 1px solid var(--border);
}
.blog-author-av {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red-pale), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: var(--red-dark);
}

/* ─── MARQUEE ─── */
.marquee-section { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-track { display: flex; }
.marquee-inner { display: flex; animation: marqueeAnim 38s linear infinite; }
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item { flex-shrink: 0; width: 380px; height: 260px; position: relative; overflow: hidden; }
.marquee-item-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
  position: relative;
}
.marquee-item-inner::after {
  content: attr(data-lbl);
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: #fff; font-size: 0.76rem; font-weight: 700; font-family: var(--font-body);
  padding: 24px 16px 12px; letter-spacing: 0.07em; text-transform: uppercase;
}
@keyframes marqueeAnim { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── ICON FEATURES LIST ─── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--text);
}
.feature-list li::before {
  content: '✓'; width: 20px; height: 20px; flex-shrink: 0;
  background: var(--red-pale); color: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 900; margin-top: 2px;
}
.feature-grid-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.feature-grid-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.86rem; color: var(--text);
}
.feature-grid-list li::before {
  content: '✓'; width: 18px; height: 18px; flex-shrink: 0;
  background: var(--red-pale); color: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem; font-weight: 900; margin-top: 2px;
}

/* ─── PRICING BADGE ─── */
.price-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-pale); border: 1px solid rgba(232,25,44,0.15);
  color: var(--red); font-size: 0.82rem; font-weight: 600;
  padding: 10px 18px; border-radius: var(--radius-sm); margin-top: 20px;
}

/* ─── RESULT CARDS ─── */
.result-card {
  border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius);
  padding: 30px 22px; text-align: center; transition: all var(--transition);
}
.result-card:hover { border-color: var(--red); background: rgba(232,25,44,0.06); }
.result-num {
  font-family: var(--font-head); font-size: 2.8rem;
  color: var(--red); line-height: 1; margin-bottom: 10px;
}
.result-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* Property Card */
.property-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--border); transition: all var(--transition); }
.property-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.property-img { height: 220px; position: relative; overflow: hidden; }
.property-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.property-card:hover .property-img img { transform: scale(1.05); }
.property-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.prop-tag { position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff; font-size: 0.66rem; font-weight: 800; padding: 4px 12px; border-radius: 100px; letter-spacing: 0.09em; text-transform: uppercase; }
.property-body { padding: 22px; }
.prop-location { font-size: 0.75rem; color: var(--muted); margin-bottom: 7px; }
.property-body h4 { font-size: 1.1rem; margin-bottom: 10px; }
.prop-stats { display: flex; gap: 14px; font-size: 0.77rem; color: var(--muted); margin-bottom: 16px; }
.prop-price { font-family: var(--font-head); font-size: 1.45rem; color: var(--dark); }

/* ─── VALUE CARDS ─── */
.value-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 24px;
  text-align: center; transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--red); }
.value-icon { font-size: 2.4rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }

/* ─── TEAM CARDS ─── */
.team-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--border); transition: all var(--transition); text-align: center; }
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.team-img { height: 230px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 5rem; background: linear-gradient(135deg, var(--red-pale), var(--light)); }
.team-body { padding: 26px; }
.team-role { color: var(--red); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 8px; }
.team-card h3 { font-size: 1.2rem; margin-bottom: 10px; }

/* ─── SOCIAL LINKS ─── */
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.78rem; font-weight: 700;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark); color: #fff;
  padding: 80px 5vw 36px;
}
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 36px;
}
.footer-brand img { height: 38px; filter: brightness(10); margin-bottom: 18px; }
.footer-brand .logo-fallback { font-family: var(--font-head); font-size: 1.4rem; color: #fff; margin-bottom: 18px; display: none; }
.footer-brand .logo-fallback span { color: var(--red); }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.46); line-height: 1.82; max-width: 270px; margin-bottom: 22px; }
.footer-col h5 { font-family: var(--font-head); font-size: 1rem; color: #fff; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.84rem; color: rgba(255,255,255,0.48); transition: color var(--transition); }
.footer-col a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.76rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-legal a:hover { color: var(--red); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item .icon { color: var(--red); font-size: 0.9rem; margin-top: 3px; }
.footer-contact-item span { font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.footer-contact-item a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--red); }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; padding: 80px 5vw; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 26px; }
.cd-icon { width: 46px; height: 46px; background: var(--red-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.cd-label { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.cd-val { font-size: 0.92rem; font-weight: 600; color: var(--dark); }
.contact-form-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow); }

/* ─── MISC UTILITY ─── */
.text-red { color: var(--red) !important; }
.text-white { color: #fff !important; }
.text-muted { color: var(--muted) !important; }
.text-dark { color: var(--dark) !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.divider { height: 1px; background: var(--border); margin: 48px 0; }
.badge-pill { display: inline-block; background: var(--red-pale); color: var(--red); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.10s !important; }
.delay-2 { transition-delay: 0.20s !important; }
.delay-3 { transition-delay: 0.30s !important; }
.delay-4 { transition-delay: 0.40s !important; }
.delay-5 { transition-delay: 0.50s !important; }

/* ─── ACCORDION / FAQ ─── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; text-align: left;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; color: var(--dark);
  gap: 16px; transition: color var(--transition);
}
.faq-q:hover { color: var(--red); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--muted); transition: all var(--transition); }
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s; font-size: 0.92rem; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }

/* ─── FILTER TABS ─── */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-tab {
  padding: 8px 20px; border-radius: 100px;
  border: 1.5px solid var(--border); background: #fff;
  font-size: 0.78rem; font-weight: 700; color: var(--muted);
  transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--red); color: var(--red); }
.filter-tab.active { background: var(--red); border-color: var(--red); color: #fff; }

/* ─── COUNTERS ─── */
.counter-num { font-family: var(--font-head); }

/* ─── BACK TO TOP ─── */
#backToTop {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: var(--shadow-red);
  opacity: 0; pointer-events: none;
  transition: all var(--transition); transform: translateY(12px);
}
#backToTop.visible { opacity: 1; pointer-events: all; transform: none; }
#backToTop:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1280px) {
  .grid-5 { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 1100px) {
  .hero-home { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 130px 5vw 80px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .section-head-2col { grid-template-columns: 1fr; gap: 24px; }
  .split { grid-template-columns: 1fr; }
  .split-content { padding: 60px 5vw; }
  .split-img { min-height: 360px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-strip { grid-template-columns: 1fr; }
  .cta-strip-actions { justify-content: flex-start; }
  .cta-inline { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .nav-center, .nav-btn { display: none; }
  .hamburger { display: flex; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }
  .section, .section-sm, .section-lg { padding: 64px 5vw; }
  .stats-bar { padding: 40px 5vw; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-head-2col { grid-template-columns: 1fr; gap: 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-article { padding: 60px 5vw; }
  .contact-form-box { padding: 28px 20px; }
  .cta-section { padding: 72px 5vw; }
  .page-hero { padding: 120px 5vw 64px; }
  #backToTop { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .stats-bar { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .filter-tabs { gap: 6px; }
}
