/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --dark: #06001a;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(201,168,76,0.2);
  --text: #e8e0f0;
  --muted: rgba(232,224,240,0.65);
}
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--dark); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Cinzel', serif; }
h1 span, h2 span { color: var(--gold); }

/* ===== VIDEO BG ===== */
#video-bg { position: fixed; inset: 0; z-index: -1; background: var(--dark); overflow: hidden; }
#yt-overlay { position: absolute; inset: 0; background: rgba(6,0,26,0.65); z-index: 1; }
#bg-video { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); min-width: 100%; min-height: 100%; object-fit: cover; pointer-events: none; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  background: rgba(6,0,26,0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo-icon { font-size: 1.4rem; color: var(--gold); animation: logo-bounce 2s infinite; }
@keyframes logo-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}
.nav-logo-text { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--gold-light); letter-spacing: 1px; }
.nav-links { list-style: none; display: flex; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s; position: relative; padding-bottom: 3px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-btn { background: linear-gradient(135deg, var(--gold), #9a6f20); color: #06001a; padding: 8px 20px; border-radius: 30px; text-decoration: none; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; transition: box-shadow 0.3s, transform 0.2s; }
.nav-btn:hover { box-shadow: 0 0 18px rgba(201,168,76,0.5); transform: translateY(-1px); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--gold); }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 90px 20px 50px; position: relative; }
.hero-eyebrow { font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.hero h1 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1.2; margin-bottom: 16px; text-shadow: 0 0 50px rgba(201,168,76,0.25); }
.hero-sub { font-size: 1rem; color: var(--muted); margin-bottom: 8px; }
.hero-tagline { font-size: 0.85rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 32px; font-style: italic; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-scroll-hint { position: absolute; bottom: 24px; font-size: 0.72rem; letter-spacing: 2px; color: var(--gold); opacity: 0.5; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 11px 28px; background: linear-gradient(135deg, var(--gold), #9a6f20); color: #06001a; text-decoration: none; font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; border-radius: 30px; border: none; cursor: pointer; font-family: 'Lato', sans-serif; transition: transform 0.2s, box-shadow 0.3s; box-shadow: 0 0 16px rgba(201,168,76,0.25); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(201,168,76,0.55); }
.btn-ghost { display: inline-block; padding: 10px 26px; background: transparent; color: var(--gold); border: 1px solid var(--gold); text-decoration: none; font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; border-radius: 30px; transition: all 0.3s; }
.btn-ghost:hover { background: rgba(201,168,76,0.12); }
.btn-sm { display: inline-block; padding: 7px 18px; background: transparent; color: var(--gold); border: 1px solid var(--gold); text-decoration: none; font-size: 0.78rem; border-radius: 20px; transition: all 0.3s; }
.btn-sm:hover { background: var(--gold); color: #06001a; }

/* ===== TICKER ===== */
.ticker { overflow: hidden; background: rgba(201,168,76,0.08); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 9px 0; }
.ticker-track { display: flex; gap: 40px; width: max-content; animation: ticker 28s linear infinite; }
.ticker-track span { font-size: 0.78rem; color: var(--gold-light); letter-spacing: 2px; white-space: nowrap; font-family: 'Cinzel', serif; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTIONS ===== */
.section { padding: 70px 48px; }
.section-tag { font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.section-title { font-size: clamp(1.4rem, 2.8vw, 2.2rem); line-height: 1.3; margin-bottom: 36px; }
.center-link { text-align: center; margin-top: 36px; }

/* ===== SERVICES OVERVIEW (HOME) ===== */
.services-overview { text-align: center; background: rgba(6,0,26,0.4); }
.svc-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 15px;
}

.svc-card {
  background: rgba(6, 0, 26, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--glass-border);
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.18);
  border-color: var(--gold);
}

.svc-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 200px;
  overflow: hidden;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.06);
}

.svc-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.svc-card-body h3 {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.svc-card-body p {
  color: var(--muted);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
  flex-grow: 1;
}

.svc-learn-btn {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--gold) !important;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  padding: 10px 0;
  border-radius: 30px;
  border: 1px solid var(--gold);
  letter-spacing: 1px;
  transition: background 0.3s, color 0.3s;
}

.svc-learn-btn:hover {
  background: var(--gold);
  color: #06001a !important;
}

@media (max-width: 1024px) {
  .svc-card-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
}

@media (max-width: 600px) {
  .svc-card-grid { grid-template-columns: 1fr; padding: 0 10px; }
}

/* ===== ABOUT PREVIEW (HOME) ===== */
.about-preview { background: rgba(0,0,0,0.2); }
.about-preview-grid { display: flex; align-items: center; gap: 60px; max-width: 1000px; margin: 0 auto; flex-wrap: wrap; }
.about-preview-visual { flex: 0 0 auto; position: relative; display: flex; justify-content: center; }
.ap-circle { position: relative; width: 180px; height: 180px; display: flex; align-items: center; justify-content: center; }
.ap-emoji { font-size: 5rem; z-index: 1; filter: drop-shadow(0 0 20px rgba(201,168,76,0.4)); }
.ap-ring { position: absolute; border-radius: 50%; border: 1px solid var(--glass-border); }
.ap-ring.r1 { width: 180px; height: 180px; animation: spin 20s linear infinite; }
.ap-ring.r2 { width: 130px; height: 130px; animation: spin 14s linear infinite reverse; }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.ap-badge { position: absolute; bottom: -10px; right: -10px; background: linear-gradient(135deg, var(--gold), #9a6f20); color: #06001a; padding: 10px 14px; border-radius: 10px; text-align: center; line-height: 1.3; }
.ap-badge strong { display: block; font-size: 1.3rem; font-family: 'Cinzel', serif; }
.ap-badge span { font-size: 0.7rem; font-weight: 700; }
.about-preview-text { flex: 1; min-width: 260px; }
.about-preview-text p { color: var(--muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 14px; }

/* ===== TIMELINE ===== */
.timeline-section { background: rgba(6,0,26,0.5); text-align: center; }
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 600px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 90px; top: 0; bottom: 0; width: 1px; background: var(--glass-border); }
.tl-item { display: flex; align-items: center; gap: 20px; padding: 14px 0; position: relative; }
.tl-year { font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--gold); width: 70px; text-align: right; flex-shrink: 0; }
.tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 10px rgba(201,168,76,0.6); position: relative; z-index: 1; }
.tl-text { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: rgba(0,0,0,0.25); text-align: center; }
.why-grid { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.why-box { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); border-radius: 12px; padding: 24px 20px; width: 190px; text-align: center; transition: transform 0.3s, border-color 0.3s; }
.why-box:hover { transform: translateY(-4px); border-color: var(--gold); }
.why-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.why-box h4 { color: var(--gold); font-size: 0.85rem; margin-bottom: 6px; }
.why-box p { color: var(--muted); font-size: 0.78rem; line-height: 1.5; }

/* ===== TESTIMONIALS ===== */
.testi-section { background: rgba(6,0,26,0.4); text-align: center; }
.testi-grid { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.testi-box { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); border-radius: 14px; padding: 24px 20px; max-width: 290px; text-align: left; transition: transform 0.3s; }
.testi-box:hover { transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 10px; letter-spacing: 2px; }
.testi-box p { color: var(--muted); font-size: 0.85rem; line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.testi-name { font-size: 0.78rem; color: var(--gold); }

/* ===== FAQ ===== */
.faq-section { background: rgba(0,0,0,0.2); }
.faq-section .section-title { text-align: center; }
.faq-section .section-tag { text-align: center; }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 10px; overflow: hidden; cursor: pointer; transition: border-color 0.3s; }
.faq-item:hover { border-color: var(--gold); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; font-size: 0.88rem; color: var(--text); font-family: 'Cinzel', serif; }
.faq-arrow { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 18px 14px; font-size: 0.83rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ===== CONNECT ===== */
.connect-section { background: rgba(6,0,26,0.5); text-align: center; }
.connect-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 30px; margin-top: -20px; }
.connect-cards { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; max-width: 700px; margin: 0 auto; }
.connect-card { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); border-radius: 12px; padding: 24px 20px; width: 190px; text-align: center; }
.connect-card span { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.connect-card h4 { color: var(--gold); font-size: 0.85rem; margin-bottom: 6px; }
.connect-card p { color: var(--muted); font-size: 0.78rem; line-height: 1.5; }

/* ===== CTA STRIP ===== */
.cta-strip { text-align: center; padding: 60px 40px; background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(6,0,26,0.6)); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.cta-strip h2 { font-size: clamp(1.2rem, 2.5vw, 1.9rem); margin-bottom: 10px; }
.cta-strip p { color: var(--muted); font-size: 0.88rem; margin-bottom: 24px; }

/* ===== PAGE HERO ===== */
.page-hero { min-height: 32vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 110px 20px 40px; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 10px; }
.breadcrumb { font-size: 0.78rem; color: var(--muted); margin-top: 8px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* ===== ABOUT PAGE ===== */
.bio-section { background: rgba(6,0,26,0.4); }
.bio-grid { display: flex; align-items: center; gap: 60px; max-width: 1000px; margin: 0 auto; flex-wrap: wrap; }
.bio-visual { flex: 0 0 auto; position: relative; display: flex; justify-content: center; }
.bio-circle { position: relative; width: 170px; height: 170px; display: flex; align-items: center; justify-content: center; }
.bio-circle span { font-size: 5rem; z-index: 1; filter: drop-shadow(0 0 18px rgba(201,168,76,0.4)); }
.bio-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--glass-border); animation: spin 18s linear infinite; }
.bio-badge { position: absolute; bottom: -10px; right: -10px; background: linear-gradient(135deg, var(--gold), #9a6f20); color: #06001a; padding: 8px 12px; border-radius: 8px; text-align: center; line-height: 1.3; }
.bio-badge strong { display: block; font-size: 1.1rem; font-family: 'Cinzel', serif; }
.bio-badge span { font-size: 0.68rem; font-weight: 700; }
.bio-text { flex: 1; min-width: 260px; }
.bio-text p { color: var(--muted); font-size: 0.88rem; line-height: 1.8; margin-bottom: 12px; }

/* ===== EXPERTISE ===== */
.expertise-section { background: rgba(0,0,0,0.2); text-align: center; }
.expertise-grid { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.exp-box { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); border-radius: 12px; padding: 22px 18px; width: 270px; text-align: left; transition: transform 0.3s, border-color 0.3s; }
.exp-box:hover { transform: translateY(-4px); border-color: var(--gold); }
.exp-box span { font-size: 1.8rem; }
.exp-box h4 { color: var(--gold); font-size: 0.88rem; margin: 10px 0 6px; }
.exp-box p { color: var(--muted); font-size: 0.8rem; line-height: 1.6; }

/* ===== STATS BAR ===== */
.stats-bar { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; padding: 40px; background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(6,0,26,0.5)); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); text-align: center; }
.stat-item strong { display: block; font-size: 1.8rem; color: var(--gold); font-family: 'Cinzel', serif; }
.stat-item span { font-size: 0.75rem; color: var(--muted); letter-spacing: 1px; }

/* ===== SERVICES DETAIL PAGE ===== */
.svc-detail-section { background: rgba(6,0,26,0.4); text-align: center; }
.svc-detail-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
.svc-detail-card { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); border-radius: 14px; padding: 28px 22px; width: 310px; text-align: left; transition: border-color 0.3s, transform 0.3s; }
.svc-detail-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.sdc-icon { font-size: 2.2rem; margin-bottom: 12px; }
.sdc-body h3 { color: var(--gold-light); font-size: 1rem; margin-bottom: 10px; }
.sdc-body p { color: var(--muted); font-size: 0.82rem; line-height: 1.6; margin-bottom: 12px; }
.sdc-body ul { list-style: none; margin-bottom: 14px; }
.sdc-body ul li { font-size: 0.8rem; color: var(--muted); padding: 5px 0; border-bottom: 1px solid rgba(201,168,76,0.08); }
.sdc-body ul li:last-child { border-bottom: none; }
.sdc-body ul li strong { color: var(--gold); }
.sdc-price { font-size: 1.05rem; color: var(--gold); font-family: 'Cinzel', serif; margin-bottom: 6px; }

/* ===== HOW IT WORKS ===== */
.how-section { background: rgba(0,0,0,0.2); text-align: center; }
.how-steps { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; max-width: 800px; margin: 0 auto; }
.how-step { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); border-radius: 12px; padding: 24px 20px; width: 210px; text-align: center; }
.how-num { font-size: 2rem; color: var(--gold); font-family: 'Cinzel', serif; opacity: 0.5; margin-bottom: 10px; }
.how-step h4 { color: var(--gold-light); font-size: 0.88rem; margin-bottom: 8px; }
.how-step p { color: var(--muted); font-size: 0.78rem; line-height: 1.6; }
.how-arrow { font-size: 1.4rem; color: var(--gold); opacity: 0.4; }

