:root{
  --black:#020202;
  --black2:#070707;
  --panel:#101010;
  --panel2:#161616;
  --gold:#d6ad55;
  --gold2:#f5d78b;
  --white:#ffffff;
  --muted:#b7b7b7;
  --line:rgba(214,173,85,.32);
  --radius:22px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:Tahoma,Arial,sans-serif;
  background:var(--black);
  color:var(--white);
  line-height:1.8;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1200px,92%);margin:auto}

.noise{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.055;
  z-index:1;
  background-image:radial-gradient(#fff 1px, transparent 1px);
  background-size:4px 4px;
}
.cursor-glow{
  position:fixed;
  width:330px;
  height:330px;
  border-radius:50%;
  pointer-events:none;
  z-index:2;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(214,173,85,.18), transparent 65%);
}

/* Top */
.top-bar{
  position:fixed;
  top:0;
  width:100%;
  z-index:1001;
  background:#030303;
  border-bottom:1px solid var(--line);
  height:44px;
}
.top-inner{
  height:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  font-size:13px;
  color:#e7e7e7;
}
.top-item{color:#ddd}
.socials{display:flex;gap:14px}
.socials a{color:#eee;font-size:12px}
.top-book{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#090909;
  padding:7px 16px;
  font-weight:800;
}

/* Nav */
.main-header{
  position:fixed;
  top:44px;
  width:100%;
  z-index:1000;
  background:rgba(5,5,5,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(214,173,85,.16);
}
.nav-inner{
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:14px;
}
.logo-mark{
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:var(--gold2);
  font-size:56px;
  font-weight:900;
  font-family:Georgia,serif;
  border:2px solid var(--line);
  box-shadow:0 0 30px rgba(214,173,85,.18);
}
.logo-text{
  color:var(--gold2);
  font-weight:900;
  font-size:23px;
  letter-spacing:3px;
}
.logo-text small{
  display:block;
  color:#fff;
  font-size:10px;
  letter-spacing:5px;
  margin-top:-4px;
  text-align:center;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
}
.nav-links a{
  font-weight:800;
  color:#fff;
  font-size:15px;
  position:relative;
}
.nav-links a.active,
.nav-links a:hover{color:var(--gold2)}
.nav-links a::after{
  content:"";
  position:absolute;
  bottom:-12px;
  right:0;
  width:0;
  height:2px;
  background:var(--gold);
  transition:.3s;
}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.menu-toggle{
  display:none;
  background:transparent;
  border:0;
  color:#fff;
  font-size:32px;
}

/* Hero */
.hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;
  padding-top:132px;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:url('../images/hero-car.jpg') center right/cover no-repeat;
  animation:heroZoom 9s ease-in-out infinite alternate;
}
@keyframes heroZoom{to{transform:scale(1.05)}}
.hero-shade{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 70% 45%, rgba(214,173,85,.08), transparent 36%),
    linear-gradient(90deg, #030303 0%, rgba(3,3,3,.9) 35%, rgba(3,3,3,.35) 100%);
}
.hero-content{
  position:relative;
  z-index:5;
  min-height:590px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}
.hero-copy{max-width:630px}
.hero h1{
  font-size:clamp(48px,7vw,92px);
  line-height:1.12;
  font-weight:900;
  margin-bottom:24px;
}
.hero h1 span{color:var(--gold)}
.hero p{
  max-width:570px;
  color:#d5d5d5;
  font-size:21px;
}
.hero-actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:34px;
}
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  min-height:56px;
  padding:14px 28px;
  border-radius:0;
  font-weight:900;
  border:1px solid var(--line);
  transition:.3s;
}
.gold-btn{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#080808;
}
.outline-btn{
  background:rgba(255,255,255,.03);
  color:#fff;
}
.btn:hover{transform:translateY(-4px)}
.video-card{
  align-self:flex-end;
  margin-bottom:92px;
  width:220px;
  padding:18px;
  border:1px solid var(--line);
  background:rgba(10,10,10,.72);
  backdrop-filter:blur(14px);
}
.video-card button{
  width:46px;
  height:46px;
  border-radius:50%;
  background:transparent;
  color:var(--gold2);
  border:1px solid var(--gold);
  margin-bottom:10px;
}
.video-card span{display:block;font-weight:900}
.video-card small{color:var(--muted)}
.hero-dots{
  position:absolute;
  z-index:6;
  top:37%;
  left:38px;
  display:grid;
  gap:16px;
  color:#fff;
}
.hero-dots i{
  width:15px;
  height:15px;
  border-radius:50%;
  border:1px solid #fff;
}
.hero-dots i.active{
  background:var(--gold2);
  border-color:var(--gold2);
}
.trust-strip{
  position:relative;
  z-index:6;
  margin-top:-78px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:rgba(12,12,12,.82);
  backdrop-filter:blur(16px);
  border:1px solid var(--line);
}
.trust-item{
  display:flex;
  align-items:center;
  gap:16px;
  padding:24px 28px;
  border-left:1px solid rgba(214,173,85,.14);
}
.trust-item strong{
  color:var(--gold2);
  font-size:30px;
}
.trust-item b{display:block;color:#fff}
.trust-item span{color:var(--muted);font-size:13px}

/* Sections */
.section{padding:100px 0}
.section-title{
  text-align:center;
  margin-bottom:46px;
}
.section-title span,
.about-copy span,
.booking-copy span,
.contact-box span{
  color:var(--gold2);
  font-weight:900;
}
.section-title h2,
.about-copy h2,
.booking-copy h2,
.contact-box h2{
  font-size:clamp(30px,4vw,48px);
  line-height:1.3;
}

.services{
  background:radial-gradient(circle at top, rgba(214,173,85,.08), transparent 32%), #050505;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
}
.service-card{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#151515,#090909);
  border:1px solid var(--line);
  min-height:300px;
  transition:.35s;
}
.service-card:hover{
  transform:translateY(-10px);
  border-color:var(--gold);
}
.service-card img{
  height:150px;
  width:100%;
  object-fit:cover;
  opacity:.86;
}
.service-content{
  padding:26px 20px 28px;
  text-align:center;
}
.round-icon{
  width:52px;
  height:52px;
  margin:-52px auto 14px;
  border-radius:50%;
  border:1px solid var(--gold);
  background:#0d0d0d;
  color:var(--gold2);
  display:flex;
  justify-content:center;
  align-items:center;
  font-weight:900;
  position:relative;
}
.service-card h3{
  font-size:20px;
  margin-bottom:8px;
}
.service-card p{
  color:var(--muted);
  font-size:14px;
}

/* About */
.about-section{
  background:#070707;
}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px;
  align-items:center;
}
.about-image{
  border:1px solid var(--line);
  padding:8px;
  background:#101010;
}
.about-image img{
  height:420px;
  object-fit:cover;
}
.about-copy p{
  color:var(--muted);
  margin:18px 0;
}
.feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:24px;
}
.feature-grid div{
  border:1px solid var(--line);
  background:#101010;
  padding:16px;
  color:#fff;
}

