* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #0a0a0a;
  color: #fff;
}

/* ==================== HEADER ==================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #c00;
  padding: 15px 0;
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #ff3366;
  text-decoration: none;
}

/* Menu Links */
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff3366;
}

/* Right Side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Buttons */
.cta-btn {
  background: #ff3366;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.cta-btn:hover {
  background: #ff6699;
  transform: scale(1.05);
}

.post-ad-btn {
  background: transparent;
  color: #ff3366;
  border: 2px solid #ff3366;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.post-ad-btn:hover {
  background: #ff3366;
  color: white;
}

/* Hamburger */
.hamburger {
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  display: none;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: #0a0a0a;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 60px;
    gap: 30px;
    transition: all 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li a {
    font-size: 1.4rem;
  }

  .hamburger {
    display: block;
  }
}
/* HERO MAIN */
.hero{
  position:relative;
  width:100%;
  height:90vh;
  overflow:hidden;
}

/* IMAGE FULL FIT */
.hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* DARK OVERLAY */
.hero::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
}

/* TEXT CENTER */
.hero-overlay{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
  width:90%;
  z-index:2;
}

/* HEADING */
.hero-overlay h1{
  font-size:32px;
  margin-bottom:10px;
}

/* SUBTEXT */
.hero-overlay p{
  font-size:16px;
  margin-bottom:20px;
  opacity:0.9;
}

