
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#0D1B2A;
  --navy-mid:#142230;
  --navy-light:#1a2d42;
  --gold:#cca43a;
  --gold-light:#e0bb5a;
  --gold-dark:#a88520;
  --white:#ffffff;
  --cream:#f5f0e8;
  --grey:#8a9bb0;
  --text-light:#c8d5e0;
  --font-display:'Cormorant Garamond',Georgia,serif;
  --font-body:'Montserrat',sans-serif;
}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  background:var(--navy);
  color:var(--white);
  min-height:100vh;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%}
.page{display:none}
.page.active{display:block}

/* ─── NAV ─── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(13,27,42,0.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(204,164,58,0.18);
  padding:0 2rem;
  height:70px;
  display:flex;align-items:center;justify-content:space-between;
}
.nav-logo{
  display:flex;align-items:center;gap:0.75rem;cursor:pointer;
}
.nav-logo img{
  width:42px;height:42px;object-fit:contain;
  border-radius:4px;
}
.nav-brand{
  display:flex;flex-direction:column;
}
.nav-brand-name{
  font-family:var(--font-display);
  font-size:1.1rem;font-weight:500;
  letter-spacing:0.05em;
  color:var(--white);
  line-height:1.1;
}
.nav-brand-tagline{
  font-size:0.58rem;font-weight:500;
  letter-spacing:0.18em;
  color:var(--gold);
  text-transform:uppercase;
}
.nav-links{
  display:flex;align-items:center;gap:0.2rem;
  list-style:none;
}
.nav-links a{
  font-size:0.68rem;font-weight:600;
  letter-spacing:0.12em;text-transform:uppercase;
  padding:0.5rem 0.75rem;
  color:var(--text-light);
  transition:color 0.2s;
  cursor:pointer;
}
.nav-links a:hover,.nav-links a.active{color:var(--white)}
.nav-links a.active{border-bottom:1.5px solid var(--gold)}
.nav-enquire{
  background:var(--gold);
  color:var(--navy) !important;
  padding:0.5rem 1.2rem !important;
  font-weight:700 !important;
  border-radius:2px;
  transition:background 0.2s !important;
}
.nav-enquire:hover{background:var(--gold-light) !important; border-bottom:none !important}
.nav-mobile-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:5px;}
.nav-mobile-toggle span{width:24px;height:2px;background:var(--white);transition:all 0.3s}
.mobile-menu{
  display:none;
  position:fixed;top:70px;left:0;right:0;z-index:999;
  background:var(--navy-mid);
  border-bottom:1px solid rgba(204,164,58,0.2);
  padding:1rem 0;
  flex-direction:column;
}
.mobile-menu.open{display:flex}
.mobile-menu a{
  padding:0.85rem 2rem;
  font-size:0.75rem;font-weight:600;
  letter-spacing:0.12em;text-transform:uppercase;
  color:var(--text-light);
  cursor:pointer;
  border-bottom:1px solid rgba(255,255,255,0.05);
  transition:color 0.2s,background 0.2s;
}
.mobile-menu a:hover{color:var(--gold);background:rgba(204,164,58,0.05)}
.mobile-menu .mob-enquire{
  margin:0.75rem 2rem 0;
  background:var(--gold);color:var(--navy);
  text-align:center;border-radius:2px;border-bottom:none;
}

/* ─── TICKER ─── */
.ticker-wrap{
  background:var(--gold);
  overflow:hidden;white-space:nowrap;
  padding:0.65rem 0;
  border-bottom:1px solid var(--gold-dark);
}
.ticker-inner{
  display:inline-flex;
  animation:ticker 28s linear infinite;
}
.ticker-inner span{
  font-family:var(--font-body);
  font-size:0.65rem;font-weight:700;
  letter-spacing:0.18em;text-transform:uppercase;
  color:var(--navy);
  padding:0 2.5rem;
}
.ticker-inner .dot{
  color:rgba(13,27,42,0.5);
  padding:0;font-size:0.55rem;
}
@keyframes ticker{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

/* ─── HERO ─── */
.hero{
  min-height:100vh;
  padding-top:70px;
  background:var(--navy);
  position:relative;overflow:hidden;
  display:flex;align-items:center;
}
.hero-grid-bg{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(204,164,58,0.07) 1px,transparent 1px),
    linear-gradient(90deg,rgba(204,164,58,0.07) 1px,transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
}
.hero-gradient{
  position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 80% at 30% 50%, rgba(20,34,48,0) 0%, rgba(13,27,42,0.6) 100%);
  pointer-events:none;
}
.hero-inner{
  position:relative;z-index:1;
  max-width:1200px;margin:0 auto;
  padding:4rem 2rem 3rem;
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:center;
  width:100%;
}
.hero-left{
  display:flex;flex-direction:column;gap:1.5rem;
}
.hero-location{
  font-size:0.65rem;font-weight:600;
  letter-spacing:0.2em;text-transform:uppercase;
  color:var(--gold);opacity:0.85;
}
.hero-heading{
  font-family:var(--font-display);
  font-size:clamp(2.8rem,5.5vw,4.5rem);
  font-weight:300;line-height:1.05;
  color:var(--white);
}
.hero-heading em{
  display:block;
  font-style:italic;
  color:var(--gold);
  font-weight:300;
}
.hero-services-strip{
  font-size:0.6rem;font-weight:700;
  letter-spacing:0.25em;text-transform:uppercase;
  color:var(--grey);
}
.hero-services-strip span{color:rgba(204,164,58,0.6);padding:0 0.5rem}
.hero-desc{
  font-size:0.88rem;line-height:1.8;
  color:var(--text-light);max-width:480px;
}
.hero-btns{
  display:flex;gap:1rem;flex-wrap:wrap;
  margin-top:0.5rem;
}
.btn-primary{
  background:var(--gold);
  color:var(--navy);
  padding:0.85rem 2rem;
  font-size:0.68rem;font-weight:700;
  letter-spacing:0.12em;text-transform:uppercase;
  border-radius:2px;cursor:pointer;
  transition:background 0.2s,transform 0.15s;
  border:none;display:inline-block;
}
.btn-primary:hover{background:var(--gold-light);transform:translateY(-1px)}
.btn-outline{
  border:1.5px solid rgba(204,164,58,0.5);
  color:var(--white);
  padding:0.85rem 2rem;
  font-size:0.68rem;font-weight:600;
  letter-spacing:0.12em;text-transform:uppercase;
  border-radius:2px;cursor:pointer;
  transition:border-color 0.2s,color 0.2s,transform 0.15s;
  background:transparent;display:inline-block;
}
.btn-outline:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-1px)}

