/* ============================================================
   THE ROYAL ADVISOR — SHARED STYLESHEET
   Used by: index.html (homepage) + services.html
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --gold:       #b8962e;
  --gold-light: #d4b253;
  --gold-dark:  #8a6e1e;
  --gold-faint: rgba(184,150,46,0.08);
  --dark:  #080808;
  --dark2: #0f0f0f;
  --dark3: #161616;
  --dark4: #1e1e1e;
  --white: #ffffff;
  --grey:  #808080;
  --text:  #c0c0c0;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark2);
  border-bottom: 1px solid rgba(184,150,46,0.15);
  padding: 7px 5%;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--grey);
}
.top-bar a { color: var(--grey); text-decoration: none; margin: 0 10px; transition: color 0.3s; }
.top-bar a:hover { color: var(--gold); }
.top-bar i { color: var(--gold); margin-right: 5px; }

/* ===== NAVBAR ===== */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid rgba(184,150,46,0.12);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s;
}
nav.scrolled { box-shadow: 0 8px 40px rgba(0,0,0,0.6); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-crown { font-size: 1.6rem; color: var(--gold); transition: transform 0.4s; }
.nav-logo:hover .nav-logo-crown { transform: rotate(-10deg) scale(1.1); }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--white);
  letter-spacing: 2px; line-height: 1.1; font-weight: 700;
}
.nav-logo-sub { font-size: 0.55rem; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; }

.nav-menu { display: flex; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block; padding: 24px 16px;
  color: var(--white); text-decoration: none;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-menu > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--gold); transition: all 0.35s ease;
}
.nav-menu > li:hover > a,
.nav-menu > li.active > a { color: var(--gold); }
.nav-menu > li:hover > a::after,
.nav-menu > li.active > a::after { left: 14px; right: 14px; }

.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 230px; list-style: none;
  background: var(--dark2); border-top: 2px solid var(--gold);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.3s; z-index: 200;
  box-shadow: 0 16px 50px rgba(0,0,0,0.6);
}
.nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 11px 22px;
  color: var(--text); text-decoration: none;
  font-size: 0.78rem; transition: all 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dropdown li a:hover { color: var(--gold); padding-left: 30px; background: var(--gold-faint); }

.sub-dropdown {
  position: absolute; left: 100%; top: 0; min-width: 220px; list-style: none;
  background: var(--dark2); border-top: 2px solid var(--gold);
  opacity: 0; visibility: hidden; transform: translateX(10px);
  transition: all 0.3s; box-shadow: 0 16px 50px rgba(0,0,0,0.6);
}
.dropdown li:hover .sub-dropdown { opacity: 1; visibility: visible; transform: translateX(0); }
.dropdown li { position: relative; }
.has-sub > a::after { content: ' ›'; float: right; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--dark) !important; padding: 10px 22px !important;
  font-weight: 700 !important; margin-left: 8px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: 0 6px 24px rgba(184,150,46,0.4); transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; transition: all 0.4s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  position: relative; overflow: hidden;
  border: none; cursor: pointer; font-family: 'Raleway', sans-serif;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.22);
  transform: translateX(-120%) skewX(-20deg); transition: 0.45s;
}
.btn-gold:hover::before { transform: translateX(120%) skewX(-20deg); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(184,150,46,0.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px; border: 1px solid rgba(184,150,46,0.5);
  color: var(--gold); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; transition: all 0.4s;
}
.btn-ghost:hover { background: var(--gold-faint); border-color: var(--gold); transform: translateY(-3px); }

/* ===== SECTION LABELS & TITLES ===== */
.s-label { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.s-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.s-label span { font-size: 0.68rem; color: var(--gold); letter-spacing: 4px; text-transform: uppercase; font-weight: 700; }

.s-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.15;
  color: var(--white); margin-bottom: 18px;
}
.s-title em { font-style: italic; color: var(--gold); }
.s-rule { width: 50px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.s-text { color: var(--text); line-height: 1.9; font-weight: 300; font-size: 0.95rem; }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.rv { opacity: 0; transform: translateY(36px); transition: opacity 0.85s ease, transform 0.85s ease; }
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-l { opacity: 0; transform: translateX(-44px); transition: opacity 0.85s ease, transform 0.85s ease; }
.rv-l.vis { opacity: 1; transform: translateX(0); }
.rv-r { opacity: 0; transform: translateX(44px); transition: opacity 0.85s ease, transform 0.85s ease; }
.rv-r.vis { opacity: 1; transform: translateX(0); }

/* ===== GOLD DIVIDER ===== */
.gold-div {
  height: 1px; margin: 0 8%;
  background: linear-gradient(90deg, transparent, rgba(184,150,46,0.25), transparent);
}

/* ===== CONTACT FORM ===== */
.c-form { display: flex; flex-direction: column; gap: 14px; }
.c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.c-form input,
.c-form textarea,
.c-form select {
  width: 100%; background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--white); padding: 15px 18px;
  font-family: 'Raleway', sans-serif; font-size: 0.87rem;
  outline: none; transition: all 0.3s;
  -webkit-appearance: none; resize: none;
}
.c-form select option { background: var(--dark2); }
.c-form input::placeholder,
.c-form textarea::placeholder { color: var(--grey); }
.c-form input:focus,
.c-form textarea:focus,
.c-form select:focus {
  border-color: rgba(184,150,46,0.5);
  box-shadow: 0 0 0 3px rgba(184,150,46,0.05);
}
.c-form textarea { height: 120px; }

/* ===== FOOTER ===== */
footer { background: #040404; border-top: 1px solid rgba(184,150,46,0.12); }
.footer-top {
  padding: 80px 8%;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px;
}
.f-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--white); letter-spacing: 3px; font-weight: 700;
}
.f-brand-name span { color: var(--gold); }
.f-brand-tagline { font-size: 0.62rem; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin: 6px 0 18px; }
.f-brand-desc { color: var(--grey); font-size: 0.84rem; line-height: 1.8; margin-bottom: 24px; }
.f-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.f-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); font-size: 0.85rem; text-decoration: none; transition: all 0.3s;
}
.f-social:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-3px); }