/* ===== CONTACT PAGE ===== */
.contact-wrap { padding: 50px 48px; }
.contact-grid { display: flex; gap: 40px; max-width: 1000px; margin: 0 auto; flex-wrap: wrap; }
.contact-info-col { flex: 1; min-width: 240px; }
.contact-info-col h3 { font-size: 1.1rem; color: var(--gold-light); margin-bottom: 20px; }
.contact-info-col h3 span { color: var(--gold); }
.c-info-item { display: flex; align-items: flex-start; gap: 14px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 10px; padding: 14px 16px; margin-bottom: 12px; transition: border-color 0.3s; }
.c-info-item:hover { border-color: var(--gold); }
.c-info-item .ci-icon { font-size: 1.4rem; }
.c-info-item h4 { color: var(--gold); font-size: 0.82rem; margin-bottom: 3px; }
.c-info-item p { color: var(--muted); font-size: 0.8rem; }
.contact-form-col { flex: 1.3; min-width: 280px; background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); border-radius: 14px; padding: 32px 28px; }
.contact-form-col h3 { font-size: 1.1rem; color: var(--gold-light); margin-bottom: 20px; }
.contact-form-col h3 span { color: var(--gold); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; color: var(--gold-light); font-size: 0.8rem; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); border-radius: 7px; color: var(--text); font-size: 0.88rem; font-family: 'Lato', sans-serif; outline: none; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: #06001a; }
.form-success {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: center;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  animation: fadeInUp 0.4s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hidden { display: none; }

/* ===== FOOTER ===== */
footer { background: rgba(6,0,26,0.92); border-top: 1px solid var(--glass-border); padding: 28px 48px; }
.footer-inner { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-logo { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--gold); letter-spacing: 2px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: var(--muted); opacity: 0.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  #navbar { padding: 12px 20px; }
  .nav-links, .nav-btn { display: none; }
  .hamburger { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0; background: rgba(6,0,26,0.97); padding: 20px; gap: 18px; border-bottom: 1px solid var(--glass-border); }
  .section { padding: 50px 20px; }
  .about-preview-grid, .bio-grid { flex-direction: column; text-align: center; }
  .how-steps { flex-direction: column; }
  .how-arrow { transform: rotate(90deg); }
  .stats-bar { gap: 28px; padding: 30px 20px; }
  .contact-wrap { padding: 40px 20px; }
  .contact-form-col { padding: 24px 18px; }
  footer { padding: 24px 20px; }
  .timeline::before { left: 70px; }
}

/* ===== SPLIT SERVICE CARDS ===== */
.svc-split-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.svc-split-card {
  display: flex;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.svc-split-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.svc-split-img {
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.svc-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.svc-split-card:hover .svc-split-img img {
  transform: scale(1.05);
}

.svc-split-body {
  width: 50%;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-split-body h3 {
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.svc-split-body p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

@media (max-width: 640px) {
  .svc-split-card { flex-direction: column; }
  .svc-split-img, .svc-split-body { width: 100%; }
  .svc-split-img { height: 200px; }
  .svc-split-body { padding: 20px 18px; }
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.float-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.float-btn.whatsapp { background: #25D366; }
.float-btn.phone    { background: var(--gold); }

/* ===== PREVENT PHONE NUMBER AUTO-LINK STYLING ===== */
a[href^="tel"] { color: inherit; text-decoration: none; }

/* ===== HERO PORTRAIT IMAGE ===== */
.hero-img-wrap {
  position: relative;
  margin-top: 32px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-portrait {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(201,168,76,0.4), 0 0 80px rgba(201,168,76,0.15);
  animation: portrait-glow 3s ease-in-out infinite alternate;
}
@media (max-width: 600px) {
  .hero-portrait { width: 220px; height: 220px; }
}
@keyframes portrait-glow {
  from { box-shadow: 0 0 30px rgba(201,168,76,0.3), 0 0 60px rgba(201,168,76,0.1); }
  to   { box-shadow: 0 0 50px rgba(201,168,76,0.6), 0 0 100px rgba(201,168,76,0.25); }
}

/* ===== HERO PHONE BADGE ===== */
.hero-phone-badge {
  background: linear-gradient(135deg, var(--gold), #9a6f20);
  color: #06001a;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 30px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-phone-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.6);
}