/* BUTTONS */
.hero-btns{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.btn{
  padding:12px 22px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
}

/* PRIMARY BUTTON */
.primary{
  background:linear-gradient(45deg,#ffcc00,#ff9900);
  color:#000;
}

/* SECONDARY BUTTON */
.secondary{
  background:rgba(255,255,255,0.2);
  color:#fff;
  border:1px solid #fff;
}

/* MOBILE FIX */
@media(max-width:768px){
  .hero{
    height:70vh;
  }

  .hero-overlay h1{
    font-size:24px;
  }

  .hero-overlay p{
    font-size:14px;
  }
}
body{
  background:#0a0a0a;
  color:#fff;
  font-family:sans-serif;
}

.hot-section{
  padding:70px 20px;
  text-align:center;
}

.hot-section h2{
  font-size:34px;
  font-weight:700;
  background:linear-gradient(90deg,#ffcc00,#ff0080);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.subtitle{
  color:#aaa;
  margin-bottom:50px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
  max-width:1100px;
  margin:auto;
}

.card{
  background:linear-gradient(145deg,#111,#1a1a1a);
  border-radius:15px;
  padding:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.8);
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

.card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 15px 40px rgba(255,0,128,0.3);
}

.card-img{
  position:relative;
  overflow:hidden;
  border-radius:12px;
}

.card-img img{
  width:100%;
  height:180px;
  object-fit:cover;
  transition:0.5s;
}

.card:hover img{
  transform:scale(1.1);
}

.card-img span{
  position:absolute;
  bottom:10px;
  left:10px;
  background:linear-gradient(90deg,#ff0080,#ffcc00);
  padding:6px 12px;
  font-weight:600;
  border-radius:8px;
  font-size:14px;
}

.card p{
  color:#bbb;
  font-size:14px;
  margin:15px 0;
}

.cities a{
  display:block;
  color:#ffcc00;
  text-decoration:none;
  margin:6px 0;
  transition:0.3s;
}

.cities a:hover{
  color:#ff0080;
  transform:translateX(5px);
}

/* ðŸ”¥ ANIMATION */
.fade-up{
  opacity:0;
  transform:translateY(40px);
  transition:all 0.8s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}
.category-section{
  padding:80px 20px;
  background:#0a0a0a;
  text-align:center;
}

.category-box{
  margin-bottom:50px;
  padding:30px 20px;
  background:linear-gradient(145deg,#111,#1a1a1a);
  border-radius:16px;
  box-shadow:0 10px 40px rgba(0,0,0,0.7);
  transition:0.4s;
}

.category-box:hover{
  box-shadow:0 15px 50px rgba(255,0,128,0.2);
}

.category-box h3{
  font-size:22px;
  margin-bottom:20px;
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
}

.category-box h3 span{
  font-size:20px;
}

.pill-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.pill-container a{
  text-decoration:none;
  padding:10px 18px;
  border-radius:30px;
  border:1px solid #ff0080;
  color:#ff0080;
  font-size:14px;
  transition:0.3s;
  position:relative;
  overflow:hidden;
}

/* HOVER EFFECT */
.pill-container a:hover{
  color:#000;
  background:linear-gradient(90deg,#ff0080,#ffcc00);
  box-shadow:0 0 15px rgba(255,0,128,0.6);
  transform:translateY(-2px);
}

/* ALL BUTTON SPECIAL */
.pill-container .all{
  border-color:#ffcc00;
  color:#ffcc00;
}

.pill-container .all:hover{
  background:linear-gradient(90deg,#ffcc00,#ff0080);
  color:#000;
}
.pro-footer{
  background:#0a0a0a;
  color:#fff;
}

/* CTA TOP */
.footer-cta{
  text-align:center;
  padding:40px 20px;
  background:linear-gradient(90deg,#ff0080,#ffcc00);
  color:#000;
}

.cta-buttons a{
  margin:10px;
  padding:12px 25px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

.call-btn{
  background:#000;
  color:#fff;
}

.wa-btn{
  background:#25D366;
  color:#000;
}

/* MAIN FOOTER */
.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  padding:50px 20px;
  max-width:1100px;
  margin:auto;
}

.footer-col h3{
  color:#ffcc00;
  margin-bottom:15px;
}

.footer-col a{
  display:block;
  color:#aaa;
  margin:6px 0;
  text-decoration:none;
}

.footer-col a:hover{
  color:#ff0080;
}

/* LOGO */
.logo{
  font-size:26px;
  background:linear-gradient(90deg,#ff0080,#ffcc00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* TRUST */
.trust span{
  display:block;
  font-size:13px;
  color:#bbb;
  margin-top:5px;
}

/* INPUT */
input{
  width:100%;
  padding:10px;
  margin:10px 0;
  border:none;
  border-radius:6px;
}

.subscribe-btn{
  width:100%;
  padding:10px;
  background:#ff0080;
  color:#fff;
  border:none;
  border-radius:6px;
}

/* SOCIAL */
.socials a{
  display:inline-block;
  margin:10px 5px;
  padding:8px;
  background:#111;
  border-radius:50%;
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  padding:15px;
  border-top:1px solid #222;
  color:#777;
}

/* 🔥 STICKY CTA */
.sticky-cta{
  position:fixed;
  bottom:0;
  width:100%;
  display:flex;
}

.sticky-cta a{
  flex:1;
  text-align:center;
  padding:15px;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
}

.sticky-cta a:first-child{
  background:#ff0080;
}

.sticky-cta a:last-child{
  background:#25D366;
}
.profiles{
  padding:70px 20px;
  background:#0a0a0a;
  text-align:center;
}

.profiles h2{
  color:#fff;
  margin-bottom:40px;
  font-size:30px;
}

.profile-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  max-width:1100px;
  margin:auto;
}

.profile-card{
  position:relative;
  overflow:hidden;
  border-radius:15px;
  cursor:pointer;
}

.profile-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  transition:0.5s;
}

.profile-card:hover img{
  transform:scale(1.1);
}

/* OVERLAY */
.overlay{
  position:absolute;
  bottom:0;
  width:100%;
  padding:20px;
  background:linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color:#fff;
  text-align:left;
}

.overlay h3{
  margin:0;
  font-size:20px;
}

.overlay p{
  font-size:14px;
  color:#ccc;
  margin-bottom:10px;
}

/* BUTTONS */
.btns{
  display:flex;
  gap:10px;
}

.btns a{
  padding:8px 12px;
  border-radius:6px;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
}

.call{
  background:#ff0080;
  color:#fff;
}

.whatsapp{
  background:#25D366;
  color:#000;
}

.btns a:hover{
  opacity:0.8;
}
body{
  background:#0a0a0a;
  color:#fff;
  font-family:'Poppins',sans-serif;
}

.brand-section{
  padding:80px 20px;
}

.container{
  max-width:1000px;
  margin:auto;
}

/* HEADINGS */
h1{
  font-size:34px;
  text-align:center;
  margin-bottom:20px;
  background:linear-gradient(90deg,#ff0080,#ffcc00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

h2{
  margin-bottom:15px;
  color:#ffcc00;
}

/* INTRO */
.intro{
  text-align:center;
  color:#bbb;
  margin-bottom:40px;
  line-height:1.6;
}

/* BOX */
.brand-box{
  background:linear-gradient(145deg,#111,#1a1a1a);
  padding:25px;
  border-radius:15px;
  margin-bottom:25px;
  box-shadow:0 10px 30px rgba(0,0,0,0.6);
}

/* LOCATION LINKS */
.locations{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.locations a{
  padding:8px 15px;
  border-radius:20px;
  border:1px solid #ff0080;
  color:#ff0080;
  text-decoration:none;
  transition:0.3s;
}

.locations a:hover{
  background:linear-gradient(90deg,#ff0080,#ffcc00);
  color:#000;
}

/* SERVICES */
ul{
  padding-left:20px;
}

ul li{
  margin:8px 0;
  color:#ccc;
}

/* CTA */
.cta-box{
  text-align:center;
  margin-top:40px;
}

.cta-btn{
  display:inline-block;
  padding:12px 25px;
  background:linear-gradient(45deg,#ff0080,#ffcc00);
  color:#000;
  text-decoration:none;
  border-radius:30px;
  margin-top:15px;
  font-weight:600;
}

.cta-btn:hover{
  transform:scale(1.05);
}