/* ============================================================
   REAL TOUR 360 — MAIN STYLESHEET
   Dark theme matching pending.media design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-2:      #181818;
  --dark-3:      #222222;
  --red:         #cc1111;
  --red-dark:    #aa0000;
  --red-glow:    rgba(204,17,17,0.15);
  --white:       #ffffff;
  --gray:        #888888;
  --gray-light:  #cccccc;
  --green:       #22c55e;
  --font:        'Inter', sans-serif;
  --nav-height:  72px;
  --max-w:       1200px;
  --radius:      14px;
  --transition:  0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.02rem;
  font-weight: 800;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 58px;
}
.btn-large {
  padding: 20px 42px;
  min-height: 62px;
  font-size: 1.05rem;
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,17,17,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 580px;
  margin-bottom: 52px;
  line-height: 1.75;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1000;
  height: var(--nav-height);
  width: min(calc(100% - 80px), 1320px);
  display: flex;
  align-items: center;
  padding: 0;
  transform: translateX(-50%);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo {
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-logo .accent { color: var(--red); }
.nav-logo-bar {
  width: 4px;
  height: 20px;
  background: var(--red);
  border-radius: 2px;
  margin-right: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  margin-left: 0;
  flex-shrink: 0;
  padding: 13px 26px;
  min-height: 48px;
  font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vh, 32px);
  padding: 88px 24px 48px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-close {
  position: absolute;
  top: 28px; right: 40px;
  font-size: 2rem;
  background: none;
  color: var(--white);
  line-height: 1;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-real-estate-photography-tennessee-al.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.65) 60%,
    rgba(10,10,10,0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px 40px 90px;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.hero-available {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
}
.hero-available-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 680px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-text-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: gap 0.2s;
}
.hero-text-link:hover { gap: 12px; }

/* ===== TICKER ===== */
.ticker-label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 10px;
}
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
  padding: 6px 0;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 36px;
  z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, rgba(10,10,10,0.95), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left,  rgba(10,10,10,0.95), transparent); }
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 34s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  padding: 0 12px;
  white-space: nowrap;
}
.ticker-item-wide .ticker-logo {
  width: 176px;
}
.ticker-logo {
  display: block;
  width: 142px;
  height: 54px;
  object-fit: contain;
  padding: 0 4px;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: grayscale(1);
  opacity: 0.66;
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.ticker-logo:hover {
  opacity: 0.9;
  filter: grayscale(1);
}
.ticker-name {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  padding: 0 18px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.07);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.ticker-name:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
}
.ticker-item::after {
  display: none;
  content: none;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reviews badge */
.hero-reviews {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-stars { display: flex; gap: 3px; }
.hero-stars span { color: #f59e0b; font-size: 0.95rem; }
.hero-reviews-text { font-size: 0.85rem; color: var(--gray-light); }
.hero-reviews-text strong { color: var(--white); }

/* ===== SOCIAL PROOF ===== */
.social-proof {
  background: var(--dark);
  padding: 90px 0;
  overflow: hidden;
}
.social-proof-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 56px;
}
.trusted-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.testimonials-scroll {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-l 40s linear infinite;
  padding: 0 40px;
}
.testimonials-scroll:hover { animation-play-state: paused; }
.t-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  width: 330px;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.t-card:hover { border-color: rgba(204,17,17,0.3); }
.t-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.t-stars span { color: #f59e0b; font-size: 0.85rem; }
.t-text {
  font-size: 0.875rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red-glow);
  border: 1px solid rgba(204,17,17,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--red);
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 0.875rem; }
.t-role { font-size: 0.78rem; color: var(--gray); }
@keyframes scroll-l {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PORTFOLIO ===== */
.portfolio {
  background: var(--black);
  padding: 100px 40px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 0;
}
.p-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--dark-2);
  cursor: pointer;
}
.p-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.p-item:hover img { transform: scale(1.05); }
.p-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-item:hover .p-item-overlay { opacity: 1; }
.p-item-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.p-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-play-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(204,17,17,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
  backdrop-filter: blur(4px);
}
.p-item:hover .p-play-btn {
  transform: scale(1.1);
  background: var(--red);
}
.p-play-btn svg { width: 20px; height: 20px; fill: var(--white); margin-left: 3px; }
.portfolio-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== SERVICES ===== */
.services {
  background: var(--dark);
  padding: 100px 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
  margin-top: 0;
}
.svc-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 0 28px 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.svc-card-img {
  width: calc(100% + 56px);
  margin: 0 -28px 24px;
  height: 150px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.2);
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.svc-card:hover {
  border-color: rgba(204,17,17,0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 50px; height: 50px;
  background: var(--red-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.4rem;
}
.svc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.svc-desc {
  font-size: 0.855rem;
  color: var(--gray);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.45s ease;
  opacity: 0;
}
.svc-card:hover .svc-desc {
  max-height: 200px;
  opacity: 1;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.3s, gap 0.2s;
}
.svc-card:hover .svc-link { opacity: 1; }
.svc-link:hover { gap: 10px; }
.services-cta { text-align: center; margin-top: 52px; }

/* ===== PROCESS ===== */
.process {
  background: var(--black);
  padding: 100px 40px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  display: none;
  content: none;
}
.process-steps::after {
  display: none;
  content: none;
}
.process-step { text-align: center; }
.process-step.fade-up {
  transform: translateY(38px) scale(0.96);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-step.fade-up.visible {
  transform: translateY(0) scale(1);
}
.process-step.fade-up.visible .process-num {
  box-shadow: 0 0 0 8px rgba(204,17,17,0.08), 0 18px 42px rgba(204,17,17,0.18);
  animation: process-pop 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  margin: 0 auto 24px;
}
.process-step h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--gray-light); }
@keyframes process-pop {
  0% { transform: scale(0.82); }
  62% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ===== ABOUT ===== */
.about { background: var(--dark); padding: 100px 40px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-features {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-light);
}
.check-icon {
  width: 22px; height: 22px;
  background: var(--red-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 20px;
}
.about-img-badge .stat { font-size: 1.6rem; font-weight: 900; color: var(--white); }
.about-img-badge .stat-label { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }

/* ===== WHY CHOOSE US ===== */
.why { background: var(--black); padding: 100px 40px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.why-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover {
  border-color: rgba(204,17,17,0.3);
  transform: translateY(-4px);
}
.why-icon { font-size: 2rem; margin-bottom: 20px; }
.why-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.why-card p { font-size: 0.875rem; color: var(--gray-light); line-height: 1.75; }

/* ===== REVIEWS ===== */
.reviews { background: var(--dark); padding: 100px 0; overflow: hidden; }
.reviews-header { max-width: var(--max-w); margin: 0 auto; padding: 0 40px 56px; }
.reviews-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.reviews-stars { display: flex; gap: 4px; }
.reviews-stars span { color: #f59e0b; }
.reviews-count { font-size: 0.875rem; color: var(--gray); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.r-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
}
.r-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.r-stars span { color: #f59e0b; font-size: 0.85rem; }
.r-text {
  font-size: 0.875rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.r-author { font-weight: 700; font-size: 0.875rem; }
.r-role { font-size: 0.78rem; color: var(--gray); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--red);
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.cta-banner h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
}
.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.88;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ===== CONTACT ===== */
.contact { background: var(--dark); padding: 100px 40px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.c-item { display: flex; gap: 16px; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px;
  background: var(--red-glow);
  border: 1px solid rgba(204,17,17,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.c-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 4px; }
.c-value { font-size: 0.95rem; color: var(--white); }
.c-value a { color: var(--white); transition: color 0.2s; }
.c-value a:hover { color: var(--red); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 1rem; /* min 16px — prevents iOS Safari auto-zoom */
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--red); }
.contact-form textarea { height: 130px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray); }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 40px 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 52px;
}
.footer-logo { font-size: 1rem; font-weight: 900; margin-bottom: 16px; }
.footer-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.75; max-width: 300px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 0.875rem; color: var(--gray); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.footer-copy { font-size: 0.8rem; color: var(--gray); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: var(--gray); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ===== FADE-IN ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 40px 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; color: var(--gray-light); max-width: 520px; line-height: 1.75; }

/* ===== ACCORDION (FAQ) ===== */
.faq-page-section {
  background: var(--black);
  padding: 90px 40px;
}
.faq-shell {
  max-width: 1120px;
}
.faq-group {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 56px;
  padding: 28px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
}
.faq-group-media {
  min-height: 290px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark-2);
}
.faq-group-media img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  display: block;
}
.faq-group-content h2 {
  font-size: 1.55rem;
  font-weight: 900;
  margin-bottom: 22px;
}
.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}
.accordion-btn:hover { color: var(--red); }
.accordion-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--red);
  border-color: var(--red);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body p {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
}
.faq-contact-card {
  margin-top: 72px;
  text-align: center;
  padding: 48px;
  background: var(--dark-2);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ===== SERVICES DETAIL PAGE ===== */
.service-detail-stack {
  background: var(--dark);
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
  padding: 92px max(40px, calc((100vw - 1240px) / 2));
  margin: 0;
  border-bottom: 0;
}
.service-detail:nth-child(odd) {
  background: var(--dark);
}
.service-detail:nth-child(even) {
  background: #f5f5f5;
}
.service-detail:nth-child(even) .service-detail-content h2 {
  color: #0a0a0a;
}
.service-detail:nth-child(even) .service-detail-content p,
.service-detail:nth-child(even) .service-includes li {
  color: #4f4f4f;
}
.service-detail:nth-child(even) .service-includes h4 {
  color: #777;
}
.service-detail:nth-child(even) { direction: ltr; }
.service-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
  background: var(--dark-2);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-detail-content { padding: 0; max-width: 560px; }
.service-detail-content h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 16px; }
.service-detail-content p { font-size: 0.95rem; color: var(--gray-light); line-height: 1.8; margin-bottom: 24px; }
.service-includes { margin-bottom: 28px; }
.service-includes h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); margin-bottom: 12px; }
.service-includes li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--gray-light); padding: 6px 0;
}
.service-includes li::before { content: '✓'; color: var(--red); font-weight: 700; }