.hero-right{
  display:flex;flex-direction:column;gap:1.5rem;align-items:center;
}
.hero-logo-wrap{
  position:relative;
  width:200px;height:200px;
  display:flex;align-items:center;justify-content:center;
  animation:floatLogo 3s ease-in-out infinite;
}
@keyframes floatLogo{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}
.hero-logo-wrap img{
  width:180px;height:180px;
  object-fit:contain;
  filter:drop-shadow(0 8px 32px rgba(204,164,58,0.25));
}
.hero-creds{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1px;
  background:rgba(204,164,58,0.2);
  border:1px solid rgba(204,164,58,0.2);
  width:100%;max-width:360px;
}
.cred-tile{
  background:rgba(13,27,42,0.8);
  padding:1.2rem;
  text-align:center;
  backdrop-filter:blur(4px);
}
.cred-tile-code{
  font-family:var(--font-display);
  font-size:1.6rem;font-weight:500;
  color:var(--gold);letter-spacing:0.05em;
  line-height:1;
}
.cred-tile-label{
  font-size:0.55rem;font-weight:600;
  letter-spacing:0.15em;text-transform:uppercase;
  color:var(--grey);margin-top:0.3rem;
}

/* ─── TRUST BAR ─── */
.trust-bar{
  background:var(--cream);
  padding:2.5rem 2rem;
}
.trust-bar-inner{
  max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;background:rgba(0,0,0,0.1);
}
.trust-item{
  background:var(--cream);
  padding:1.5rem;text-align:center;
}
.trust-icon{
  font-size:1.5rem;margin-bottom:0.5rem;
}
.trust-label{
  font-size:0.72rem;font-weight:700;
  letter-spacing:0.1em;text-transform:uppercase;
  color:var(--navy);
}
.trust-desc{
  font-size:0.75rem;color:#555;
  margin-top:0.25rem;font-weight:400;
}

