*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --black:#000;
  --dark:#0a0a0a;
  --dark-card:#111;
  --dark-alt:#0d0d0d;
  --gold:#d4a843;
  --gold-light:#e8c676;
  --gold-dim:rgba(212,168,67,.15);
  --white:#fff;
  --gray:#aaa;
  --font-heading:'Playfair Display',Georgia,serif;
  --font-body:'Inter','Helvetica Neue',Arial,sans-serif;
}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  background:var(--black);
  color:var(--white);
  line-height:1.7;
  overflow-x:hidden;
}
a{color:var(--gold);text-decoration:none;transition:color .3s}
a:hover{color:var(--gold-light)}

/* ─── NAV ─── */
.navbar{
  position:fixed;top:0;left:0;width:100%;z-index:1000;
  padding:1rem 2rem;
  display:flex;align-items:center;justify-content:space-between;
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(212,168,67,.08);
  transition:padding .3s,background .3s;
}
.navbar.scrolled{padding:.6rem 2rem;background:rgba(0,0,0,.95)}
.nav-logo{display:flex;align-items:center;gap:.6rem}
.nav-logo img{height:50px;width:auto;transition:height .3s}
.navbar.scrolled .nav-logo img{height:38px}
.nav-logo span{
  font-family:var(--font-heading);font-size:1.4rem;font-weight:700;
  color:var(--gold);letter-spacing:.5px;white-space:nowrap;
}
.nav-logo span em{font-style:normal;color:var(--white)}
.nav-links{display:flex;gap:1.8rem;list-style:none;align-items:center}
.nav-links a{
  font-size:.85rem;font-weight:500;
  color:var(--gray);text-transform:uppercase;letter-spacing:1px;
  position:relative;transition:color .3s;
}
.nav-links a::after{
  content:'';position:absolute;left:0;bottom:-4px;
  width:0;height:2px;background:var(--gold);transition:width .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-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:4px}
.nav-toggle span{display:block;width:26px;height:2px;background:var(--gold);border-radius:2px;transition:transform .3s,opacity .3s}

/* ─── HERO ─── */
.hero{
  min-height:100vh;display:flex;align-items:center;justify-content:center;
  text-align:center;padding:8rem 2rem 4rem;
  position:relative;overflow:hidden;
  background:radial-gradient(ellipse at 50% 20%,rgba(212,168,67,.06) 0%,transparent 60%),var(--black);
}
.hero-bg-line{
  position:absolute;top:0;left:50%;width:1px;height:40%;
  background:linear-gradient(to bottom,transparent,var(--gold),transparent);
  opacity:.15;
}
.hero-content{max-width:820px;position:relative;z-index:1}
.hero-badge{
  display:inline-block;
  font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:3px;
  color:var(--gold);
  border:1px solid rgba(212,168,67,.3);border-radius:30px;
  padding:.45rem 1.4rem;margin-bottom:2rem;
}
.hero h1{
  font-family:var(--font-heading);
  font-size:clamp(2.2rem,5vw,3.8rem);
  font-weight:700;line-height:1.2;
  margin-bottom:1.2rem;
}
.hero h1 .accent{color:var(--gold)}
.hero-sub{
  font-size:1rem;font-weight:400;letter-spacing:2px;
  color:var(--gold);margin-bottom:1.8rem;
}
.hero-sub span{opacity:.5;margin:0 .3rem}
.hero p{
  font-size:1.05rem;color:var(--gray);
  max-width:650px;margin:0 auto 2.5rem;line-height:1.8;
}
.hero-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.85rem 2rem;border-radius:4px;
  font-family:var(--font-body);font-size:.85rem;font-weight:600;
  text-transform:uppercase;letter-spacing:1.5px;
  cursor:pointer;transition:all .3s;border:none;
}
.btn-primary{background:var(--gold);color:var(--black)}
.btn-primary:hover{background:var(--gold-light);color:var(--black);transform:translateY(-2px);box-shadow:0 8px 30px rgba(212,168,67,.25)}
.btn-outline{background:transparent;color:var(--gold);border:1px solid var(--gold)}
.btn-outline:hover{background:var(--gold);color:var(--black);transform:translateY(-2px)}

