/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root{
  --navy-deep:   #0b1e33;
  --navy:        #142b45;
  --navy-soft:   #1f3a5c;
  --ivory:       #faf7f2;
  --pearl:       #eef0f3;
  --gold:        #c9a227;
  --gold-light:  #e6c65c;
  --peony:       #8e2b3c;
  --peony-light: #b3495a;
  --ink:         #1c2530;
  --ink-soft:    #56626f;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 60px -20px rgba(11,30,51,0.25);
  --shadow-card: 0 12px 40px -12px rgba(11,30,51,0.18);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; width:100%; }
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--ivory);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  width:100%;
  position:relative;
}
body.nav-open{ overflow:hidden; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}
h1,h2,h3,h4,.font-display{ font-family:var(--font-display); }
::selection{ background:var(--gold-light); color:var(--navy-deep); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; }

.container-xl{ max-width:1220px; margin:0 auto; padding-left:24px; padding-right:24px; }
@media (max-width:420px){ .container-xl{ padding-left:18px; padding-right:18px; } }

/* Eyebrow label with peony mark — used instead of generic numbering,
   since most sections here are not literal sequences. */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-body); font-weight:700; font-size:0.78rem;
  letter-spacing:0.18em; text-transform:uppercase; color:var(--peony);
  margin-bottom:18px;
}
.eyebrow .peony-mark{ width:18px; height:18px; fill:var(--peony); flex-shrink:0; }

.section-pad{ padding:110px 0; }
@media (max-width:767.98px){ .section-pad{ padding:72px 0; } }

.section-title{
  font-size:clamp(1.7rem, 4vw, 2.9rem);
  font-weight:600;
  line-height:1.15;
  color:var(--navy-deep);
  margin-bottom:20px;
}
.section-lede{
  color:var(--ink-soft);
  font-size:1.08rem;
  line-height:1.75;
  max-width:640px;
}
.text-gold{ color:var(--gold); }
.text-peony{ color:var(--peony); }