/* ─── SECTION COMMONS ─── */
section{padding:5rem 2rem}
.section-inner{max-width:1200px;margin:0 auto}
.section-tag{
  font-size:0.6rem;font-weight:700;
  letter-spacing:0.2em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1rem;
}
.section-heading{
  font-family:var(--font-display);
  font-size:clamp(2rem,4vw,3rem);
  font-weight:300;line-height:1.1;
  color:var(--white);margin-bottom:1rem;
}
.section-heading-dark{color:var(--navy)}
.section-divider{
  width:3rem;height:2px;
  background:var(--gold);margin:1.2rem 0 2rem;
}
.section-desc{
  font-size:0.88rem;line-height:1.8;
  color:var(--text-light);max-width:600px;
}
.section-desc-dark{color:#555}

/* ─── SERVICES SECTION (Homepage) ─── */
.services-section{background:var(--cream)}
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:rgba(0,0,0,0.12);
  margin-top:3rem;
  border:1px solid rgba(0,0,0,0.12);
}
.svc-card{
  background:var(--white);
  padding:2.5rem 2rem;
  display:flex;flex-direction:column;gap:1rem;
  transition:background 0.2s;
  cursor:pointer;
}
.svc-card:hover{background:#f9f5ed}
.svc-icon{font-size:2rem;line-height:1}
.svc-title{
  font-family:var(--font-display);
  font-size:1.4rem;font-weight:400;
  color:var(--navy);
}
.svc-desc{
  font-size:0.82rem;line-height:1.75;
  color:#555;flex:1;
}
.svc-link{
  font-size:0.65rem;font-weight:700;
  letter-spacing:0.15em;text-transform:uppercase;
  color:var(--gold-dark);
  display:flex;align-items:center;gap:0.4rem;
  transition:gap 0.2s;
}
.svc-card:hover .svc-link{gap:0.75rem}

/* ─── ABOUT SECTION (Homepage snippet) ─── */
.about-section{
  background:var(--navy-mid);
  border-top:1px solid rgba(204,164,58,0.15);
  border-bottom:1px solid rgba(204,164,58,0.15);
}
.about-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:5rem;align-items:center;
}
.about-stat-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:2rem;
  margin-top:2rem;
}
.about-stat-num{
  font-family:var(--font-display);
  font-size:2.5rem;font-weight:300;
  color:var(--gold);line-height:1;
}
.about-stat-label{
  font-size:0.68rem;font-weight:600;
  letter-spacing:0.1em;text-transform:uppercase;
  color:var(--grey);margin-top:0.3rem;
}