/* Packages */
.packages{
  background:radial-gradient(circle at left, rgba(214,173,85,.09), transparent 35%), #050505;
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.price-card{
  background:linear-gradient(180deg,#141414,#080808);
  border:1px solid var(--line);
  padding:34px;
  transition:.35s;
}
.price-card.featured{
  border-color:var(--gold);
  box-shadow:0 0 80px rgba(214,173,85,.12);
  transform:translateY(-12px);
}
.price-card:hover{transform:translateY(-10px)}
.price-card h3{
  font-size:28px;
}
.price-card small{
  color:var(--gold2);
  font-weight:900;
}
.price{
  color:var(--gold2);
  font-size:25px;
  font-weight:900;
  margin:14px 0 20px;
}
.price-card ul{
  list-style:none;
  margin-bottom:26px;
}
.price-card li{
  color:#ddd;
  padding:8px 0;
}
.price-card li::before{
  content:"✓";
  color:var(--gold2);
  margin-left:9px;
}

/* Work */
.work{
  background:#070707;
}
.work-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.work-grid img{
  height:260px;
  width:100%;
  object-fit:cover;
  border:1px solid var(--line);
  transition:.35s;
}
.work-grid img:hover{
  transform:scale(1.035);
}

/* Booking */
.booking-section{
  background:radial-gradient(circle at top right, rgba(214,173,85,.1), transparent 34%), #050505;
}
.booking-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:40px;
  align-items:start;
}
.booking-copy p{
  color:var(--muted);
  margin-top:16px;
}
.booking-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  background:linear-gradient(180deg,#151515,#090909);
  border:1px solid var(--line);
  padding:32px;
}
.booking-form textarea,
.booking-form .time-slots,
.booking-form button,
.booking-success{
  grid-column:1/-1;
}
input,select,textarea{
  width:100%;
  background:#070707;
  color:#fff;
  border:1px solid rgba(214,173,85,.28);
  padding:15px;
  font-family:inherit;
  font-size:15px;
  outline:none;
}
textarea{min-height:120px;resize:vertical}
.time-slots{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  color:var(--muted);
}
.slot-btn{
  background:#101010;
  color:#fff;
  border:1px solid var(--line);
  padding:11px 16px;
  cursor:pointer;
  font-family:inherit;
  transition:.25s;
}
.slot-btn.selected,.slot-btn:hover{
  background:var(--gold);
  color:#050505;
}
.booking-success{
  display:none;
  background:#071b11;
  border:1px solid rgba(34,197,94,.35);
  padding:20px;
}
.booking-success.show{display:block}

/* Contact */
.contact{
  background:#080808;
}
.contact-box{
  border:1px solid var(--line);
  background:linear-gradient(135deg,#151515,#070707);
  padding:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.contact-box p{color:var(--muted)}

/* Footer */
.footer{
  background:#020202;
  border-top:1px solid var(--line);
  padding:34px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.footer p{color:var(--muted)}

/* Reveal */
.reveal{
  opacity:0;
  transform:translateY(38px);
  transition:1s ease;
}
.reveal.show{
  opacity:1;
  transform:translateY(0);
}
.delay-1{transition-delay:.12s}
.delay-2{transition-delay:.24s}
.delay-3{transition-delay:.36s}

/* Responsive */
@media(max-width:1050px){
  .top-bar{display:none}
  .main-header{top:0}
  .menu-toggle{display:block}
  .nav-links{
    display:none;
    position:absolute;
    top:88px;
    right:0;
    left:0;
    background:#050505;
    padding:24px;
    flex-direction:column;
    align-items:flex-start;
  }
  .nav-links.open{display:flex}
  .hero{padding-top:88px}
  .hero-content{display:block;padding-top:100px}
  .video-card,.hero-dots{display:none}
  .trust-strip,
  .services-grid,
  .pricing-grid,
  .work-grid,
  .about-grid,
  .booking-grid{
    grid-template-columns:1fr;
  }
  .trust-strip{margin-top:0}
  .services-grid{grid-template-columns:1fr 1fr}
  .booking-form{grid-template-columns:1fr}
  .price-card.featured{transform:none}
  .contact-box,.footer-inner{flex-direction:column;align-items:flex-start}
}

@media(max-width:640px){
  .services-grid{grid-template-columns:1fr}
  .hero h1{font-size:44px}
  .logo-mark{width:56px;height:56px;font-size:42px}
  .logo-text{font-size:18px}
}


/* Extra Motion Pack */
.gold-particles{
  position:absolute;
  inset:0;
  z-index:4;
  pointer-events:none;
  overflow:hidden;
}
.gold-particles::before,
.gold-particles::after{
  content:"";
  position:absolute;
  width:3px;
  height:3px;
  border-radius:50%;
  background:var(--gold2);
  box-shadow:
    120px 180px 0 rgba(214,173,85,.45),
    290px 320px 0 rgba(214,173,85,.35),
    520px 140px 0 rgba(214,173,85,.45),
    790px 410px 0 rgba(214,173,85,.35),
    1060px 240px 0 rgba(214,173,85,.45),
    1290px 360px 0 rgba(214,173,85,.35),
    1500px 170px 0 rgba(214,173,85,.45);
  animation:particlesFloat 12s linear infinite;
}
.gold-particles::after{
  animation-duration:18s;
  animation-direction:reverse;
  opacity:.55;
}
@keyframes particlesFloat{
  from{transform:translateY(0)}
  to{transform:translateY(-180px)}
}

.hero-animated-bg{
  transform-origin:center;
  animation:heroCinematic 12s ease-in-out infinite alternate;
}
@keyframes heroCinematic{
  0%{transform:scale(1) translateX(0)}
  50%{transform:scale(1.06) translateX(-18px)}
  100%{transform:scale(1.09) translateX(18px)}
}

.split-title .word-line{
  display:inline-block;
  opacity:0;
  transform:translateY(45px) rotateX(22deg);
  animation:titleReveal .95s cubic-bezier(.2,.9,.2,1) forwards;
}
.split-title .gold-line{
  animation-delay:.25s;
  background:linear-gradient(90deg,var(--gold),var(--gold2),var(--gold));
  -webkit-background-clip:text;
  color:transparent;
  background-size:220%;
  animation-name:titleReveal,goldTextMove;
  animation-duration:.95s,4s;
  animation-fill-mode:forwards,forwards;
  animation-iteration-count:1,infinite;
  animation-timing-function:cubic-bezier(.2,.9,.2,1),linear;
}
@keyframes titleReveal{
  to{opacity:1;transform:translateY(0) rotateX(0)}
}
@keyframes goldTextMove{
  from{background-position:0%}
  to{background-position:220%}
}

/* Stronger reveal variants */
.reveal{
  filter:blur(8px);
}
.reveal.show{
  filter:blur(0);
}
.text-slide-right{
  transform:translateX(60px);
}
.text-slide-right.show{
  transform:translateX(0);
}

/* Image animations */
.image-zoom img{
  transition:transform .85s cubic-bezier(.2,.8,.2,1), filter .85s ease, opacity .85s ease;
}
.image-zoom:hover img{
  transform:scale(1.13) rotate(.8deg);
  filter:contrast(1.08) brightness(1.08);
}

.image-sheen{
  position:relative;
  overflow:hidden;
}
.image-sheen::after{
  content:"";
  position:absolute;
  top:-25%;
  right:-120%;
  width:45%;
  height:150%;
  transform:rotate(22deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.24),transparent);
  animation:sheenMove 4.2s ease-in-out infinite;
}
@keyframes sheenMove{
  0%,35%{right:-120%}
  70%,100%{right:145%}
}

.parallax-card{
  transform-style:preserve-3d;
}
.parallax-card img{
  transition:transform .35s ease;
}

/* Tilt cards */
.tilt-card{
  transform-style:preserve-3d;
  will-change:transform;
}
.tilt-card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(245,215,139,.18), transparent 34%);
  opacity:0;
  transition:opacity .25s ease;
}
.tilt-card:hover::after{
  opacity:1;
}

/* Gold pulse for featured package */
.pulse-gold{
  animation:pulseGold 2.8s ease-in-out infinite;
}
@keyframes pulseGold{
  0%,100%{box-shadow:0 0 80px rgba(214,173,85,.12)}
  50%{box-shadow:0 0 120px rgba(214,173,85,.28)}
}

/* Animated gallery */
.animated-gallery img{
  animation:galleryFloat 6s ease-in-out infinite;
}
.animated-gallery img:nth-child(2){animation-delay:.4s}
.animated-gallery img:nth-child(3){animation-delay:.8s}
.animated-gallery img:nth-child(4){animation-delay:1.2s}
@keyframes galleryFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}
.animated-gallery img:hover{
  animation-play-state:paused;
  transform:scale(1.06) translateY(-8px);
}