/* ===== PORTFOLIO GALLERY PAGE ===== */
.portfolio-gallery-section {
  background: var(--black);
  padding: 86px 40px 96px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item {
  appearance: none;
  display: block;
  grid-column: span 3;
  width: 100%;
  padding: 0;
  font: inherit;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--dark-2);
  cursor: pointer;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.gallery-item:nth-child(-n+2) {
  grid-column: span 6;
  aspect-ratio: 16 / 10;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,0.28));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
  filter: contrast(1.04) saturate(1.03);
}
.gallery-item.is-hidden {
  display: none;
}
.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
}
.portfolio-lightbox.open { display: flex; }
.portfolio-lightbox img {
  display: block;
  max-width: min(1180px, 92vw);
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}
.portfolio-lightbox button {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.portfolio-lightbox button:hover,
.portfolio-lightbox button:focus-visible {
  background: var(--red);
  transform: scale(1.05);
  outline: none;
}
.portfolio-lightbox-close {
  top: 24px;
  right: 24px;
}
.portfolio-lightbox-prev,
.portfolio-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}
.portfolio-lightbox-prev { left: 24px; }
.portfolio-lightbox-next { right: 24px; }
.portfolio-lightbox-prev:hover,
.portfolio-lightbox-prev:focus-visible,
.portfolio-lightbox-next:hover,
.portfolio-lightbox-next:focus-visible {
  transform: translateY(-50%) scale(1.05);
}