.f-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(184,150,46,0.15);
}
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 11px; }
.f-col ul li a {
  color: var(--grey); text-decoration: none; font-size: 0.84rem;
  transition: all 0.3s; display: flex; align-items: center; gap: 9px;
}
.f-col ul li a::before { content: '›'; color: var(--gold); transition: transform 0.3s; }
.f-col ul li a:hover { color: var(--white); }
.f-col ul li a:hover::before { transform: translateX(4px); }

.f-contact-line {
  display: flex; gap: 14px; margin-bottom: 16px;
  color: var(--grey); font-size: 0.84rem; align-items: flex-start;
}
.f-contact-line i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.f-newsletter p { color: var(--grey); font-size: 0.82rem; line-height: 1.7; margin-bottom: 18px; }
.f-newsletter-form { display: flex; }
.f-newsletter-form input {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white); padding: 12px 16px;
  font-family: 'Raleway', sans-serif; font-size: 0.82rem;
  outline: none; transition: border-color 0.3s;
}
.f-newsletter-form input:focus { border-color: rgba(184,150,46,0.4); }
.f-newsletter-form button {
  background: var(--gold); color: var(--dark);
  border: none; padding: 12px 18px; font-size: 0.85rem;
  cursor: pointer; transition: background 0.3s;
}
.f-newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
  padding: 22px 8%; border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 0.76rem; color: var(--grey);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ===== FLOATING BUTTONS ===== */
.wa-btn {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.55rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.12); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

.top-btn {
  position: fixed; bottom: 100px; right: 32px; z-index: 999;
  width: 42px; height: 42px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-size: 0.9rem; cursor: pointer;
  opacity: 0; pointer-events: none; transform: translateY(16px);
  transition: all 0.3s;
}
.top-btn.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.top-btn:hover { background: var(--gold-light); }

/* ===== SHARED RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  nav { padding: 0 5%; }
  .nav-menu {
    display: none; position: fixed; inset: 0;
    background: var(--dark); flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px; z-index: 1000;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { font-size: 1rem; padding: 14px 30px; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; }
  .c-row { grid-template-columns: 1fr; }
}


/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; padding: 110px 8% 90px;
  background: radial-gradient(ellipse at 20% 60%, #120d00 0%, #080808 60%);
  overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(0deg, var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 70px 70px;
}
.page-hero-mono {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif; font-size: 30vw; font-weight: 900;
  color: rgba(184,150,46,0.03); pointer-events: none; line-height: 1; white-space: nowrap;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.72rem; color: var(--grey); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 20px;
  position: relative; z-index: 1;
  animation: fadeUp 0.8s ease 0.2s both;
}
.breadcrumb a { color: var(--gold); text-decoration: none; transition: opacity 0.3s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb i { font-size: 0.55rem; color: var(--grey); }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 700;
  color: var(--white); line-height: 1.05;
  position: relative; z-index: 1;
  animation: fadeUp 0.8s ease 0.4s both;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 1rem; color: var(--text); line-height: 1.9; font-weight: 300;
  max-width: 580px; margin: 20px auto 0;
  position: relative; z-index: 1;
  animation: fadeUp 0.8s ease 0.6s both;
}
.page-hero-lines {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,46,0.4), transparent);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ===== STICKY SERVICE TABS ===== */
.svc-tabs {
  background: var(--dark2); border-bottom: 1px solid rgba(184,150,46,0.12);
  position: sticky; top: 73px; z-index: 900;
  display: flex; justify-content: center; overflow-x: auto;
}
.svc-tab {
  padding: 18px 32px; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--grey); cursor: pointer;
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: all 0.3s; display: flex; align-items: center; gap: 10px;
}
.svc-tab i { font-size: 0.9rem; }
.svc-tab:hover { color: var(--white); }
.svc-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ===== SERVICE SECTIONS ===== */
.svc-section { padding: 100px 8%; }
#real-estate  { background: var(--dark); }
#marketing    { background: var(--dark2); }
#construction { background: var(--dark); }
#faq          { background: var(--dark2); padding: 100px 8%; }