/* Form animation */
.form-rise.show input,
.form-rise.show select,
.form-rise.show textarea,
.form-rise.show button,
.form-rise.show .time-slots{
  animation:fieldRise .65s ease both;
}
.form-rise.show input:nth-child(1){animation-delay:.05s}
.form-rise.show input:nth-child(2){animation-delay:.1s}
.form-rise.show input:nth-child(3){animation-delay:.15s}
.form-rise.show select{animation-delay:.2s}
.form-rise.show input:nth-child(5){animation-delay:.25s}
.form-rise.show .time-slots{animation-delay:.3s}
.form-rise.show textarea{animation-delay:.35s}
.form-rise.show button{animation-delay:.4s}
@keyframes fieldRise{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}

/* Glowing borders */
.glow-border{
  position:relative;
  overflow:hidden;
}
.glow-border::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1px;
  background:linear-gradient(120deg,transparent,var(--gold),transparent,var(--gold2),transparent);
  background-size:260%;
  animation:borderGlow 5s linear infinite;
  pointer-events:none;
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}
@keyframes borderGlow{
  to{background-position:260%}
}

/* Floating WhatsApp */
.floating-whatsapp{
  position:fixed;
  left:22px;
  bottom:22px;
  z-index:9999;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#050505;
  font-weight:900;
  padding:14px 20px;
  border:1px solid rgba(255,255,255,.25);
  box-shadow:0 18px 44px rgba(214,173,85,.22);
  animation:whatsappPulse 2.4s ease-in-out infinite;
}
@keyframes whatsappPulse{
  0%,100%{transform:translateY(0);box-shadow:0 18px 44px rgba(214,173,85,.22)}
  50%{transform:translateY(-6px);box-shadow:0 24px 70px rgba(214,173,85,.35)}
}