/* ===== TEAM GRID ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--dark-2);
  overflow: hidden;
  margin-bottom: 18px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
}
.team-name { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--gray); }

/* ============================================================
   REDESIGN ADDITIONS — light sections, trust-split, new styles
   ============================================================ */

/* ── Utility: bright-white / light sections ── */
.section-light { background: #f5f5f5 !important; }
.section-title-dark { color: #0a0a0a; }
.section-sub-dark { color: #555; }
.accent-red { color: var(--red); }

/* ── Hero tag — red outline like Pending Media ── */
.hero-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--red);
  border-radius: 50px;
  padding: 5px 14px;
}

/* ── Hero reviews — vertical stack ── */
.hero-reviews {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.hero-rating-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stars { display: flex; gap: 3px; }
.hero-stars span { color: #f59e0b; font-size: 1rem; }
.hero-google-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-top: 1px;
}

/* ── Trusted pill — red border ── */
.trusted-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 1px solid var(--red);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

/* ── Trust Split section (Pending Media style) ── */
.trust-split {
  background: var(--dark);
  padding: 80px 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: center;
}
.trust-left { padding-right: 20px; }
.trust-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-top: 4px;
  max-width: 560px;
  text-wrap: balance;
}
.trust-divider-line {
  width: 1px;
  height: 200px;
  background: rgba(255,255,255,0.1);
  justify-self: center;
}
.trust-right {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-left: 20px;
}
.trust-photo-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--red);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--dark-3);
}
.trust-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.trust-photo-placeholder {
  width: 100%; height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gray);
}
.trust-review-block { flex: 1; }
.trust-stars { display: flex; gap: 3px; margin-bottom: 8px; }
.trust-stars span { color: #f59e0b; font-size: 0.9rem; }
.trust-review-summary {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  margin-bottom: 10px;
}
.trust-quote {
  font-size: 0.875rem;
  color: var(--gray-light);
  line-height: 1.75;
  font-style: italic;
}

/* ── Services image-card grid (Pending Media style) ── */
.services.section-light { padding: 100px 0; }
.services.section-light .container { padding: 0 40px; }
.services-home-band {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(245,245,245,0.96)),
    url('../assets/gallery-interior-photography-tn-02.jpg') center/cover fixed !important;
}
.services-grid-img {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0;
}
.svc-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: #ddd;
  cursor: pointer;
  color: var(--white);
  display: block;
  text-decoration: none;
}
.svc-img-card:focus-visible {
  outline: 3px solid rgba(204,17,17,0.7);
  outline-offset: 4px;
}
.svc-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.svc-img-card:hover img { transform: scale(1.06); }
.svc-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  transition: background 0.4s ease, padding-top 0.4s ease;
}
.svc-img-card:hover .svc-img-overlay {
  padding-top: 80px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 100%);
}
.svc-img-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
}
.svc-arrow {
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.svc-img-card:hover .svc-arrow { transform: translateX(4px); }
.svc-img-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.4s ease, margin-top 0.35s ease;
}
.svc-img-card:hover .svc-img-desc {
  max-height: 100px;
  margin-top: 7px;
}