/* ─── CTA BAND ─── */
.cta-band{
  background:linear-gradient(135deg,var(--gold-dark) 0%,var(--gold) 100%);
  padding:4rem 2rem;text-align:center;
}
.cta-band h2{
  font-family:var(--font-display);
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:400;color:var(--navy);
  margin-bottom:1rem;
}
.cta-band p{
  font-size:0.88rem;color:rgba(13,27,42,0.75);
  margin-bottom:2rem;max-width:500px;margin-left:auto;margin-right:auto;
}
.btn-navy{
  background:var(--navy);color:var(--gold);
  padding:0.9rem 2.5rem;
  font-size:0.68rem;font-weight:700;
  letter-spacing:0.15em;text-transform:uppercase;
  border-radius:2px;cursor:pointer;
  transition:background 0.2s;
  border:none;display:inline-block;
}
.btn-navy:hover{background:var(--navy-mid)}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero{
  padding:130px 2rem 5rem;
  background:var(--navy);
  position:relative;overflow:hidden;
}
.page-hero-grid{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(204,164,58,0.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(204,164,58,0.06) 1px,transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
}
.page-hero-inner{
  max-width:1200px;margin:0 auto;
  position:relative;z-index:1;
}
.page-hero h1{
  font-family:var(--font-display);
  font-size:clamp(2.2rem,5vw,3.8rem);
  font-weight:300;line-height:1.1;
  margin-bottom:1rem;
}
.page-hero p{
  font-size:0.9rem;line-height:1.8;
  color:var(--text-light);max-width:600px;
}

/* ─── ABOUT PAGE ─── */
.about-content{
  display:grid;grid-template-columns:2fr 1fr;
  gap:5rem;align-items:start;
}
.about-body{
  display:flex;flex-direction:column;gap:1.5rem;
}
.about-body p{
  font-size:0.9rem;line-height:1.9;
  color:var(--text-light);
}
.about-sidebar{
  display:flex;flex-direction:column;gap:1rem;
}
.info-card{
  background:rgba(204,164,58,0.08);
  border:1px solid rgba(204,164,58,0.2);
  border-left:3px solid var(--gold);
  padding:1.25rem 1.5rem;
}
.info-card-label{
  font-size:0.55rem;font-weight:700;
  letter-spacing:0.18em;text-transform:uppercase;
  color:var(--gold);margin-bottom:0.4rem;
}
.info-card-value{
  font-size:0.88rem;line-height:1.6;
  color:var(--white);
}
.creds-row{
  display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;
  margin-top:3rem;
}
.cred-card{
  background:rgba(204,164,58,0.05);
  border:1px solid rgba(204,164,58,0.15);
  padding:1.5rem;
  text-align:center;
}
.cred-card-icon{font-size:2rem;margin-bottom:0.75rem}
.cred-card-title{
  font-size:0.72rem;font-weight:700;
  letter-spacing:0.1em;text-transform:uppercase;
  color:var(--gold);margin-bottom:0.4rem;
}
.cred-card-desc{
  font-size:0.8rem;line-height:1.6;
  color:var(--text-light);
}

/* ─── SERVICES PAGE ─── */
.svc-detail-list{
  display:flex;flex-direction:column;gap:0;
  margin-top:3rem;
}
.svc-detail-item{
  display:grid;grid-template-columns:120px 1fr;
  gap:0;border-bottom:1px solid rgba(204,164,58,0.12);
  padding:3rem 0;
  align-items:start;
}
.svc-detail-num{
  font-family:var(--font-display);
  font-size:4rem;font-weight:700;
  color:rgba(204,164,58,0.25);
  line-height:1;letter-spacing:-0.02em;
  padding-top:0.2rem;
}
.svc-detail-body{
  display:flex;flex-direction:column;gap:1rem;
}
.svc-detail-icon-title{
  display:flex;align-items:center;gap:1rem;
}
.svc-detail-title{
  font-family:var(--font-display);
  font-size:1.8rem;font-weight:400;
  color:var(--white);
}
.svc-detail-desc{
  font-size:0.88rem;line-height:1.9;
  color:var(--text-light);max-width:650px;
}
.svc-detail-features{
  list-style:none;
  display:grid;grid-template-columns:1fr 1fr;
  gap:0.6rem;margin-top:0.5rem;
}
.svc-detail-features li{
  font-size:0.8rem;color:var(--text-light);
  display:flex;align-items:center;gap:0.5rem;
}
.svc-detail-features li::before{
  content:"";
  width:4px;height:4px;
  background:var(--gold);border-radius:50%;flex-shrink:0;
}
.svc-btn{
  align-self:flex-start;
  margin-top:0.5rem;
}

/* ─── MEDIATION & PROCESS SERVING PAGES ─── */
.service-page-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:start;
  margin-top:3rem;
}
.service-page-content p{
  font-size:0.9rem;line-height:1.9;
  color:var(--text-light);margin-bottom:1.2rem;
}
.service-page-content h3{
  font-family:var(--font-display);
  font-size:1.4rem;font-weight:400;
  color:var(--gold);margin:2rem 0 1rem;
}
.feature-list{
  list-style:none;
  display:flex;flex-direction:column;gap:0.75rem;
  margin:1rem 0;
}
.feature-list li{
  font-size:0.85rem;color:var(--text-light);
  display:flex;align-items:flex-start;gap:0.75rem;
  line-height:1.6;
}
.feature-list li::before{
  content:"→";color:var(--gold);flex-shrink:0;margin-top:0.05rem;
}
.service-sidebar{
  display:flex;flex-direction:column;gap:1.25rem;
  position:sticky;top:90px;
}