/* ===== SERVICE INTRO GRID ===== */
.svc-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-items: center; margin-bottom: 80px;
}
.svc-intro-grid.reverse { direction: rtl; }
.svc-intro-grid.reverse > * { direction: ltr; }

/* ===== SERVICE VISUAL ===== */
.svc-visual {
  position: relative; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.svc-visual-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.svc-visual-icon-big { font-size: 9rem; transition: transform 0.6s ease; }
.svc-visual:hover .svc-visual-icon-big { transform: scale(1.08) rotate(-4deg); }
.svc-visual-label { font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase; }

/* Visual backgrounds per service */
.svc-re .svc-visual-bg { background: radial-gradient(ellipse at 40% 50%, #1a1200 0%, #0a0800 100%); }
.svc-re .svc-visual-icon-big { color: rgba(184,150,46,0.25); }
.svc-mk .svc-visual-bg { background: radial-gradient(ellipse at 60% 50%, #001020 0%, #000810 100%); }
.svc-mk .svc-visual-icon-big { color: rgba(184,150,46,0.25); }
.svc-cn .svc-visual-bg { background: radial-gradient(ellipse at 40% 50%, #0e0800 0%, #080808 100%); }
.svc-cn .svc-visual-icon-big { color: rgba(184,150,46,0.25); }

/* Corner brackets */
.bracket {
  position: absolute; width: 50px; height: 50px;
  border-style: solid; border-color: rgba(184,150,46,0.5); border-width: 0;
  animation: bracketGlow 3s ease-in-out infinite;
}
.bracket.tl { top: -12px; left: -12px; border-top-width: 2px; border-left-width: 2px; }
.bracket.br { bottom: -12px; right: -12px; border-bottom-width: 2px; border-right-width: 2px; animation-delay: 1.5s; }
@keyframes bracketGlow { 0%,100% { border-color: rgba(184,150,46,0.35); } 50% { border-color: rgba(184,150,46,0.8); } }

/* Badge */
.svc-badge {
  position: absolute; top: 24px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 16px 20px; text-align: center; z-index: 2;
  animation: badgeFloat 4s ease-in-out infinite;
}
.svc-badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--dark); font-weight: 900; line-height: 1; }
.svc-badge span { font-size: 0.58rem; color: var(--dark); letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
@keyframes badgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Big number bg */
.svc-number-bg {
  position: absolute; bottom: 16px; left: 16px;
  font-family: 'Cormorant Garamond', serif; font-size: 6rem; font-weight: 900;
  color: rgba(184,150,46,0.06); line-height: 1; pointer-events: none;
}

/* ===== SUB-SERVICE CARDS ===== */
.sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.sub-card {
  background: var(--dark2); padding: 36px 28px;
  position: relative; overflow: hidden; transition: all 0.4s; cursor: default;
  border-bottom: 2px solid transparent;
}
.sub-card:hover { background: var(--dark3); border-bottom-color: var(--gold); transform: translateY(-4px); }
.sub-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 2px; bottom: 0;
  background: var(--gold); transform: scaleY(0); transform-origin: bottom; transition: transform 0.4s;
}
.sub-card:hover::before { transform: scaleY(1); }
.sub-icon {
  width: 52px; height: 52px;
  background: var(--gold-faint); border: 1px solid rgba(184,150,46,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold); margin-bottom: 20px; transition: all 0.4s;
}
.sub-card:hover .sub-icon { background: var(--gold); color: var(--dark); }
.sub-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 12px; font-weight: 700; }
.sub-card p { font-size: 0.84rem; color: var(--grey); line-height: 1.8; }
.sub-tag {
  display: inline-block; margin-top: 16px;
  font-size: 0.62rem; color: var(--gold);
  border: 1px solid rgba(184,150,46,0.3);
  padding: 4px 12px; letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.3s;
}
.sub-card:hover .sub-tag { background: var(--gold-faint); }

/* ===== PROCESS STEPS ===== */
.process-title { text-align: center; margin: 70px 0 50px; }
.process-title h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--white); font-weight: 700; }
.process-title h3 em { color: var(--gold); font-style: italic; }
.process-title p { color: var(--grey); font-size: 0.88rem; margin-top: 10px; }

.process-line {
  display: flex; align-items: flex-start; gap: 0; position: relative;
}
.process-line::before {
  content: ''; position: absolute; top: 28px; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,46,0.3), transparent);
}
.pstep { flex: 1; text-align: center; padding: 0 20px; position: relative; }
.pstep-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--dark); border: 1px solid rgba(184,150,46,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold);
  position: relative; z-index: 1; transition: all 0.4s;
}
.pstep:hover .pstep-num { background: var(--gold); color: var(--dark); transform: scale(1.1); }
.pstep h5 { font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.pstep p { font-size: 0.8rem; color: var(--grey); line-height: 1.75; }

/* ===== STATS BAR ===== */
.svc-stats {
  background: linear-gradient(90deg, var(--dark2) 0%, #0e0900 50%, var(--dark2) 100%);
  border-top: 1px solid rgba(184,150,46,0.1); border-bottom: 1px solid rgba(184,150,46,0.1);
  padding: 50px 8%; display: grid; margin: 70px 0 0;
}
.svc-stats-4 { grid-template-columns: repeat(4, 1fr); }
.svc-stats-3 { grid-template-columns: repeat(3, 1fr); }
.sstat { text-align: center; padding: 20px; border-right: 1px solid rgba(184,150,46,0.1); }
.sstat:last-child { border-right: none; }
.sstat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.sstat-label { font-size: 0.7rem; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; color: var(--white); font-family: 'Raleway', sans-serif;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.5px;
  transition: color 0.3s; gap: 20px;
}
.faq-q:hover, .faq-q.open { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; transition: transform 0.35s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { padding-bottom: 20px; color: var(--text); font-size: 0.88rem; line-height: 1.9; font-weight: 300; }

/* ===== CTA BANNER ===== */
.svc-cta-banner {
  background: linear-gradient(135deg, #100c00 0%, #0a0800 100%);
  border: 1px solid rgba(184,150,46,0.2); padding: 70px 60px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; margin-top: 80px; position: relative; overflow: hidden;
}
.svc-cta-banner::before {
  content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 18rem; font-weight: 900;
  color: rgba(184,150,46,0.04); position: absolute; right: 60px; top: -20px; line-height: 1;
}
.svc-cta-banner h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--white); font-weight: 700; margin-bottom: 10px; }
.svc-cta-banner h3 em { color: var(--gold); font-style: italic; }
.svc-cta-banner p { color: var(--text); font-size: 0.9rem; line-height: 1.7; max-width: 500px; }
.svc-cta-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ===== SECTION DIVIDER ===== */
.svc-divider {
  height: 80px; display: flex; align-items: center; justify-content: center; position: relative;
}
.svc-divider::before {
  content: ''; position: absolute; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,46,0.2), transparent);
}
.svc-divider-icon {
  background: var(--dark); padding: 0 20px; position: relative; z-index: 1;
  color: rgba(184,150,46,0.3); font-size: 1.2rem;
}

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: var(--dark3); padding: 80px 8%;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start;
}
.cstrip-detail { display: flex; gap: 14px; margin-bottom: 18px; }
.cstrip-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-faint); border: 1px solid rgba(184,150,46,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: all 0.4s;
}
.cstrip-detail:hover .cstrip-icon { background: var(--gold); color: var(--dark); }
.cstrip-detail h5 { font-size: 0.68rem; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.cstrip-detail p { color: var(--white); font-size: 0.9rem; margin: 0; }

/* ===== SERVICES-SPECIFIC RESPONSIVE ===== */
@media (max-width: 1100px) {
  .sub-grid { grid-template-columns: 1fr 1fr; }
  .svc-stats-4 { grid-template-columns: 1fr 1fr; }
  .process-line { flex-wrap: wrap; }
  .process-line::before { display: none; }
  .pstep { min-width: 45%; margin-bottom: 30px; }
}
@media (max-width: 900px) {
  .svc-intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .svc-intro-grid.reverse { direction: ltr; }
  .contact-strip { grid-template-columns: 1fr; }
  .svc-cta-banner { flex-direction: column; text-align: center; }
  .svc-cta-banner p { max-width: 100%; }
}
@media (max-width: 768px) {
  .page-hero { padding: 80px 5% 60px; }
  .svc-section { padding: 70px 5%; }
  .sub-grid { grid-template-columns: 1fr; }
  .svc-tabs { top: 64px; }
  .svc-tab { padding: 14px 18px; font-size: 0.68rem; }
  .pstep { min-width: 100%; }
  .svc-cta-banner { padding: 40px 28px; }
  .svc-badge { display: none; }
}