/* ─── SECTIONS ─── */
section{padding:6rem 2rem}
.section-dark{background:var(--dark-alt)}
.container{max-width:1100px;margin:0 auto}
.section-header{text-align:center;margin-bottom:4rem}
.section-label{
  display:inline-block;
  font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:3px;
  color:var(--gold);margin-bottom:.8rem;
}
.section-header h2{
  font-family:var(--font-heading);
  font-size:clamp(1.8rem,4vw,2.6rem);
  font-weight:700;margin-bottom:1rem;
}
.section-header p{color:var(--gray);max-width:600px;margin:0 auto;font-size:.95rem}
.divider{
  width:60px;height:2px;background:var(--gold);margin:1.5rem auto 0;border-radius:2px;
}

/* ─── ABOUT ─── */
.about-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;
}
.about-visual{
  position:relative;display:flex;align-items:center;justify-content:center;
  min-height:340px;
}
.about-visual-ring{
  width:250px;height:250px;border-radius:50%;
  border:1px solid rgba(212,168,67,.2);
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.about-visual-ring::before{
  content:'';position:absolute;
  width:200px;height:200px;border-radius:50%;
  border:1px solid rgba(212,168,67,.1);
}
.about-visual-ring i{font-size:3rem;color:var(--gold);opacity:.6}
.about-visual-ring img{width:130px;height:auto}
.about-text h2{
  font-family:var(--font-heading);font-size:1.6rem;margin-bottom:1.2rem;
}
.about-text p{color:var(--gray);margin-bottom:1rem;font-size:.95rem}

/* ─── SERVICES ─── */
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
  justify-items:center;
}
.services-grid .service-card:last-child{
  grid-column:2;
}
.service-card{
  background:var(--dark-card);border:1px solid rgba(255,255,255,.04);
  border-radius:8px;padding:2.2rem 1.8rem;
  transition:transform .3s,border-color .3s,box-shadow .3s;
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;
}
.service-card p{flex:1}
.service-card .btn-book{margin-top:auto;align-self:flex-start}
.service-card::before{
  content:'';position:absolute;top:0;left:0;width:100%;height:3px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  opacity:0;transition:opacity .3s;
}
.service-card:hover{
  transform:translateY(-6px);
  border-color:rgba(212,168,67,.15);
  box-shadow:0 16px 40px rgba(0,0,0,.4);
}
.service-card:hover::before{opacity:1}
.service-icon{
  width:52px;height:52px;border-radius:10px;
  background:var(--gold-dim);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.4rem;
}
.service-icon i{font-size:1.2rem;color:var(--gold)}
.service-card h3{
  font-family:var(--font-heading);font-size:1.15rem;
  margin-bottom:.7rem;font-weight:600;
}
.service-card p{color:var(--gray);font-size:.9rem;line-height:1.7;margin-bottom:1.2rem}
.btn-book{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:1.5px;
  color:var(--gold);border:1px solid rgba(212,168,67,.3);
  padding:.5rem 1.1rem;border-radius:4px;
  transition:all .3s;
}
.btn-book i{font-size:.65rem;transition:transform .3s}
.btn-book:hover{
  background:var(--gold);color:var(--black);border-color:var(--gold);
}
.btn-book:hover i{transform:translateX(3px)}

/* ─── WHY CHOOSE US ─── */
.benefits-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:1.5rem;
  max-width:1100px;margin:0 auto;
}
.benefit-item{
  text-align:center;padding:2rem 1rem;
  border:1px solid rgba(255,255,255,.04);border-radius:8px;
  background:var(--dark-card);
  transition:border-color .3s,transform .3s;
}
.benefit-item:hover{border-color:rgba(212,168,67,.2);transform:translateY(-4px)}
.benefit-icon{
  width:48px;height:48px;border-radius:50%;
  background:var(--gold-dim);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1rem;
}
.benefit-icon i{color:var(--gold);font-size:1rem}
.benefit-item h4{font-size:.9rem;font-weight:600;margin-bottom:.4rem}
.benefit-item p{font-size:.8rem;color:var(--gray)}