/* ─── FAQ PAGE ─── */
.faq-layout{
  display:grid;grid-template-columns:1fr 2fr;
  gap:5rem;align-items:start;
  padding:5rem 2rem;
}
.faq-layout-inner{max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:1fr 2fr;gap:5rem;align-items:start;
}
.faq-sidebar p{
  font-size:0.85rem;line-height:1.8;
  color:var(--grey);margin-top:1.5rem;
}
.faq-list{
  display:flex;flex-direction:column;gap:0;
}
.faq-item{
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.faq-item:first-child{border-top:1px solid rgba(255,255,255,0.08)}
.faq-question{
  display:flex;justify-content:space-between;align-items:center;
  padding:1.5rem 0;cursor:pointer;
  transition:color 0.2s;
  font-size:0.92rem;font-weight:400;
  color:var(--white);gap:1rem;
}
.faq-question:hover{color:var(--gold)}
.faq-question .faq-icon{
  font-size:1.2rem;color:var(--gold);
  flex-shrink:0;transition:transform 0.3s;
  line-height:1;
}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-answer{
  max-height:0;overflow:hidden;
  transition:max-height 0.35s ease,padding 0.35s ease;
}
.faq-item.open .faq-answer{max-height:500px;padding-bottom:1.5rem}
.faq-answer p{
  font-size:0.85rem;line-height:1.8;
  color:var(--text-light);
}
.faq-answer a{color:var(--gold)}

/* ─── CONTACT PAGE ─── */
.contact-layout{
  display:grid;grid-template-columns:1fr 1.6fr;
  gap:5rem;align-items:start;
  padding:5rem 2rem;
}
.contact-layout-inner{
  max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1.6fr;
  gap:5rem;align-items:start;
}
.contact-info h2{
  font-family:var(--font-display);
  font-size:2.8rem;font-weight:300;
  line-height:1.1;margin-bottom:1rem;
}
.contact-info h2 em{display:block;font-style:normal;color:var(--text-light);font-weight:300}
.contact-divider{width:3rem;height:2px;background:var(--gold);margin:1.5rem 0 2rem}
.contact-detail{margin-bottom:1.75rem}
.contact-detail-label{
  font-size:0.58rem;font-weight:700;
  letter-spacing:0.18em;text-transform:uppercase;
  color:var(--gold);margin-bottom:0.35rem;
}
.contact-detail-value{
  font-size:0.9rem;color:var(--white);line-height:1.5;
}
.contact-form{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(204,164,58,0.18);
  padding:2.5rem;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem}
.form-group{display:flex;flex-direction:column;gap:0.4rem;margin-bottom:1.25rem}
.form-label{
  font-size:0.6rem;font-weight:700;
  letter-spacing:0.15em;text-transform:uppercase;
  color:var(--grey);
}
.form-input,.form-select,.form-textarea{
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12);
  color:var(--white);
  padding:0.85rem 1rem;
  font-family:var(--font-body);
  font-size:0.85rem;
  outline:none;
  transition:border-color 0.2s;
  width:100%;
}
.form-input:focus,.form-select:focus,.form-textarea:focus{
  border-color:var(--gold);
}
.form-select option{background:var(--navy);color:var(--white)}
.form-textarea{resize:vertical;min-height:130px}
.form-submit{
  background:var(--gold);color:var(--navy);
  padding:1rem 2.5rem;
  font-size:0.7rem;font-weight:700;
  letter-spacing:0.15em;text-transform:uppercase;
  border:none;cursor:pointer;width:100%;
  transition:background 0.2s;
  font-family:var(--font-body);
}
.form-submit:hover{background:var(--gold-light)}
.form-success{
  display:none;text-align:center;padding:3rem 1rem;
}
.form-success-icon{font-size:3rem;margin-bottom:1rem}
.form-success h3{
  font-family:var(--font-display);font-size:1.8rem;
  color:var(--gold);margin-bottom:0.5rem;
}
.form-success p{font-size:0.85rem;color:var(--text-light)}