/* Service icon micro animation */
.round-icon{
  animation:iconBreath 3s ease-in-out infinite;
}
@keyframes iconBreath{
  0%,100%{box-shadow:0 0 0 rgba(214,173,85,0)}
  50%{box-shadow:0 0 28px rgba(214,173,85,.32)}
}

/* Mobile optimization */
@media(max-width:640px){
  .gold-particles{display:none}
  .animated-gallery img{animation:none}
}


/* Five Packages Update */
.five-packages{
  grid-template-columns:repeat(5,1fr);
  align-items:stretch;
}

.five-packages .price-card{
  position:relative;
  min-height:520px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
}

.five-packages .price-card small{
  display:inline-flex;
  width:max-content;
  padding:6px 12px;
  border:1px solid var(--line);
  color:var(--gold2);
  font-size:11px;
  letter-spacing:1px;
  margin-bottom:16px;
}

.five-packages .price-card h3{
  min-height:68px;
}

.five-packages .price-card::before{
  content:"";
  position:absolute;
  top:-40%;
  right:-80%;
  width:80%;
  height:180%;
  background:linear-gradient(90deg,transparent,rgba(245,215,139,.13),transparent);
  transform:rotate(24deg);
  transition:.7s;
}

.five-packages .price-card:hover::before{
  right:130%;
}