/* Reveal-on-scroll utility */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-zoom{ opacity:0; transform:scale(.94); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-zoom.is-visible{ opacity:1; transform:scale(1); }
.reveal-left{ opacity:0; transform:translateX(-32px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-left.is-visible{ opacity:1; transform:translateX(0); }
.reveal-right{ opacity:0; transform:translateX(32px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-right.is-visible{ opacity:1; transform:translateX(0); }
.d-delay-1{ transition-delay:.12s; } .d-delay-2{ transition-delay:.24s; } .d-delay-3{ transition-delay:.36s; }

/* ============================================================
   NAVIGATION — self-contained, no Bootstrap JS dependency.
   Desktop: inline row. Mobile: fixed slide-in panel + overlay.
   ============================================================ */
.navbar-glass{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:18px 0;
  background:rgba(11,30,51,0.0);
  backdrop-filter:blur(0px);
  transition:background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.navbar-glass.scrolled{
  padding:12px 0;
  background:rgba(250,247,242,0.86);
  backdrop-filter:blur(14px) saturate(160%);
  box-shadow:0 8px 30px -10px rgba(11,30,51,0.15);
}
.nav-row{ display:flex; align-items:center; justify-content:space-between; gap:16px; position:relative; z-index:1002; }

.brand{ display:flex; align-items:center; gap:12px; font-family:var(--font-display); font-weight:600; font-size:1.28rem; color:#fff; transition:color .4s var(--ease); min-width:0; }
.navbar-glass.scrolled .brand{ color:var(--navy-deep); }
.brand-mark{ width:34px; height:34px; fill:var(--gold); flex-shrink:0; }
.brand span{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.brand small{ display:block; font-family:var(--font-body); font-weight:600; font-size:0.62rem; letter-spacing:0.14em; text-transform:uppercase; opacity:0.75; }
@media (max-width:420px){
  .brand{ font-size:1.02rem; gap:8px; }
  .brand-mark{ width:26px; height:26px; }
  .brand small{ display:none; }
}

/* Hamburger toggle (mobile only) */
.nav-toggle{
  display:flex; align-items:center; justify-content:center;
  width:44px; height:44px; border:none; background:transparent; padding:0; flex-shrink:0;
  cursor:pointer;
}
@media (min-width:992px){ .nav-toggle{ display:none; } }
.navbar-toggler-icon-custom{ width:24px; height:18px; position:relative; }
.navbar-toggler-icon-custom span{
  position:absolute; left:0; width:100%; height:2px; background:#fff; border-radius:2px;
  transition:transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease), top .3s var(--ease);
}
.navbar-glass.scrolled .navbar-toggler-icon-custom span{ background:var(--navy-deep); }
.navbar-toggler-icon-custom span:nth-child(1){ top:0; }
.navbar-toggler-icon-custom span:nth-child(2){ top:8px; }
.navbar-toggler-icon-custom span:nth-child(3){ top:16px; }
.nav-toggle[aria-expanded="true"] .navbar-toggler-icon-custom span{ background:#fff; }
.nav-toggle[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1){ top:8px; transform:rotate(45deg); }
.nav-toggle[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3){ top:8px; transform:rotate(-45deg); }

/* Overlay behind the mobile panel */
.nav-overlay{
  position:fixed; inset:0; background:rgba(6,14,25,0.55); z-index:1000;
  opacity:0; visibility:hidden; transition:opacity .4s var(--ease), visibility .4s var(--ease);
}
.nav-overlay.visible{ opacity:1; visibility:visible; }

/* Mobile slide-in panel */
.nav-menu{
  position:fixed; top:0; right:0; height:100vh; width:min(84vw, 340px);
  background:var(--navy-deep); z-index:1001;
  display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-start; gap:8px;
  padding:104px 32px 40px; overflow-y:auto;
  transform:translateX(100%); transition:transform .45s var(--ease);
  box-shadow:-24px 0 60px rgba(0,0,0,0.35);
}
.nav-menu.open{ transform:translateX(0); }

.nav-links{ display:flex; flex-direction:column; align-items:flex-start; gap:22px; width:100%; }
.nav-links a{
  font-size:1.05rem; font-weight:600; color:rgba(255,255,255,0.88);
  position:relative; padding:4px 0; transition:color .3s var(--ease);
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px;
  background:var(--gold); transition:width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--gold) !important; }

.btn-nav-call{
  background:var(--gold); color:var(--navy-deep) !important; font-weight:700;
  padding:12px 24px; border-radius:100px; font-size:0.9rem; margin-top:26px;
  box-shadow:0 8px 20px -8px rgba(201,162,39,0.6); display:inline-flex; align-items:center; gap:8px;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-nav-call:hover{ transform:translateY(-2px); box-shadow:0 12px 26px -8px rgba(201,162,39,0.75); }

/* Desktop layout: panel becomes an inline row, overlay/hamburger disappear */
@media (min-width:992px){
  .nav-overlay{ display:none; }
  .nav-toggle{ display:none; }
  .nav-menu{
    position:static; height:auto; width:auto; background:transparent; box-shadow:none;
    transform:none; padding:0; overflow:visible; flex-direction:row; align-items:center; gap:34px;
    flex:1; margin-left:40px;
  }
  .nav-links{ flex-direction:row; align-items:center; gap:32px; width:auto; margin-right:auto; }
  .nav-links a{ color:rgba(255,255,255,0.88); }
  .navbar-glass.scrolled .nav-links a{ color:var(--navy); }
  .btn-nav-call{ margin-top:0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; min-height:100svh; display:flex; align-items:center;
  background:linear-gradient(180deg, rgba(6,16,28,0.78) 0%, rgba(9,22,38,0.72) 45%, rgba(11,30,51,0.94) 100%),
             url('https://images.unsplash.com/photo-1447069387593-a5de0862481e?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  overflow:hidden;
}
.hero-peony-watermark{
  position:absolute; right:-8%; top:50%; transform:translateY(-50%);
  width:min(56vw, 780px); height:auto; opacity:0.10; fill:var(--gold-light);
  animation:bloomSlow 12s ease-in-out infinite;
}
@keyframes bloomSlow{ 0%,100%{ transform:translateY(-50%) rotate(0deg) scale(1);} 50%{ transform:translateY(-52%) rotate(3deg) scale(1.04);} }
.hero-content{ position:relative; z-index:2; padding-top:90px; }
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:10px; color:var(--gold-light);
  font-weight:700; font-size:0.8rem; letter-spacing:0.2em; text-transform:uppercase; margin-bottom:24px;
}
.hero-title{
  font-family:var(--font-display); font-weight:600; color:#fff;
  font-size:clamp(2rem, 5.4vw, 4.1rem); line-height:1.14; max-width:900px;
  text-shadow:0 4px 30px rgba(0,0,0,0.25);
}
.hero-sub{
  color:rgba(255,255,255,0.86); font-size:1.08rem; line-height:1.75;
  max-width:620px; margin:26px 0 40px;
}
.btn-hero-primary{
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  color:var(--navy-deep); font-weight:700; padding:16px 34px; border-radius:100px;
  display:inline-flex; align-items:center; gap:10px; font-size:1rem;
  box-shadow:0 14px 34px -10px rgba(201,162,39,0.55);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
  position:relative; overflow:hidden;
}
.btn-hero-primary:hover{ transform:translateY(-3px); box-shadow:0 18px 40px -8px rgba(201,162,39,0.7); color:var(--navy-deep); }
.btn-hero-secondary{
  border:1.5px solid rgba(255,255,255,0.55); color:#fff; font-weight:700;
  padding:16px 34px; border-radius:100px; display:inline-flex; align-items:center; gap:10px; font-size:1rem;
  backdrop-filter:blur(6px); background:rgba(255,255,255,0.06);
  transition:all .35s var(--ease); position:relative; overflow:hidden;
}
.btn-hero-secondary:hover{ background:rgba(255,255,255,0.16); border-color:#fff; color:#fff; transform:translateY(-3px); }

.hero-phones{ display:flex; flex-wrap:wrap; gap:16px; margin-top:44px; }
.hero-phone-chip{
  display:flex; align-items:center; gap:12px; background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18); backdrop-filter:blur(10px);
  padding:12px 20px; border-radius:100px; color:#fff; transition:all .3s var(--ease);
}
.hero-phone-chip:hover{ background:rgba(255,255,255,0.16); transform:translateY(-2px); color:#fff; }
.hero-phone-chip i{ color:var(--gold-light); font-size:1.1rem; }
.hero-phone-chip .num{ font-weight:700; font-family:var(--font-display); letter-spacing:0.02em; }

.hero-scroll-cue{
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%); z-index:2;
  color:rgba(255,255,255,0.7); text-align:center; font-size:0.72rem; letter-spacing:0.16em; text-transform:uppercase;
}
.hero-scroll-cue .line{ width:1px; height:38px; background:rgba(255,255,255,0.4); margin:10px auto 0; position:relative; overflow:hidden; }
.hero-scroll-cue .line::after{ content:''; position:absolute; top:-100%; left:0; width:100%; height:100%; background:var(--gold-light); animation:scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine{ 0%{ top:-100%; } 60%{ top:100%; } 100%{ top:100%; } }
@media (max-width:575.98px){ .hero-scroll-cue{ display:none; } }

/* Ripple effect for buttons */
.ripple-el{ position:absolute; border-radius:50%; background:rgba(255,255,255,0.5); transform:scale(0); animation:rippleAnim .6s var(--ease); pointer-events:none; }
@keyframes rippleAnim{ to{ transform:scale(3); opacity:0; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-media{ position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-soft); }
.about-media img{ width:100%; height:520px; object-fit:cover; display:block; transition:transform .8s var(--ease); }
.about-media:hover img{ transform:scale(1.05); }
.about-media-frame{
  position:absolute; inset:18px; border:1.5px solid rgba(255,255,255,0.5); border-radius:calc(var(--radius-lg) - 12px);
  pointer-events:none;
}
.about-badge{
  position:absolute; left:-18px; bottom:-24px; background:#fff; border-radius:var(--radius-md);
  box-shadow:var(--shadow-card); padding:20px 24px; display:flex; align-items:center; gap:16px; max-width:260px;
}
.about-badge .peony-mark{ width:40px; height:40px; fill:var(--peony); flex-shrink:0; }
.about-badge strong{ display:block; font-family:var(--font-display); font-size:1.5rem; color:var(--navy-deep); }
.about-badge span{ font-size:0.78rem; color:var(--ink-soft); }
@media (max-width:575.98px){
  .about-media{ margin-bottom:36px; }
  .about-media img{ height:360px; }
  .about-badge{ left:12px; right:12px; bottom:-20px; max-width:none; }
}

.about-list{ list-style:none; padding:0; margin:28px 0 0; }
.about-list li{ display:flex; gap:14px; padding:12px 0; border-bottom:1px dashed rgba(20,43,69,0.14); }
.about-list li:last-child{ border-bottom:none; }
.about-list i{ color:var(--gold); font-size:1.1rem; margin-top:3px; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card{
  background:#fff; border-radius:var(--radius-lg); overflow:hidden; height:100%;
  box-shadow:var(--shadow-card); transition:transform .5s var(--ease), box-shadow .5s var(--ease);
  border:1px solid rgba(20,43,69,0.06);
}
.service-card:hover{ transform:translateY(-10px); box-shadow:0 30px 60px -18px rgba(11,30,51,0.3); }
.service-media{ position:relative; height:220px; overflow:hidden; }
.service-media img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.service-card:hover .service-media img{ transform:scale(1.08); }
.service-media::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(11,30,51,0) 40%, rgba(11,30,51,0.55) 100%); }
.service-icon{
  position:absolute; left:24px; bottom:-28px; width:64px; height:64px; border-radius:18px;
  background:linear-gradient(135deg, var(--navy), var(--navy-deep)); display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 26px -8px rgba(11,30,51,0.5); z-index:2;
}
.service-icon i{ color:var(--gold-light); font-size:1.6rem; }
.service-body{ padding:44px 30px 32px; }
.service-body h3{ font-size:1.42rem; color:var(--navy-deep); margin-bottom:14px; font-weight:600; }
.service-body p{ color:var(--ink-soft); line-height:1.7; font-size:0.98rem; }
.service-feats{ list-style:none; padding:0; margin:20px 0 0; display:grid; gap:10px; }
.service-feats li{ display:flex; gap:10px; font-size:0.9rem; color:var(--ink); align-items:flex-start; }
.service-feats i{ color:var(--peony); margin-top:4px; font-size:0.85rem; }
.service-link{ display:inline-flex; align-items:center; gap:8px; margin-top:22px; font-weight:700; color:var(--peony); font-size:0.9rem; transition:gap .3s var(--ease); }
.service-link:hover{ gap:14px; color:var(--peony); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section{ background:var(--navy-deep); position:relative; overflow:hidden; }
.why-section::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 15% 20%, rgba(201,162,39,0.12), transparent 45%),
             radial-gradient(circle at 85% 80%, rgba(142,43,60,0.18), transparent 50%);
}
.why-section .section-title, .why-section h2{ color:#fff; }
.why-section .section-lede{ color:rgba(255,255,255,0.68); }
.why-card{
  position:relative; z-index:1; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--radius-md); padding:34px 28px; height:100%; backdrop-filter:blur(6px);
  transition:all .4s var(--ease);
}
.why-card:hover{ background:rgba(255,255,255,0.08); border-color:rgba(201,162,39,0.4); transform:translateY(-6px); }
.why-card .icon-wrap{
  width:56px; height:56px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--gold-light), var(--gold)); margin-bottom:20px;
}
.why-card .icon-wrap i{ color:var(--navy-deep); font-size:1.4rem; }
.why-card h4{ color:#fff; font-family:var(--font-display); font-size:1.2rem; margin-bottom:10px; }
.why-card p{ color:rgba(255,255,255,0.66); font-size:0.92rem; line-height:1.7; margin:0; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-tabs{ display:inline-flex; background:var(--pearl); border-radius:100px; padding:6px; gap:6px; margin-bottom:60px; max-width:100%; }
.process-tab{
  border:none; background:transparent; padding:12px 20px; border-radius:100px; font-weight:700; font-size:0.86rem;
  color:var(--ink-soft); transition:all .3s var(--ease); cursor:pointer; white-space:nowrap;
}
.process-tab.active{ background:var(--navy-deep); color:#fff; box-shadow:0 8px 20px -8px rgba(11,30,51,0.4); }

.timeline{ position:relative; }
.timeline::before{
  content:''; position:absolute; left:29px; top:6px; bottom:6px; width:2px;
  background:repeating-linear-gradient(180deg, var(--gold) 0 8px, transparent 8px 16px);
}
@media (min-width:992px){
  .timeline::before{ left:50%; transform:translateX(-1px); }
}
.timeline-item{ position:relative; padding-left:76px; margin-bottom:44px; }
.timeline-item:last-child{ margin-bottom:0; }
.timeline-num{
  position:absolute; left:0; top:0; width:60px; height:60px; border-radius:50%;
  background:linear-gradient(135deg, var(--navy), var(--navy-deep)); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:1.35rem; font-weight:600;
  box-shadow:0 10px 24px -8px rgba(11,30,51,0.4); border:3px solid var(--ivory);
}
.timeline-card{ background:#fff; border-radius:var(--radius-md); padding:26px 28px; box-shadow:var(--shadow-card); }
.timeline-card h4{ font-family:var(--font-display); color:var(--navy-deep); font-size:1.18rem; margin-bottom:8px; }
.timeline-card p{ color:var(--ink-soft); font-size:0.92rem; margin:0; line-height:1.65; }

@media (min-width:992px){
  .timeline-item{ padding-left:0; width:50%; }
  .timeline-item:nth-child(odd){ left:0; padding-right:56px; text-align:right; }
  .timeline-item:nth-child(even){ left:50%; padding-left:56px; }
  .timeline-num{ left:auto; }
  .timeline-item:nth-child(odd) .timeline-num{ right:-30px; left:auto; }
  .timeline-item:nth-child(even) .timeline-num{ left:-30px; }
}

/* ============================================================
   STATISTICS
   ============================================================ */
.stats-section{ background:linear-gradient(135deg, var(--peony) 0%, #6f2230 100%); position:relative; }
.stat-item{ text-align:center; color:#fff; padding:20px; }
.stat-number{ font-family:var(--font-display); font-size:clamp(2.1rem,5vw,3.4rem); font-weight:600; line-height:1; }
.stat-label{ font-size:0.88rem; letter-spacing:0.06em; opacity:0.85; margin-top:10px; }

/* Counter card divider on stats mobile */
@media (max-width:767.98px){
  .stat-item{ border-bottom:1px solid rgba(255,255,255,0.15); padding-bottom:26px; }
  .stat-item:last-child, .stat-item:nth-last-child(2){ border-bottom:none; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card{
  background:#fff; border-radius:var(--radius-md); padding:36px 30px; height:100%;
  box-shadow:var(--shadow-card); position:relative; transition:transform .4s var(--ease);
}
.testimonial-card:hover{ transform:translateY(-6px); }
.testimonial-card .fa-quote-left{ color:var(--pearl); font-size:2.2rem; position:absolute; top:22px; right:26px; }
.testimonial-stars{ color:var(--gold); margin-bottom:16px; letter-spacing:3px; }
.testimonial-text{ color:var(--ink); line-height:1.75; font-size:0.98rem; margin-bottom:24px; font-style:italic; }
.testimonial-author{ display:flex; align-items:center; gap:14px; }
.testimonial-avatar{
  width:48px; height:48px; border-radius:50%; background:linear-gradient(135deg, var(--navy), var(--navy-deep));
  display:flex; align-items:center; justify-content:center; color:var(--gold-light); font-family:var(--font-display); font-weight:600;
  flex-shrink:0;
}
.testimonial-author strong{ display:block; color:var(--navy-deep); font-size:0.95rem; }
.testimonial-author span{ font-size:0.8rem; color:var(--ink-soft); }

/* ============================================================
   FAQ — custom accessible accordion (no Bootstrap JS dependency)
   ============================================================ */
.faq-list{ border-top:1px solid rgba(20,43,69,0.12); }
.faq-item{ border-bottom:1px solid rgba(20,43,69,0.12); }
.faq-question{
  width:100%; text-align:left; background:transparent; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:24px 4px; font-family:var(--font-display); font-size:1.05rem; font-weight:600; color:var(--navy-deep);
}
.faq-item.open .faq-question{ color:var(--peony); }
.faq-question .fa{ flex-shrink:0; color:var(--gold); transition:transform .3s var(--ease); }
.faq-item.open .faq-question .fa{ transform:rotate(135deg); color:var(--peony); }
.faq-answer{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-answer-inner{ color:var(--ink-soft); line-height:1.75; padding:0 4px 24px; font-size:0.96rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section{ background:var(--pearl); }
.contact-card{
  background:#fff; border-radius:var(--radius-md); padding:32px 28px; height:100%; box-shadow:var(--shadow-card);
  transition:transform .4s var(--ease); text-align:center;
}
.contact-card:hover{ transform:translateY(-8px); }
.contact-card .icon-circle{
  width:64px; height:64px; border-radius:50%; margin:0 auto 20px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
}
.contact-card .icon-circle i{ color:var(--navy-deep); font-size:1.5rem; }
.contact-card h4{ font-family:var(--font-display); font-size:1.15rem; color:var(--navy-deep); margin-bottom:10px; }
.contact-card p{ color:var(--ink-soft); font-size:0.92rem; margin-bottom:4px; }
.contact-card a{ color:var(--ink); font-weight:600; }
.contact-card a:hover{ color:var(--peony); }

.contact-media{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-soft); position:relative; height:100%; min-height:280px; }
.contact-media img{ width:100%; height:100%; object-fit:cover; }
.viber-badge{
  position:absolute; left:20px; bottom:20px; background:rgba(255,255,255,0.92); backdrop-filter:blur(6px);
  border-radius:100px; padding:10px 20px; display:flex; align-items:center; gap:10px; font-weight:700; font-size:0.85rem; color:var(--navy-deep);
}
.viber-badge i{ color:#7360f2; font-size:1.2rem; }

.form-card{ background:#fff; border-radius:var(--radius-lg); padding:40px; box-shadow:var(--shadow-soft); }
@media (max-width:575.98px){ .form-card{ padding:26px; } }
.form-control{
  border:1.5px solid rgba(20,43,69,0.14); border-radius:var(--radius-sm); padding:13px 16px; font-size:0.95rem;
  transition:border-color .3s var(--ease), box-shadow .3s var(--ease); width:100%;
}
.form-control:focus{ border-color:var(--gold); box-shadow:0 0 0 4px rgba(201,162,39,0.15); outline:none; }
.btn-submit{
  background:linear-gradient(135deg, var(--navy), var(--navy-deep)); color:#fff; font-weight:700;
  padding:15px 30px; border-radius:100px; border:none; width:100%; font-size:1rem;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease); position:relative; overflow:hidden; cursor:pointer;
}
.btn-submit:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -10px rgba(11,30,51,0.5); color:#fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background:var(--navy-deep); color:rgba(255,255,255,0.7); padding:80px 0 30px; }
.footer-brand{ display:flex; align-items:center; gap:12px; color:#fff; font-family:var(--font-display); font-size:1.3rem; font-weight:600; margin-bottom:18px; }
.footer-brand .peony-mark{ width:32px; height:32px; fill:var(--gold); }
.footer-col h5{ color:#fff; font-family:var(--font-display); font-size:1.05rem; margin-bottom:20px; }
.footer-links{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin-bottom:12px; }
.footer-links a{ color:rgba(255,255,255,0.65); font-size:0.92rem; transition:color .3s var(--ease), padding-left .3s var(--ease); }
.footer-links a:hover{ color:var(--gold-light); padding-left:4px; }
.footer-social{ display:flex; gap:12px; margin-top:22px; }
.footer-social a{
  width:40px; height:40px; border-radius:50%; border:1px solid rgba(255,255,255,0.2); display:flex; align-items:center; justify-content:center;
  color:#fff; transition:all .3s var(--ease);
}
.footer-social a:hover{ background:var(--gold); border-color:var(--gold); color:var(--navy-deep); transform:translateY(-3px); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.1); margin-top:60px; padding-top:26px; font-size:0.85rem; display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px; }

.back-to-top{
  position:fixed; right:20px; bottom:20px; width:48px; height:48px; border-radius:50%; z-index:999;
  background:var(--gold); color:var(--navy-deep); display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px -8px rgba(201,162,39,0.6); opacity:0; visibility:hidden; transform:translateY(16px);
  transition:all .4s var(--ease); border:none; cursor:pointer;
}
.back-to-top.visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ transform:translateY(-4px); }

/* Skip link for accessibility */
.skip-link{
  position:absolute; left:-999px; top:auto; background:var(--gold); color:var(--navy-deep); padding:12px 20px;
  z-index:2000; border-radius:0 0 10px 0; font-weight:700;
}
.skip-link:focus{ left:0; top:0; }

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:3px solid var(--gold); outline-offset:3px;
}

/* Guard against any horizontal overflow on small screens */
html, body{ max-width:100%; }
.row{ --bs-gutter-x:1.5rem; }