/* ─── DISCLAIMER ─── */
.disclaimer-section{padding:3rem 2rem 0}
.disclaimer-box{
  max-width:1100px;margin:0 auto;text-align:center;
  background:rgba(212,168,67,.06);
  border:1px solid rgba(212,168,67,.15);
  border-radius:8px;padding:2.5rem 2rem;
}
.disclaimer-icon{font-size:1.6rem;color:var(--gold);margin-bottom:.8rem}
.disclaimer-box h3{
  font-family:var(--font-heading);font-size:1.2rem;
  color:var(--gold);margin-bottom:.8rem;letter-spacing:.5px;
}
.disclaimer-box p{
  font-size:.88rem;color:var(--gray);line-height:1.8;font-style:italic;
}

/* ─── CONTACT ─── */
.contact-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;
}
.contact-info{display:flex;flex-direction:column;gap:2rem}
.contact-item{display:flex;align-items:flex-start;gap:1rem}
.contact-item-icon{
  width:44px;height:44px;border-radius:50%;flex-shrink:0;
  background:var(--gold-dim);
  display:flex;align-items:center;justify-content:center;
}
.contact-item-icon i{color:var(--gold);font-size:.95rem}
.contact-item h4{font-size:.9rem;font-weight:600;margin-bottom:.2rem}
.contact-item p,.contact-item a{font-size:.9rem;color:var(--gray)}
.contact-form{display:flex;flex-direction:column;gap:1rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.contact-form input,.contact-form textarea{
  width:100%;padding:.9rem 1.1rem;
  background:var(--dark-card);border:1px solid rgba(255,255,255,.08);
  border-radius:6px;color:var(--white);
  font-family:var(--font-body);font-size:.9rem;
  transition:border-color .3s;
}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:rgba(255,255,255,.3)}
.contact-form input:focus,.contact-form textarea:focus{outline:none;border-color:var(--gold)}
.contact-form textarea{resize:vertical;min-height:130px}
.contact-form .btn{align-self:flex-start}

/* ─── FAQ ─── */
.faq-list{max-width:780px;margin:0 auto;display:flex;flex-direction:column;gap:1rem}
.faq-item{
  border:1px solid rgba(255,255,255,.06);border-radius:8px;
  background:var(--dark-card);overflow:hidden;
  transition:border-color .3s;
}
.faq-item.open{border-color:rgba(212,168,67,.2)}
.faq-question{
  width:100%;display:flex;align-items:center;justify-content:space-between;
  padding:1.3rem 1.5rem;gap:1rem;
  background:none;border:none;cursor:pointer;text-align:left;
  font-family:var(--font-body);font-size:.95rem;font-weight:600;
  color:var(--white);transition:color .3s;
}
.faq-question:hover,.faq-item.open .faq-question{color:var(--gold)}
.faq-question i{
  font-size:.75rem;color:var(--gold);flex-shrink:0;
  transition:transform .3s;
}
.faq-item.open .faq-question i{transform:rotate(180deg)}
.faq-answer{
  max-height:0;overflow:hidden;
  transition:max-height .4s ease,padding .3s ease;
}
.faq-answer-inner{
  padding:0 1.5rem 1.3rem;
  font-size:.9rem;color:var(--gray);line-height:1.8;
}

