/* ================= RESET ================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
scroll-behavior:smooth;
}

body{
background:#0a0a0a;
overflow-x:hidden;
}

/* ================= NAVBAR ================= */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 7%;
z-index:9999;
transition:0.4s ease;
}

.navbar.scrolled{
background:rgba(10,10,10,0.92);
backdrop-filter:blur(14px);
box-shadow:0 10px 35px rgba(0,0,0,0.35);
border-bottom:1px solid rgba(212,175,55,0.10);
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.logo{
font-size:26px;
font-weight:700;
letter-spacing:1px;
text-decoration:none;
color:#f8f8f8;
}

.logo::first-letter{
color:#d4af37;
}

/* ================= NAV LINKS ================= */

.nav-links{
display:flex;
align-items:center;
gap:34px;
}

.nav-links a{
text-decoration:none;
color:#f8f8f8;
font-size:15px;
position:relative;
transition:0.3s ease;
}

.nav-links a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:linear-gradient(90deg,#3aa889,#d4af37);
transition:0.35s;
}

.nav-links a:hover{
color:#d4af37;
}

.nav-links a:hover::after{
width:100%;
}

.mobile-cta{
display:none;
}

/* ================= MENU BTN ================= */

.menu-btn{
display:none;
width:46px;
height:46px;
border-radius:12px;
background:rgba(255,255,255,0.06);
border:1px solid rgba(255,255,255,0.08);
justify-content:center;
align-items:center;
flex-direction:column;
gap:5px;
cursor:pointer;
transition:0.3s;
}

.menu-btn span{
width:22px;
height:2px;
background:#f8f8f8;
border-radius:50px;
transition:0.35s;
}

.menu-btn.active span:nth-child(1){
transform:translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2){
opacity:0;
}

.menu-btn.active span:nth-child(3){
transform:translateY(-7px) rotate(-45deg);
}

/* ================= HERO ================= */

.hero{
min-height:100vh;
background:url("assests/ring2.jpeg") center/cover no-repeat;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:120px 20px 60px;
position:relative;
overflow:hidden;
}

.overlay{
position:absolute;
inset:0;
background:linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.82));
}

.hero-content{
position:relative;
z-index:2;
max-width:900px;
animation:heroUp 1.2s ease;
}

.mini-text{
font-size:13px;
letter-spacing:4px;
text-transform:uppercase;
color:#3aa889;
margin-bottom:18px;
}

.hero-content h1{
font-size:68px;
line-height:1.12;
color:#f8f8f8;
font-weight:700;
margin-bottom:22px;
}

.hero-para{
max-width:760px;
margin:auto;
font-size:18px;
line-height:1.8;
color:#a8a8a8;
margin-bottom:35px;
}

.hero-btns{
display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;
margin-bottom:30px;
}

.btn-main,
.btn-second{
padding:15px 30px;
border-radius:40px;
text-decoration:none;
font-size:15px;
font-weight:600;
transition:0.35s ease;
}