/* ===== PRICING PREVIEW ===== */
.pricing-preview {
  background: #f5f5f5;
  padding: 100px 0;
}
.pricing-preview-home {
  background:
    linear-gradient(135deg, rgba(10,10,10,0.96), rgba(18,18,18,0.92)),
    url('../assets/gallery-aerial-drone-real-estate-tn-01.jpg') center/cover fixed !important;
}
.pricing-preview-home .section-title-dark,
.pricing-preview-home .package-card h3 {
  color: var(--white);
}
.pricing-preview-home .section-sub,
.pricing-preview-home .pricing-note p {
  color: rgba(255,255,255,0.74);
}
.pricing-preview-home .package-card {
  background: rgba(255,255,255,0.96);
  color: #111;
  min-height: 500px;
  padding: 34px 30px 30px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}
.pricing-preview-home .package-card h3 {
  color: #111;
  min-height: 68px;
  margin: 14px 0 18px;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
}
.pricing-preview-home .package-card-featured {
  background: #111;
  color: var(--white);
}
.pricing-preview-home .package-card-featured h3 {
  color: var(--white);
}
.pricing-preview-home .package-topline {
  margin-bottom: 8px;
}
.pricing-preview-home .package-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(204,17,17,0.1);
  border: 1px solid rgba(204,17,17,0.22);
  letter-spacing: 1.2px;
}
.pricing-preview-home .package-card-featured .package-label {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
.pricing-preview-home .package-features {
  background: rgba(0,0,0,0.025);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 18px;
  margin-top: 18px;
}
.pricing-preview-home .package-card-featured .package-features {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.12);
}
.pricing-preview .container { padding: 0 40px; }
.pricing-preview .section-sub { color: #555; }
.pricing-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 42px;
}
.pricing-intro .section-sub {
  margin: 0;
  max-width: 620px;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.package-card {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 0 28px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #111;
  box-shadow: 0 10px 34px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.package-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--red);
  opacity: 0.9;
  z-index: 2;
}
.package-media {
  height: 170px;
  margin: 0 -28px 24px;
  overflow: hidden;
  background: #111;
}
.package-media img,
.standalone-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 0.45s ease, filter 0.45s ease;
}
.package-card:hover .package-media img,
.standalone-price-card:hover .standalone-media img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.08);
}
.package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(204,17,17,0.36);
  background: var(--white);
}
.package-card-featured {
  background: #111;
  border-color: rgba(204,17,17,0.55);
  color: var(--white);
}
.package-card-featured .package-range,
.package-card-featured .package-price span,
.package-card-featured .package-features li {
  color: rgba(255,255,255,0.72);
}
.package-card-featured .package-features {
  border-top-color: rgba(255,255,255,0.12);
}
.package-card-featured .package-link {
  color: var(--white);
}
.package-card-wide {
  grid-column: span 2;
  min-height: 410px;
}
.package-options-card {
  background: #f7f7f7;
}
.package-options-card h3 {
  min-height: auto;
}
.package-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
  margin-bottom: 20px;
}
.package-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--red);
}
.package-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.package-card-featured .package-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  min-height: 34px;
  border-radius: 0 8px 0 8px;
  padding: 0 16px;
  transform: none;
  z-index: 4;
  box-shadow: 0 10px 24px rgba(204,17,17,0.22);
}
.package-card h3 {
  min-height: 58px;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.12;
  margin-bottom: 22px;
}
.package-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: clamp(2.25rem, 3.3vw, 3.2rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 8px;
}
.package-price span {
  max-width: 48px;
  font-size: 0.7rem;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
}
.package-range {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 22px;
}
.package-summary-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px 14px;
  margin: 0 0 22px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  list-style: none;
}
.package-summary-list li {
  position: relative;
  padding-left: 18px;
  color: #444;
  font-size: 0.88rem;
  line-height: 1.4;
}
.package-summary-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.package-card-featured .package-summary-list {
  border-top-color: rgba(255,255,255,0.12);
}
.package-card-featured .package-summary-list li {
  color: rgba(255,255,255,0.78);
}
.package-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 26px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(0,0,0,0.09);
  list-style: none;
}
.package-features-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}
.package-features li {
  position: relative;
  padding-left: 22px;
  color: #444;
  font-size: 0.9rem;
  line-height: 1.45;
}
.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}
.package-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.package-link:hover {
  color: var(--red);
}
.pricing-note {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 34px;
}
.pricing-note p {
  max-width: 650px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}