/* ─── STATS ─── */
.stats-section{
  padding:4rem 2rem;
  background:var(--dark-card);
  border-top:1px solid rgba(212,168,67,.08);
  border-bottom:1px solid rgba(212,168,67,.08);
}
.stats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;
  max-width:900px;margin:0 auto;text-align:center;
}
.stat-item{position:relative}
.stat-item::after{
  content:'';position:absolute;right:0;top:15%;height:70%;width:1px;
  background:rgba(212,168,67,.15);
}
.stat-item:last-child::after{display:none}
.stat-number{
  font-family:var(--font-heading);font-size:2.8rem;font-weight:700;
  color:var(--gold);line-height:1;
}
.stat-suffix{
  font-family:var(--font-heading);font-size:2rem;font-weight:700;
  color:var(--gold);
}
.stat-item p{
  font-size:.8rem;color:var(--gray);text-transform:uppercase;
  letter-spacing:1.5px;margin-top:.5rem;
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
}
.testimonial-card{
  background:var(--dark-card);border:1px solid rgba(255,255,255,.04);
  border-radius:8px;padding:2rem 1.6rem;
  position:relative;transition:border-color .3s,transform .3s;
}
.testimonial-card:hover{
  border-color:rgba(212,168,67,.15);transform:translateY(-4px);
}
.testimonial-quote{
  position:absolute;top:1.2rem;right:1.4rem;
  font-size:1.4rem;color:var(--gold);opacity:.15;
}
.testimonial-stars{margin-bottom:1rem}
.testimonial-stars i{color:var(--gold);font-size:.8rem;margin-right:2px}
.testimonial-card p{
  color:var(--gray);font-size:.9rem;line-height:1.8;
  margin-bottom:1.5rem;font-style:italic;
}
.testimonial-author{display:flex;align-items:center;gap:.8rem}
.testimonial-avatar{
  width:40px;height:40px;border-radius:50%;
  background:var(--gold-dim);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.testimonial-avatar i{color:var(--gold);font-size:.85rem}
.testimonial-author h4{font-size:.85rem;font-weight:600;margin-bottom:.15rem}
.testimonial-author span{font-size:.75rem;color:var(--gray)}

/* ─── BACK TO TOP ─── */
.back-to-top{
  position:fixed;bottom:2rem;right:2rem;z-index:900;
  width:44px;height:44px;border-radius:50%;border:none;cursor:pointer;
  background:var(--gold);color:var(--black);
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;
  box-shadow:0 4px 16px rgba(212,168,67,.3);
  opacity:0;visibility:hidden;transform:translateY(10px);
  transition:opacity .3s,visibility .3s,transform .3s,background .3s;
}
.back-to-top.visible{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top:hover{background:var(--gold-light);transform:translateY(-2px)}

/* ─── FLOATING CALL BUTTON ─── */
.fab-call{
  position:fixed;bottom:2rem;left:2rem;z-index:900;
  width:52px;height:52px;border-radius:50%;
  background:var(--gold);color:var(--black);
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;
  box-shadow:0 4px 20px rgba(212,168,67,.35);
  transition:background .3s,transform .3s;
}
.fab-call:hover{background:var(--gold-light);color:var(--black);transform:scale(1.1)}
.fab-call::before{
  content:'';position:absolute;
  width:100%;height:100%;border-radius:50%;
  border:2px solid var(--gold);
  animation:fabPulse 2s infinite;
}
@keyframes fabPulse{
  0%{transform:scale(1);opacity:.6}
  100%{transform:scale(1.6);opacity:0}
}

/* ─── FOOTER SOCIAL ─── */
.footer-social{
  display:flex;justify-content:center;gap:1rem;margin-bottom:1.2rem;
}
.footer-social a{
  width:36px;height:36px;border-radius:50%;
  border:1px solid rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
  color:var(--gray);font-size:.85rem;
  transition:all .3s;
}
.footer-social a:hover{
  background:var(--gold);color:var(--black);
  border-color:var(--gold);transform:translateY(-2px);
}

/* ─── FOOTER ─── */
.footer{
  padding:3rem 2rem 2rem;
  border-top:1px solid rgba(255,255,255,.05);
  text-align:center;
}
.footer-logo{margin-bottom:.8rem}
.footer-logo img{height:65px;width:auto}
.footer p{font-size:.8rem;color:var(--gray);margin-bottom:1rem}
.footer-links{list-style:none;display:flex;justify-content:center;gap:1.5rem;flex-wrap:wrap;margin-bottom:1.5rem}
.footer-links a{font-size:.8rem;color:var(--gray);text-transform:uppercase;letter-spacing:1px;transition:color .3s}
.footer-links a:hover{color:var(--gold)}
.footer-copy{font-size:.75rem;color:rgba(255,255,255,.3)}

/* ─── SKIP LINK ─── */
.skip-link{
  position:absolute;top:-100%;left:50%;transform:translateX(-50%);
  background:var(--gold);color:var(--black);padding:.6rem 1.2rem;
  border-radius:0 0 6px 6px;font-size:.85rem;font-weight:600;z-index:9999;
  transition:top .3s;
}
.skip-link:focus{top:0;color:var(--black)}

/* ─── SR ONLY ─── */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* ─── SCROLL ANIMATIONS ─── */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

/* ─── RESPONSIVE ─── */

/* Large tablets / small desktops */
@media(max-width:1024px){
  .benefits-grid{grid-template-columns:repeat(3,1fr);gap:1.2rem}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .services-grid .service-card:last-child{grid-column:auto}
  .testimonials-grid{grid-template-columns:1fr 1fr}
}

/* Tablets */
@media(max-width:900px){
  section{padding:4.5rem 1.5rem}
  .about-grid,.contact-grid{grid-template-columns:1fr}
  .about-visual{min-height:200px;order:-1}
  .about-visual-ring{width:200px;height:200px}
  .about-visual-ring::before{width:160px;height:160px}
  .about-visual-ring i{font-size:2.2rem}
  .form-row{grid-template-columns:1fr}
  .section-header{margin-bottom:3rem}
}

/* Small tablets / large phones */
@media(max-width:768px){
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}
  .stat-item:nth-child(2)::after{display:none}
  .stat-number{font-size:2.2rem}
  .testimonials-grid{grid-template-columns:1fr}
  .navbar{padding:.8rem 1.2rem}
  .navbar.scrolled{padding:.6rem 1.2rem}
  .nav-links{
    position:fixed;top:0;right:-100%;width:280px;height:100vh;
    flex-direction:column;justify-content:center;gap:2rem;
    background:rgba(0,0,0,.97);
    transition:right .4s ease;padding:2rem;
    border-left:1px solid rgba(212,168,67,.1);
  }
  .nav-links.open{right:0}
  .nav-toggle{display:flex}
  .hero{padding:7rem 1.5rem 3.5rem}
  .hero h1{font-size:1.9rem}
  .hero p{font-size:.95rem}
  .hero-sub{font-size:.85rem;letter-spacing:1px}
  .hero-badge{font-size:.65rem;letter-spacing:2px;padding:.4rem 1.1rem}
  .services-grid{grid-template-columns:1fr}
  .service-card{padding:1.8rem 1.4rem}
  .benefits-grid{grid-template-columns:repeat(2,1fr);gap:1rem}
  .benefit-item{padding:1.5rem .8rem}
  .faq-question{padding:1.1rem 1.2rem;font-size:.9rem}
  .faq-answer-inner{padding:0 1.2rem 1.1rem;font-size:.85rem}
  .contact-grid{gap:2rem}
  .footer-links{gap:1rem}
}

/* Phones */
@media(max-width:480px){
  .stats-grid{grid-template-columns:1fr 1fr}
  .stat-number{font-size:2rem}
  .fab-call{width:46px;height:46px;font-size:1rem;bottom:1.5rem;left:1.5rem}
  .back-to-top{bottom:1.5rem;right:1.5rem;width:40px;height:40px;font-size:.9rem}
  section{padding:3.5rem 1rem}
  .hero{padding:6.5rem 1rem 3rem}
  .hero h1{font-size:1.6rem}
  .hero p{font-size:.9rem;line-height:1.7}
  .hero-sub{font-size:.75rem;letter-spacing:1px}
  .hero-sub span{margin:0 .15rem}
  .hero-btns{flex-direction:column;align-items:center;gap:.8rem}
  .btn{padding:.75rem 1.6rem;font-size:.8rem;width:100%;justify-content:center}
  .section-header h2{font-size:1.5rem}
  .section-label{font-size:.65rem;letter-spacing:2px}
  .about-text h2{font-size:1.3rem}
  .about-text p{font-size:.88rem}
  .about-visual-ring{width:160px;height:160px}
  .about-visual-ring::before{width:130px;height:130px}
  .about-visual-ring i{font-size:1.8rem}
  .benefits-grid{grid-template-columns:1fr}
  .benefit-item{padding:1.4rem 1rem}
  .contact-item-icon{width:38px;height:38px}
  .contact-form input,.contact-form textarea{padding:.8rem 1rem;font-size:.85rem}
  .faq-question{font-size:.85rem;padding:1rem}
  .faq-answer-inner{padding:0 1rem 1rem;font-size:.82rem}
  .footer{padding:2.5rem 1rem 1.5rem}
  .footer-links{gap:.8rem}
  .footer-links a{font-size:.7rem}
  .nav-logo img{height:38px}
}

/* Very small phones */
@media(max-width:360px){
  .hero h1{font-size:1.4rem}
  .hero-sub{font-size:.7rem}
  .navbar{padding:.7rem 1rem}
  .nav-logo img{height:34px}
  .section-header h2{font-size:1.3rem}
}