.btn-main{
background:linear-gradient(90deg,#3aa889,#d4af37);
color:#0a0a0a;
}

.btn-main:hover{
transform:translateY(-4px);
box-shadow:0 15px 30px rgba(212,175,55,0.20);
}

.btn-second{
border:1px solid rgba(255,255,255,0.22);
color:#f8f8f8;
background:rgba(255,255,255,0.02);
}

.btn-second:hover{
background:#f8f8f8;
color:#0a0a0a;
transform:translateY(-4px);
}

.hero-trust{
display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;
}

.hero-trust span{
padding:10px 16px;
border-radius:30px;
font-size:13px;
color:#a8a8a8;
border:1px solid rgba(255,255,255,0.08);
background:rgba(255,255,255,0.03);
}

/* ================= ANIMATION ================= */

@keyframes heroUp{
from{
opacity:0;
transform:translateY(45px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* ================= MOBILE ================= */

@media(max-width:900px){

.menu-btn{
display:flex;
}

.nav-links{
position:fixed;
top:78px;
right:-100%;
width:88%;
max-width:340px;
padding:28px;
border-radius:22px 0 0 22px;
background:rgba(10,10,10,0.96);
backdrop-filter:blur(18px);
box-shadow:-10px 10px 40px rgba(0,0,0,0.45);
display:flex;
flex-direction:column;
align-items:flex-start;
gap:22px;
transition:0.4s ease;
border-left:1px solid rgba(212,175,55,0.10);
}

.nav-links.active{
right:0;
}

.nav-links a{
width:100%;
font-size:16px;
padding-bottom:10px;
border-bottom:1px solid rgba(255,255,255,0.06);
}

.mobile-cta{
display:block;
text-align:center;
padding:14px 18px !important;
border:none !important;
border-radius:40px;
background:linear-gradient(90deg,#3aa889,#d4af37);
color:#0a0a0a !important;
font-weight:700;
}

.hero-content h1{
font-size:46px;
}

.hero-para{
font-size:15px;
line-height:1.7;
}

}

@media(max-width:500px){

.hero{
padding-top:110px;
}

.hero-content h1{
font-size:34px;
}

.btn-main,
.btn-second{
width:100%;
}

.hero-trust{
flex-direction:column;
}

.hero-trust span{
width:100%;
}

}



/* ================= ABOUT SECTION ================= */

.about{
  padding:120px 10%;
  background:#0a0a0a;
  color:#f8f8f8;
  position:relative;
  overflow:hidden;
}

/* CINEMATIC GLOW (EMERALD + GOLD MIX) */
.about-glow{
  position:absolute;
  width:520px;
  height:520px;
  background:radial-gradient(circle, #3aa889 0%, transparent 60%);
  filter:blur(160px);
  opacity:0.12;
  top:-180px;
  left:-180px;
}

.about-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  flex-wrap:wrap;
  position:relative;
  z-index:2;
}

/* IMAGE */
.about-media{
  flex:1;
  min-width:300px;
  display:flex;
  justify-content:center;
}

.image-frame{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.7);
  transition:0.5s;
  border:1px solid rgba(212,175,55,0.15);
}

.image-frame img{
  width:100%;
  max-width:460px;
  height:520px;
  object-fit:cover;
  transition:0.6s ease;
  filter:contrast(1.05) brightness(0.95);
}

.image-frame:hover img{
  transform:scale(1.05);
}

/* CONTENT */
.about-content{
  flex:1;
  min-width:300px;
}

/* TAG */
.section-tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#d4af37;
  margin-bottom:15px;
}

/* HEADING */
.about-content h2{
  font-size:42px;
  line-height:1.2;
  margin-bottom:18px;
  background:linear-gradient(90deg,#f8f8f8,#3aa889,#d4af37);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* TEXT */
.about-content p{
  font-size:16px;
  color:#a8a8a8;
  line-height:1.7;
  margin-bottom:30px;
  max-width:600px;
}

/* STATS */
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-bottom:30px;
}

.stat-box{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(212,175,55,0.08);
  padding:20px;
  border-radius:14px;
  text-align:center;
  transition:0.4s;
}

.stat-box:hover{
  transform:translateY(-6px);
  border-color:#3aa889;
}

.stat-box h3{
  font-size:28px;
  color:#3aa889;
  margin-bottom:5px;
}

.stat-box p{
  font-size:12px;
  color:#a8a8a8;
  letter-spacing:1px;
  text-transform:uppercase;
}

/* BUTTON */
.about-btn{
  display:inline-block;
  padding:12px 26px;
  border-radius:40px;
  background:linear-gradient(90deg,#3aa889,#d4af37);
  color:#0a0a0a;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.about-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(212,175,55,0.15);
}

/* MOBILE */
@media(max-width:768px){

  .about-container{
    flex-direction:column;
    text-align:center;
  }

  .about-content h2{
    font-size:30px;
  }

  .stats{
    grid-template-columns:1fr;
  }

  .image-frame img{
    height:auto;
  }
}


/* ================= SERVICES ================= */
.services{
  padding:140px 8%;
  background:#0a0a0a;
  position:relative;
  overflow:hidden;
  z-index:1;
}

/* glow */
.services-glow{
  position:absolute;
  top:-160px;
  right:-160px;
  width:520px;
  height:520px;
  background:#3aa889;
  filter:blur(200px);
  opacity:0.10;
}

/* ================= HEADER ================= */
.section-head{
  text-align:center;
  max-width:780px;
  margin:0 auto 90px;
  position:relative;
  z-index:2;
}

.section-tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#d4af37;
  margin-bottom:16px;
}

.section-title{
  font-size:48px;
  line-height:1.2;
  margin-bottom:16px;
  background:linear-gradient(90deg,#f8f8f8,#3aa889,#d4af37);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.section-subtitle{
  color:#a8a8a8;
  font-size:15px;
  line-height:1.8;
}

/* ================= GRID (FIXED OVERLAP ROOT FIX) ================= */
.services-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

  /* 🔥 IMPORTANT FIX */
  gap:60px 34px;  /* more vertical spacing = no overlap */

  position:relative;
  z-index:2;
  overflow:visible;
  align-items:stretch;
}

/* ================= CARD ================= */
.service-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(14px);
  border-radius:22px;

  padding:42px 32px;
  display:flex;
  flex-direction:column;
  gap:18px;

  position:relative;
  z-index:1;

  transition:0.35s ease;
  min-height:520px;

  will-change: transform;
  transform: translateZ(0);
}

/* 🔥 SAFE HOVER (NO OVERLAP) */
.service-card:hover{
  transform:translateY(-8px) scale(1.01);
  z-index:5; /* not too high */
  border-color:#3aa889;
  box-shadow:0 25px 55px rgba(0,0,0,0.5);
}

/* ================= TEXT ================= */
.package-top h3{
  font-size:24px;
  color:#f8f8f8;
  margin-bottom:8px;
}

.package-top p{
  font-size:14px;
  color:#a8a8a8;
  line-height:1.7;
}

/* ================= PRICE ================= */
.price-box{
  display:flex;
  gap:6px;
  align-items:flex-start;
  margin:10px 0;
}

.currency{
  font-size:22px;
  color:#d4af37;
  margin-top:6px;
}

.price{
  font-size:56px;
  font-weight:700;
  background:linear-gradient(90deg,#f8f8f8,#3aa889);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ================= LIST ================= */
.service-card ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:25px;
}

.service-card ul li{
  font-size:14px;
  color:#cfcfcf;
  padding-left:22px;
  position:relative;
}

.service-card ul li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#d4af37;
}

/* ================= BUTTON ================= */
.btn{
  margin-top:auto;
  display:block;
  text-align:center;

  padding:16px 20px;
  border-radius:50px;

  text-decoration:none;
  font-weight:600;

  color:#0a0a0a;
  background:linear-gradient(90deg,#3aa889,#d4af37);

  transition:0.3s ease;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(58,168,137,0.25);
}

/* ================= FEATURED ================= */
.featured{
  border:1px solid rgba(212,175,55,0.35);
  transform:scale(1.02); /* reduced (prevents overlap feel) */
  z-index:2;
}

.popular-badge{
  position:absolute;
  top:18px;
  right:18px;
  font-size:11px;
  padding:8px 12px;
  border-radius:30px;
  background:linear-gradient(90deg,#3aa889,#d4af37);
  color:#0a0a0a;
  font-weight:700;
}

/* ================= MOBILE FIX ================= */
@media(max-width:768px){

  .services{
    padding:100px 6%;
  }

  .section-title{
    font-size:34px;
  }

  .services-container{
    gap:30px; /* tighter but safe */
  }

  .service-card{
    min-height:auto;
    padding:30px 24px;
  }

  .service-card:hover{
    transform:none; /* 🔥 mobile safe */
  }

  .price{
    font-size:46px;
  }
}

.cinematic{
padding:120px 8%;
background:#0a0a0a;
color:#f8f8f8;
position:relative;
overflow:hidden;
}

/* ===== HEAD ===== */
.films-head{
text-align:center;
max-width:760px;
margin:auto;
margin-bottom:70px;
}

.section-tag{
font-size:12px;
letter-spacing:3px;
text-transform:uppercase;
color:#d4af37;
margin-bottom:12px;
display:inline-block;
}

.section-title{
font-size:46px;
margin-bottom:14px;
background:linear-gradient(90deg,#fff,#3aa889,#d4af37);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.section-subtitle{
font-size:15px;
line-height:1.7;
color:#a8a8a8;
}

/* ===== LAYOUT ===== */
.video-showcase{
display:grid;
grid-template-columns:1.4fr 0.9fr;
gap:50px;
align-items:center;
}

/* ===== VIDEO ===== */
.video-frame{
position:relative;
border-radius:22px;
overflow:hidden;
border:1px solid rgba(255,255,255,0.08);
background:#111;
box-shadow:0 30px 70px rgba(0,0,0,0.6);
transition:0.4s;
}

.video-frame:hover{
transform:translateY(-6px);
}

.video-frame video{
width:100%;
display:block;
}

/* cinematic overlay */
.video-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(to top, rgba(0,0,0,0.4), transparent);
pointer-events:none;
}

.video-badge{
position:absolute;
top:20px;
left:20px;
padding:8px 16px;
border-radius:30px;
font-size:11px;
letter-spacing:1px;
font-weight:600;
background:rgba(0,0,0,0.6);
border:1px solid rgba(255,255,255,0.08);
}

/* ===== INFO ===== */
.video-info{
display:flex;
flex-direction:column;
gap:25px;
}

/* card */
.info-card{
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
padding:30px;
border-radius:20px;
}

.info-card h3{
font-size:26px;
margin-bottom:12px;
}

.info-card p{
font-size:15px;
line-height:1.8;
color:#a8a8a8;
}

/* ===== STATS ===== */
.film-stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
}

.stat-box{
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
padding:20px;
border-radius:18px;
text-align:center;
transition:0.3s;
}

.stat-box:hover{
transform:translateY(-5px);
border-color:#3aa889;
}

.stat-box h4{
font-size:28px;
color:#3aa889;
}

.stat-box span{
font-size:11px;
letter-spacing:1px;
text-transform:uppercase;
color:#a8a8a8;
}

/* ===== BUTTON ===== */
.film-btn{
display:inline-block;
text-align:center;
padding:16px 22px;
border-radius:40px;
text-decoration:none;
font-weight:600;
color:#0a0a0a;
background:linear-gradient(90deg,#3aa889,#d4af37);
transition:0.3s;
margin-top:10px;
}

.film-btn:hover{
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(58,168,137,0.25);
}

/* ===== MOBILE ===== */
@media(max-width:950px){
.video-showcase{
grid-template-columns:1fr;
gap:40px;
}
}

@media(max-width:768px){

.cinematic{
padding:90px 6%;
}

.section-title{
font-size:34px;
}

.section-subtitle{
font-size:14px;
}

.film-stats{
grid-template-columns:1fr;
}

}

/* ===== GALLERY SECTION ===== */
.gallery{
padding:120px 8%;
background:#0a0a0a;
text-align:center;
position:relative;
overflow:hidden;
}

/* ===== HEAD ===== */
.gallery-head{
max-width:760px;
margin:auto;
margin-bottom:60px;
}

.section-tag{
font-size:12px;
letter-spacing:3px;
text-transform:uppercase;
color:#d4af37;
display:inline-block;
margin-bottom:12px;
font-weight:600;
}

.section-title{
font-size:46px;
margin-bottom:14px;
line-height:1.2;
background:linear-gradient(90deg,#ffffff,#3aa889,#d4af37);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.section-subtitle{
color:#a8a8a8;
font-size:15px;
line-height:1.7;
}

/* ===== FILTERS ===== */
.gallery-filters{
margin-bottom:55px;
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:12px;
}

.filter-btn{
padding:11px 20px;
border-radius:30px;
border:1px solid rgba(255,255,255,0.08);
background:rgba(255,255,255,0.03);
color:#a8a8a8;
cursor:pointer;
transition:0.3s ease;
font-size:13px;
}

.filter-btn:hover{
border-color:#3aa889;
color:#fff;
transform:translateY(-2px);
}

.filter-btn.active{
background:linear-gradient(90deg,#3aa889,#d4af37);
color:#111;
border:none;
}

/* ===== PERFECT GRID ===== */
.gallery-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

/* ===== ITEM ===== */
.gallery-item{
position:relative;
overflow:hidden;
border-radius:20px;
height:340px;
cursor:pointer;
background:#111;
}

/* ===== IMAGE ===== */
.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:0.6s ease;
}

/* ===== OVERLAY ===== */
.gallery-item .overlay{
position:absolute;
left:0;
bottom:0;
width:100%;
padding:22px;
background:linear-gradient(
to top,
rgba(0,0,0,0.85),
rgba(0,0,0,0.2),
transparent
);
opacity:0;
transition:0.4s ease;
}

.gallery-item .overlay span{
color:#fff;
font-size:14px;
letter-spacing:1px;
}

/* ===== HOVER ===== */
.gallery-item:hover img{
transform:scale(1.08);
}

.gallery-item:hover .overlay{
opacity:1;
}

/* ===== LIGHTBOX ===== */
.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.96);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
padding:20px;
}

.lightbox img{
max-width:90%;
max-height:90%;
border-radius:14px;
box-shadow:0 0 60px rgba(58,168,137,0.25);
}

.lightbox .close{
position:absolute;
top:20px;
right:30px;
font-size:42px;
color:#fff;
cursor:pointer;
transition:0.3s;
}

.lightbox .close:hover{
color:#d4af37;
transform:rotate(90deg);
}

/* ===== TABLET ===== */
@media(max-width:900px){

.gallery-container{
grid-template-columns:repeat(2,1fr);
}

}

/* ===== MOBILE ===== */
@media(max-width:768px){

.gallery{
padding:90px 6%;
}

.section-title{
font-size:34px;
}

.section-subtitle{
font-size:14px;
}

.gallery-container{
grid-template-columns:1fr;
gap:18px;
}

.gallery-item{
height:240px;
}

}



.process{
  padding:120px 10%;
  background:#0a0a0a;
  text-align:center;
  position:relative;
}

/* ================= TITLE ================= */
.section-title{
  font-size:42px;
  margin-bottom:12px;
  background:linear-gradient(90deg,#f8f8f8,#3aa889,#d4af37);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.section-subtitle{
  color:#a8a8a8;
  margin-bottom:60px;
  font-size:15px;
  line-height:1.6;
}

/* ================= CONTAINER ================= */
.process-container{
  display:flex;
  flex-wrap:wrap;
  gap:25px;
  justify-content:center;
}

/* ================= CARD ================= */
.process-step{
  width:260px;
  padding:30px 25px;
  border-radius:18px;

  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);

  text-align:center;

  /* animation base */
  opacity:0;
  transform:translateY(40px);
  transition:0.6s ease;

  position:relative;
}

/* reveal class */
.process-step.show{
  opacity:1;
  transform:translateY(0);
}

/* hover effect (safe, no overlap issue) */
.process-step:hover{
  transform:translateY(-8px);
  border-color:#3aa889;
}

/* ================= STEP NUMBER ================= */
.step-number{
  width:50px;
  height:50px;
  margin:0 auto 15px;
  border-radius:50%;

  background:linear-gradient(135deg,#3aa889,#d4af37);
  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:bold;
  color:#0a0a0a;
  font-size:16px;
}

/* ================= TEXT FIX (IMPORTANT) ================= */
.process-step h3{
  color:#f8f8f8;
  font-size:18px;
  margin-bottom:10px;
}

.process-step p{
  color:#a8a8a8;
  font-size:13px;
  line-height:1.6;
}

/* ================= MOBILE ================= */
@media(max-width:900px){
  .process-step{
    width:100%;
    max-width:320px;
  }
}


.testimonials{
  padding:120px 8%;
  background:#0a0a0a;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.testimonials-glow{
  position:absolute;
  width:450px;
  height:450px;
  background:#3aa889;
  filter:blur(180px);
  opacity:0.12;
  top:-120px;
  left:-120px;
}

.testimonials-head{
  margin-bottom:60px;
}

.section-title{
  font-size:42px;
  color:#f8f8f8;
}

.section-subtitle{
  color:#a8a8a8;
  font-size:15px;
}

.testimonial-container{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

/* CARD FIX */
.testimonial-card{
  width:320px;
  padding:30px;
  border-radius:18px;

  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);

  opacity:0.5;
  transform:scale(0.95);
  transition:0.4s ease;
}

/* ACTIVE */
.testimonial-card.active{
  opacity:1;
  transform:scale(1.05);
  border-color:#3aa889;
  box-shadow:0 20px 50px rgba(0,0,0,0.5);
}

.testimonial-card p{
  color:#d0d0d0;
  font-size:14px;
  line-height:1.7;
}

.testimonial-card h3{
  color:#d4af37;
  margin-top:15px;
}

/* MOBILE */
@media(max-width:900px){
  .testimonial-card{
    width:100%;
    max-width:380px;
    transform:scale(1);
  }

  .testimonial-card.active{
    transform:scale(1);
  }
}


/* ================= CONTACT ================= */
.contact{
  padding:120px 8%;
  background:#0a0a0a;
  position:relative;
  overflow:hidden;
  text-align:center;
  z-index:1;
}

/* glow (FIXED - no click blocking) */
.contact-glow{
  position:absolute;
  width:500px;
  height:500px;
  background:#3aa889;
  filter:blur(180px);
  opacity:0.10;
  bottom:-150px;
  right:-150px;

  z-index:0;
  pointer-events:none;
}

/* heading */
.contact-head{
  max-width:750px;
  margin:0 auto 60px;
  position:relative;
  z-index:2;
}

.section-title{
  font-size:42px;
  color:#f8f8f8;
  margin-bottom:10px;
}

.section-subtitle{
  color:#a8a8a8;
  font-size:15px;
  line-height:1.7;
}

/* layout */
.contact-container{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  position:relative;
  z-index:2;
}

/* FORM */
.contact-form{
  width:360px;
  padding:30px;
  border-radius:18px;

  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(14px);

  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact-form input,
.contact-form textarea{
  padding:12px 14px;
  border-radius:10px;
  border:none;
  outline:none;

  background:rgba(255,255,255,0.05);
  color:#fff;
  font-size:14px;
}

/* button */
.submit-btn{
  padding:14px;
  border:none;
  border-radius:40px;
  cursor:pointer;

  background:linear-gradient(90deg,#3aa889,#d4af37);
  color:#0a0a0a;
  font-weight:700;

  transition:0.3s;
}

.submit-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(58,168,137,0.2);
}

/* INFO BOX */
.contact-info{
  display:flex;
  flex-direction:column;
  gap:14px;
  justify-content:center;
  position:relative;
  z-index:2;
}

.info-box{
  padding:14px 22px;
  border-radius:12px;
  text-decoration:none;
  color:#f8f8f8;

  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);

  transition:0.3s;
  min-width:220px;

  position:relative;
  z-index:5;
}

.info-box:hover{
  transform:translateY(-6px);
  border-color:#3aa889;
}

/* whatsapp */
.whatsapp{
  background:linear-gradient(90deg,#25D366,#128C7E);
  color:#fff;
  border:none;
}

/* MOBILE */
@media(max-width:900px){
  .contact-form{
    width:100%;
    max-width:420px;
  }

  .contact-info{
    width:100%;
    align-items:center;
  }
}


.footer{
  background:#0a0a0a;
  color:#f8f8f8;
  padding:90px 10% 40px;
  position:relative;
  overflow:hidden;
}

/* glow */
.footer-glow{
  position:absolute;
  width:500px;
  height:500px;
  background:#3aa889;
  filter:blur(180px);
  opacity:0.12;
  top:-200px;
  right:-200px;
}

/* container */
.footer-container{
  display:flex;
  justify-content:space-between;
  gap:50px;
  flex-wrap:wrap;
  position:relative;
  z-index:2;
}

/* brand */
.footer-brand{
  max-width:320px;
}

.footer-brand h2{
  font-size:26px;
  background:linear-gradient(90deg,#f8f8f8,#3aa889,#d4af37);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.footer-brand p{
  color:#a8a8a8;
  margin-top:12px;
  font-size:14px;
  line-height:1.6;
}

/* box */
.footer-box{
  min-width:180px;
}

/* titles */
.footer-title{
  font-size:14px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#d4af37;
  margin-bottom:14px;
  cursor:pointer;
}

/* links */
.links-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  overflow:hidden;
  transition:0.4s ease;
}

.links-list a,
.social-links a{
  color:#a8a8a8;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
  position:relative;
}

.links-list a:hover,
.social-links a:hover{
  color:#3aa889;
  transform:translateX(5px);
}

/* social */
.social-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* divider */
.footer-divider{
  height:1px;
  background:linear-gradient(90deg,transparent,#3aa889,#d4af37,transparent);
  margin:50px 0 25px;
  opacity:0.6;
}

/* bottom */
.footer-bottom{
  text-align:center;
}

.back-btn{
  padding:12px 24px;
  border:none;
  border-radius:30px;
  cursor:pointer;
  background:linear-gradient(90deg,#3aa889,#d4af37);
  color:#0a0a0a;
  font-weight:600;
  margin-bottom:15px;
  transition:0.3s;
}

.back-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 30px rgba(58,168,137,0.2);
}

.footer-bottom p{
  font-size:13px;
  color:#777;
}

/* MOBILE */
@media(max-width:768px){
  .footer-container{
    flex-direction:column;
    text-align:center;
  }

  .footer-box{
    width:100%;
  }
}