.pricing-full-section .package-grid-full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pricing-full-section .package-card {
  min-height: auto;
}
.pricing-full-section .package-card-wide {
  grid-column: span 2;
}
.price-details {
  margin: 22px 0 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 14px 0;
}
.package-card-featured .price-details {
  border-color: rgba(255,255,255,0.14);
}
.standalone-price-card .price-details {
  margin: auto 0 0;
  border-color: rgba(255,255,255,0.1);
}
.price-details summary {
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--red);
}
.price-tier-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.price-tier-list-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}
.price-tier-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: #4b4b4b;
  font-size: 0.9rem;
}
.price-tier-list li:last-child {
  border-bottom: 0;
}
.price-tier-list strong {
  color: #111;
  font-weight: 900;
  white-space: nowrap;
}
.package-card-featured .price-tier-list li {
  color: rgba(255,255,255,0.74);
  border-bottom-color: rgba(255,255,255,0.08);
}
.package-card-featured .price-tier-list strong {
  color: var(--white);
}
.pricing-service-section .section-sub {
  color: var(--gray-light);
}
.standalone-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.standalone-price-card-add-on {
  min-height: 350px;
}
.standalone-price-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0 24px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 390px;
}
.standalone-media {
  height: 150px;
  margin: 0 -24px 24px;
  overflow: hidden;
  background: #050505;
}
.standalone-price-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.standalone-price-card p {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.standalone-price-card .price-tier-list li {
  color: rgba(255,255,255,0.72);
  border-bottom-color: rgba(255,255,255,0.08);
}
.standalone-price-card .price-tier-list strong {
  color: var(--white);
}
/* ── About on light background ── */
.about.section-light { padding: 100px 0; }
.about.section-light .container { padding: 0 40px; }
.about-features-dark li { color: #444; }
.about-features-dark .check-icon {
  background: rgba(204,17,17,0.12);
  color: var(--red);
}

/* ── Why section — split layout (Pending Media style) ── */
.why { background: var(--black); padding: 100px 0; }
.why .container { padding: 0 40px; }
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--red);
}
.why-split-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.why-text .section-sub { color: var(--gray-light); }