.five-packages .signature{
  background:
    radial-gradient(circle at top, rgba(214,173,85,.23), transparent 34%),
    linear-gradient(180deg,#1b1508,#080808);
  border-color:var(--gold);
  box-shadow:0 0 110px rgba(214,173,85,.18);
}

.five-packages .signature::after{
  content:"VIP";
  position:absolute;
  top:18px;
  left:18px;
  width:46px;
  height:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#050505;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  font-weight:900;
  box-shadow:0 0 30px rgba(214,173,85,.35);
}

.five-packages .signature .price{
  color:#fff;
}

@media(max-width:1200px){
  .five-packages{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:760px){
  .five-packages{
    grid-template-columns:1fr;
  }

  .five-packages .price-card{
    min-height:auto;
  }
}


/* Bilingual / English Support */
.lang-switch{
  color:var(--gold2) !important;
  border:1px solid var(--line);
  padding:7px 12px;
  min-width:44px;
  text-align:center;
}

.english-page{
  direction:ltr;
}

.english-page .top-inner,
.english-page .nav-inner,
.english-page .hero-content,
.english-page .about-grid,
.english-page .booking-grid,
.english-page .contact-box,
.english-page .footer-inner{
  direction:ltr;
}

.english-page .hero-shade{
  background:
    radial-gradient(circle at 70% 45%, rgba(214,173,85,.08), transparent 36%),
    linear-gradient(90deg, #030303 0%, rgba(3,3,3,.88) 38%, rgba(3,3,3,.35) 100%);
}

.english-page .hero-bg{
  background-position:center right;
}

.english-page .hero-dots{
  left:auto;
  right:38px;
}

.english-page .trust-item{
  border-left:0;
  border-right:1px solid rgba(214,173,85,.14);
}

.english-page .price-card li::before{
  margin-left:0;
  margin-right:9px;
}

.english-page .floating-whatsapp{
  left:auto;
  right:22px;
}

.english-page .nav-links a::after{
  right:auto;
  left:0;
}

@media(max-width:1050px){
  .english-page .nav-links{
    align-items:flex-start;
  }
}


.site-logo{
  width:220px;
  height:auto;
  display:block;
}

@media (max-width:800px){
  .site-logo{
    width:170px;
  }
}


/* Four Packages Layout Update */
.four-packages{
  grid-template-columns:repeat(4,1fr);
  align-items:stretch;
}

.four-packages .price-card{
  min-height:560px;
}

@media(max-width:1200px){
  .four-packages{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:760px){
  .four-packages{
    grid-template-columns:1fr;
  }

  .four-packages .price-card{
    min-height:auto;
  }
}


/* Contact Location Professional Card */
.contact-location-box{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:stretch;
  background:linear-gradient(135deg,#151515,#070707);
  border:1px solid var(--line);
  padding:34px;
}

.contact-details span{
  color:var(--gold2);
  font-weight:900;
}

.contact-details h3{
  font-size:34px;
  margin:8px 0 10px;
}

.contact-details p{
  color:var(--muted);
}

.contact-info-list{
  margin:22px 0;
}

.contact-info-list p{
  padding:8px 0;
  border-bottom:1px solid rgba(214,173,85,.16);
}

.contact-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.map-card{
  position:relative;
  overflow:hidden;
  min-height:300px;
  border:1px solid rgba(214,173,85,.45);
  background:
    linear-gradient(135deg,rgba(214,173,85,.18),rgba(255,255,255,.03)),
    repeating-linear-gradient(45deg,rgba(255,255,255,.035) 0,rgba(255,255,255,.035) 1px,transparent 1px,transparent 16px),
    #0d0d0d;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:30px;
  transition:.3s;
}

.map-card:hover{
  transform:translateY(-5px);
  border-color:var(--gold);
}

.map-pin{
  width:74px;
  height:74px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#050505;
  font-size:34px;
  margin-bottom:18px;
  box-shadow:0 0 50px rgba(214,173,85,.22);
}

.map-card h4{
  font-size:30px;
  color:#fff;
}

.map-card p{
  color:var(--muted);
  margin:8px 0 16px;
}

.map-card span{
  color:var(--gold2);
  font-weight:900;
}

@media(max-width:900px){
  .contact-location-box{
    grid-template-columns:1fr;
  }
}


.footer-logo{
  display:flex;
  align-items:center;
}

.footer-logo .site-logo{
  width:180px;
  height:auto;
}


/* Custom Date Input Icon */
.date-input{
  position:relative;
  color-scheme:dark;
  background-image:
    linear-gradient(135deg, rgba(214,173,85,.16), rgba(255,255,255,.03));
  border-color:rgba(214,173,85,.45) !important;
}

.date-input::-webkit-calendar-picker-indicator{
  cursor:pointer;
  opacity:1;
  filter:invert(73%) sepia(48%) saturate(585%) hue-rotate(2deg) brightness(96%) contrast(92%);
}

.booking-form input[type="date"]{
  color-scheme:dark;
}

.english-page .date-input{
  direction:ltr;
}