/* ─── PRIVACY PAGE ─── */
.privacy-content{
  max-width:800px;margin:0 auto;
  padding:5rem 2rem;
}
.privacy-content h2{
  font-family:var(--font-display);
  font-size:1.6rem;font-weight:400;
  color:var(--gold);margin:2.5rem 0 1rem;
}
.privacy-content p,.privacy-content li{
  font-size:0.88rem;line-height:1.9;
  color:var(--text-light);margin-bottom:0.8rem;
}
.privacy-content ul{
  margin-left:1.5rem;margin-bottom:1rem;
}

/* ─── FOOTER ─── */
footer{
  background:var(--navy-mid);
  border-top:1px solid rgba(204,164,58,0.15);
  padding:3rem 2rem 2rem;
}
.footer-inner{
  max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1fr 1fr;
  gap:2rem;align-items:start;
}
.footer-brand-name{
  font-family:var(--font-display);
  font-size:1.2rem;font-weight:500;
  color:var(--white);margin-bottom:0.25rem;
}
.footer-brand-tag{
  font-size:0.6rem;font-weight:600;
  letter-spacing:0.2em;text-transform:uppercase;
  color:var(--gold);
}
.footer-desc{
  font-size:0.78rem;line-height:1.7;
  color:var(--grey);margin-top:1rem;
}
.footer-col h4{
  font-size:0.6rem;font-weight:700;
  letter-spacing:0.15em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1rem;
}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:0.5rem}
.footer-links li a{
  font-size:0.8rem;color:var(--grey);
  cursor:pointer;transition:color 0.2s;
}
.footer-links li a:hover{color:var(--white)}
.footer-contact-item{
  font-size:0.8rem;color:var(--grey);
  margin-bottom:0.6rem;display:flex;flex-direction:column;
}
.footer-contact-item span:first-child{
  font-size:0.55rem;font-weight:700;
  letter-spacing:0.15em;text-transform:uppercase;
  color:var(--gold);margin-bottom:0.15rem;
}
.footer-bottom{
  max-width:1200px;margin:0 auto;
  border-top:1px solid rgba(255,255,255,0.06);
  padding-top:1.5rem;margin-top:2rem;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:1rem;
}
.footer-bottom-left{
  font-size:0.7rem;color:var(--grey);
}
.footer-bottom-right{
  display:flex;gap:1.5rem;
}
.footer-bottom-right a{
  font-size:0.68rem;color:var(--grey);
  cursor:pointer;transition:color 0.2s;
}
.footer-bottom-right a:hover{color:var(--gold)}


/* ─── SOCIAL ICONS ─── */
.social-icons{
  display:flex;gap:0.75rem;margin-top:1.5rem;align-items:center;
}
.social-icon-btn{
  width:84px;height:84px;
  display:inline-flex;align-items:center;justify-content:center;
  cursor:pointer;transition:transform 0.2s,opacity 0.2s;
  opacity:0.85;flex-shrink:0;
}
.social-icon-btn img{
  width:84px;height:84px;object-fit:contain;
}
.social-icon-btn:hover{transform:scale(1.1);opacity:1}

/* ─── FORM TABS ─── */
.form-tabs{
  display:flex;gap:0;margin-bottom:2rem;
  border-bottom:2px solid rgba(204,164,58,0.2);
}
.form-tab{
  padding:0.75rem 1.5rem;
  font-size:0.65rem;font-weight:700;
  letter-spacing:0.12em;text-transform:uppercase;
  color:var(--grey);cursor:pointer;
  border-bottom:2px solid transparent;
  margin-bottom:-2px;
  transition:color 0.2s,border-color 0.2s;
}
.form-tab.active{color:var(--gold);border-bottom-color:var(--gold)}
.form-tab:hover:not(.active){color:var(--text-light)}
.form-panel{display:none}
.form-panel.active{display:block}