/* ── Reviews on light background ── */
.reviews.section-light { padding: 100px 0; overflow: visible; }
.reviews.section-light .container { padding: 0 40px; }
.about-reviews {
  background: transparent;
  padding: 72px 0 0;
  overflow: visible;
}
.about-reviews .container {
  padding: 0 40px;
}
.about-reviews .reviews-intro {
  margin-bottom: 28px;
}
.about-reviews .review-rotator {
  max-width: none;
}
.reviews-intro { margin-bottom: 56px; }
.reviews-intro-split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.reviews-google-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}
.reviews-rating-big {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0a0a0a;
  line-height: 1;
}
.reviews-stars-row { display: flex; gap: 4px; }
.reviews-stars-row span { color: #f59e0b; font-size: 1.3rem; }
.reviews-google-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
}
.seo-page-section {
  padding-top: 90px;
}
.seo-dark-section {
  background: var(--black);
  padding: 100px 0;
}
.seo-dark-section .container {
  padding: 0 40px;
}
.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.seo-info-card,
.seo-review-card {
  border-radius: 8px;
  padding: 28px;
}
.seo-info-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
}
.seo-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.seo-info-card p {
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.75;
}
.seo-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.seo-copy p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.seo-copy .btn {
  margin-top: 14px;
}
.seo-copy-light p {
  color: var(--gray-light);
}
.seo-review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.seo-review-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 34px rgba(0,0,0,0.08);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.seo-review-card p {
  color: #333;
  font-size: 0.93rem;
  line-height: 1.75;
  margin: 14px 0 28px;
}
.seo-review-card .rv-author-name {
  color: #111;
  margin-top: auto;
}
.seo-review-card .rv-author-role {
  color: #777;
}
.review-rotator {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  min-height: 360px;
  background: #111;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.16);
  overflow: hidden;
}
.review-slide {
  position: absolute;
  inset: 0;
  padding: 52px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.review-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 1;
}
.rv-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.rv-text {
  max-width: 710px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
  margin-bottom: 34px;
  font-style: italic;
}
.rv-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.rv-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
}
.rv-author-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
}
.rv-author-role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
  margin-top: 2px;
}
.review-dots {
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.review-dots button {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  transition: background 0.25s ease, width 0.25s ease;
}
.review-dots button.active {
  width: 42px;
  background: var(--red);
}

/* ── CTA Banner — dark instead of red ── */
.cta-banner-dark {
  background: var(--black) !important;
}
.cta-banner-dark::before { display: none; }

/* ── Contact on light background ── */
.contact.section-light { padding: 100px 0; }
.contact.section-light .container { padding: 0 40px; }
.c-icon-light {
  background: rgba(204,17,17,0.1);
  border: 1px solid rgba(204,17,17,0.25);
  color: var(--red);
}
.c-label-dark { color: #888; }
.c-value-dark { color: #111; }
.c-value-dark a { color: #111; }
.c-value-dark a:hover { color: var(--red); }
.contact-form-light input,
.contact-form-light textarea {
  background: var(--white);
  border: 1px solid #e0e0e0;
  color: #111;
}
.contact-form-light input::placeholder,
.contact-form-light textarea::placeholder { color: #aaa; }
.contact-form-light input:focus,
.contact-form-light textarea:focus { border-color: var(--red); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .navbar { width: calc(100% - 48px); padding: 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-split { grid-template-columns: 1fr; gap: 48px; }
  .trust-inner { grid-template-columns: 1fr; gap: 40px; }
  .trust-divider-line { width: 100%; height: 1px; }
  .trust-right { padding-left: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-img { grid-template-columns: repeat(2, 1fr); }
  .pricing-intro { grid-template-columns: 1fr; gap: 24px; }
  .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-card-wide { grid-column: span 2; }
  .pricing-note { align-items: flex-start; flex-direction: column; }
  .pricing-full-section .package-grid-full,
  .standalone-pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-full-section .package-card-wide { grid-column: span 2; }
  .price-tier-list-two { grid-template-columns: 1fr; }
  .seo-card-grid,
  .seo-review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-two-column { grid-template-columns: 1fr; gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .gallery-item,
  .gallery-item:nth-child(-n+2) {
    grid-column: span 3;
    aspect-ratio: 4 / 3;
  }
  .service-detail { grid-template-columns: 1fr; gap: 36px; }
  .service-detail:nth-child(even) { direction: ltr; }
  .faq-group { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-content { padding: 110px 24px 70px; }
  .container { padding: 0 24px; }
  .portfolio { padding: 70px 24px; }
  .services { padding: 70px 0; }
  .services.section-light .container { padding: 0 24px; }
  .process { padding: 70px 24px; }
  .about { padding: 70px 0; }
  .about.section-light .container { padding: 0 24px; }
  .why { padding: 70px 0; }
  .why .container { padding: 0 24px; }
  .reviews { padding: 70px 0; }
  .reviews.section-light .container { padding: 0 24px; }
  .reviews-intro-split {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .review-rotator { min-height: 460px; }
  .review-slide {
    padding: 32px 24px 88px;
  }
  .rv-author { margin-top: 28px; }
  .review-dots { left: 24px; right: 24px; bottom: 28px; }
  .reviews-google-badge { align-items: flex-start; }
  .contact { padding: 70px 0; }
  .contact.section-light .container { padding: 0 24px; }
  .footer { padding: 50px 24px 24px; }
  .faq-page-section { padding: 70px 24px; }
  .faq-group { padding: 20px; }
  .faq-group-media,
  .faq-group-media img { min-height: 220px; }
  .faq-contact-card { padding: 36px 22px; }
  .trust-split { padding: 60px 0; }
  .trust-split .container { padding: 0 24px; }
  .trust-inner { grid-template-columns: 1fr; gap: 36px; }
  .trust-divider-line { display: none; }
  .trust-right { flex-direction: column; }
  .ticker-logo { width: 132px; height: 48px; padding: 0 3px; }
  .services-grid-img { grid-template-columns: 1fr; }
  .pricing-preview { padding: 70px 0; }
  .pricing-preview .container { padding: 0 24px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card,
  .package-card-wide {
    grid-column: auto;
    min-height: auto;
    padding: 0 24px 24px;
  }
  .package-media {
    height: 156px;
    margin: 0 -24px 22px;
  }
  .standalone-media { height: 146px; }
  .package-card h3 { min-height: auto; }
  .package-summary-list { grid-template-columns: 1fr; }
  .package-features-columns { grid-template-columns: 1fr; }
  .package-price { font-size: 2.3rem; }
  .pricing-full-section .package-grid-full,
  .standalone-pricing-grid { grid-template-columns: 1fr; }
  .pricing-full-section .package-card-wide { grid-column: auto; }
  .seo-dark-section { padding: 70px 0; }
  .seo-dark-section .container { padding: 0 24px; }
  .seo-card-grid,
  .seo-review-grid { grid-template-columns: 1fr; }
  .seo-review-card { min-height: auto; }
  .why-split { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .process-steps::before,
  .process-steps::after { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .portfolio-gallery-section { padding: 70px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-bio-grid { grid-template-columns: 1fr !important; }
  .page-hero { padding: 130px 24px 60px; }
  .cta-banner { padding: 70px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item:nth-child(-n+2) {
    grid-column: 1 / -1;
  }
  .portfolio-lightbox { padding: 16px; }
  .portfolio-lightbox-prev,
  .portfolio-lightbox-next { display: none; }
  .team-grid { grid-template-columns: 1fr; }
}