/* ─── URGENT FLAG ─── */
.urgent-toggle{
  display:flex;align-items:center;gap:0.75rem;
  padding:1rem 1.25rem;
  background:rgba(204,164,58,0.06);
  border:1px solid rgba(204,164,58,0.2);
  cursor:pointer;margin-bottom:1.5rem;
  transition:background 0.2s;
}
.urgent-toggle:hover{background:rgba(204,164,58,0.1)}
.urgent-toggle input[type="checkbox"]{
  width:16px;height:16px;accent-color:var(--gold);cursor:pointer;flex-shrink:0;
}
.urgent-label{
  font-size:0.72rem;line-height:1.5;color:var(--text-light);
}
.urgent-label strong{color:var(--gold);font-size:0.68rem;letter-spacing:0.08em;text-transform:uppercase;}

/* ─── MEDIATION PARTY SECTION ─── */
.party-section{
  border:1px solid rgba(204,164,58,0.15);
  padding:1.5rem;margin-bottom:1.5rem;
  position:relative;
}
.party-section-label{
  font-size:0.58rem;font-weight:700;
  letter-spacing:0.18em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1.25rem;
}
.other-party-section{
  display:none;
  border:1px solid rgba(204,164,58,0.1);
  padding:1.5rem;margin-bottom:1.5rem;
  background:rgba(204,164,58,0.02);
}
.other-party-section.visible{display:block}

/* ─── MEDIATION TYPE TOGGLE ─── */
.med-type-wrap{margin-bottom:1.5rem}
.med-type-options{display:flex;gap:1rem;flex-wrap:wrap;margin-top:0.5rem}
.med-type-btn{
  display:flex;align-items:center;gap:0.6rem;
  padding:0.65rem 1.2rem;
  border:1.5px solid rgba(255,255,255,0.12);
  cursor:pointer;
  font-size:0.72rem;font-weight:600;
  color:var(--text-light);
  transition:border-color 0.2s,color 0.2s,background 0.2s;
  background:rgba(255,255,255,0.03);
}
.med-type-btn.selected{
  border-color:var(--gold);color:var(--gold);
  background:rgba(204,164,58,0.08);
}
.med-type-btn input[type=radio]{accent-color:var(--gold)}

/* ─── BOOKING SUCCESS ─── */
.booking-success{
  display:none;text-align:center;padding:3rem 1rem;
}
.booking-success.visible{display:block}
.booking-success-icon{
  font-size:3rem;margin-bottom:1rem;
}
.booking-success h3{
  font-family:var(--font-display);font-size:1.8rem;
  color:var(--gold);margin-bottom:0.75rem;
}
.booking-success p{
  font-size:0.85rem;color:var(--text-light);
  line-height:1.7;max-width:420px;margin:0 auto;
}
.booking-success .urgent-note{
  margin-top:1rem;
  padding:0.85rem 1.2rem;
  background:rgba(204,164,58,0.1);
  border:1px solid rgba(204,164,58,0.25);
  font-size:0.78rem;color:var(--gold);
}

/* ─── PRICING NOTE ─── */
.pricing-note{
  background:rgba(204,164,58,0.06);
  border:1px solid rgba(204,164,58,0.18);
  border-left:3px solid var(--gold);
  padding:1rem 1.25rem;
  margin-bottom:1.75rem;
}
.pricing-note p{
  font-size:0.78rem;line-height:1.6;
  color:var(--text-light);margin:0;
}
.pricing-note p strong{color:var(--gold)}

/* ─── RESPONSIVE ─── */
@media(max-width:900px){
  .hero-inner,.about-grid,.about-content,.services-grid,
  .contact-layout-inner,.faq-layout-inner,.footer-inner{
    grid-template-columns:1fr;gap:2.5rem;
  }
  .service-page-grid{grid-template-columns:1fr;gap:2rem}
  .creds-row{grid-template-columns:1fr 1fr}
  .svc-detail-item{grid-template-columns:80px 1fr}
  .svc-detail-num{font-size:3rem}
  .form-row{grid-template-columns:1fr}
  .nav-links{display:none}
  .nav-mobile-toggle{display:flex}
  .hero-right{display:none}
  .trust-bar-inner{grid-template-columns:1fr 1fr}
  .cred-card{grid-column:span 1}
}
@media(max-width:600px){
  .trust-bar-inner{grid-template-columns:1fr}
  .svc-detail-features{grid-template-columns:1fr}
  .about-stat-grid{grid-template-columns:1fr 1fr}
}
