/* =====================================
   GLOBAL VARIABLES
===================================== */

:root{
 --section-bg:
    linear-gradient(
        135deg,
        #070707 0%,
        #12060b 35%,
        #22080f 65%,
        #090909 100%
    );
--bg:#090909;
--bg-secondary:#130109;

--primary:#D4AF37;
--secondary:#9b002f;

--white:#fff;
--text:#d9d9d9;
--muted:#9d9d9d;

--glass:rgba(255,255,255,.05);
--glass-border:rgba(255,255,255,.08);

--gold-gradient:linear-gradient(90deg,#fff,#D4AF37);

--primary-gradient:linear-gradient(135deg,#b30036,#870028);

--shadow:0 20px 60px rgba(0,0,0,.45);
--glow:0 0 25px rgba(212,175,55,.25);

--radius-sm:12px;
--radius-md:18px;
--radius-lg:24px;
--radius-xl:40px;

--transition:.35s ease;

--container:1280px;

}
.featured-models,
.section-models,
.ultra-section,
.premium-categories,
.about-section{

    background:var(--section-bg);

}
/* Reset CSS */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
html,body {
  font-family: 'Poppins', sans-serif;
  background: #0B0B0B;
   overflow-x: hidden;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;

  background: linear-gradient(135deg, rgba(10,10,10,0.95), rgba(25,25,25,0.85));
  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* ===== LOGO ===== */
.brand-logo a {
  font-size: 28px;
  font-family: 'Cinzel', serif;
  text-decoration: none;
  background: linear-gradient(45deg, #ffffff, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Shine Effect */
.brand-logo a::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
}

.brand-logo a:hover::after {
  animation: shine 1s;
}

@keyframes shine {
  100% { left: 125%; }
}

/* ===== NAVIGATION ===== */
.nav-primary {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-item {
  list-style: none;
  position: relative;
  width: auto;
}

.nav-primary__link {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  transition: 0.3s;
}

.nav-primary__link:hover {
  color: #D4AF37;
}

/* ===== DROPDOWN DESKTOP ===== */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  padding: 10px 0;
  display: none;
  min-width: 180px;
  z-index: 999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-menu a:hover {
  background: rgba(212,175,55,0.1);
  color: #D4AF37;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn--accent {
  background: #800020;
  color: #fff;
  box-shadow: 0 0 10px rgba(128,0,32,0.6);
}

.btn--primary {
  background: linear-gradient(45deg, #D4AF37, #FFD700);
  color: #000;

  box-shadow: 0 0 25px rgba(212,175,55,0.4);
  border-radius: 40px;

  font-weight: 600;
}

.btn:hover {
  transform: translateY(-2px);
}

.header-actions {
  display: flex;
  gap: 10px;
}
.header-actions {
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.header-connect {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 20px;

    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.02);

    color: #f5e6c8;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.3s ease;
}

.header-connect i {
    font-size: 17px;
    color: #d4af37;
}

.header-connect:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #111;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.20);
}

.header-connect:hover i {
    color: #111;
}
/* ===== MOBILE MENU BUTTON ===== */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #D4AF37;
  cursor: pointer;
}

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

  .menu-toggle {
    display: block;
  }

  .nav-primary {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0B0B0B;
    flex-direction: column;
    display: none;
    padding: 20px;
    align-items: flex-start; /* FIXED */
  }

  .nav-primary.active {
    display: flex;
  }

 .header-actions,
.btn-icon,
.btn-icon--call,
.btn-icon--whatsapp{
    display:none !important;
}

  .nav-item {
    width: 100%;
  }

  .nav-primary__link {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    text-align: left;
  }

  /* MOBILE DROPDOWN PREMIUM */
  .dropdown-menu {
    position: static;
    display: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 10px;
    margin-top: 8px;
    margin-bottom: 10px;
    padding: 10px 15px;
  }

  .dropdown-menu a {
    padding: 8px 0;
    font-size: 14px;
    color: #bbb;
  }

  .nav-item.active .dropdown-menu {
    display: block;
  }

}

/* ACTIVE LINK */
.nav-item.active > .nav-primary__link {
  color: #D4AF37;
}

/* ARROW */
.arrow {
  float: right;
  color: #D4AF37;
  transition: 0.3s;
}

.nav-item.active .arrow {
  transform: rotate(45deg);
}

/* ===== HEADER BUTTONS (DESKTOP) ===== */
.header-actions {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

/* Call Button */
.btn--accent {
  background: #800020;
  color: #fff;
  box-shadow: 0 0 10px rgba(128,0,32,0.6);
}

/* WhatsApp Button */
.btn--primary {
  background: linear-gradient(45deg, #D4AF37, #FFD700);
  color: #000;
  box-shadow: 0 0 12px rgba(212,175,55,0.5);
}

.btn:hover {
  transform: translateY(-2px);
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;

  z-index: 999;
}

/* FLEX */
.mobile-cta-bar {
  display: flex;
}

/* CTA BUTTON BASE */
.mobile-cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
 padding: 14px 10px; 
  transition: 0.3s;
}

/* ICON STYLE */
.mobile-cta i {
  font-size: 16px;
}

/* CALL BUTTON */
.mobile-cta--call {
  background: linear-gradient(135deg, #7a0018, #a0002a);
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.1);
}

/* WHATSAPP BUTTON */
.mobile-cta--whatsapp {
  background: linear-gradient(45deg, #D4AF37, #FFD700);
  color: #111;
}

/* HOVER EFFECT */
.mobile-cta:hover {
  opacity: 0.9;
}

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

  .mobile-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }
}

@media (min-width: 769px) {

  .mobile-cta-bar {
    display: none;
  }
}
/* HEADER ICON BUTTON */
.btn-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-decoration: none;

  transition: 0.3s;
}

/* CALL */
.btn-icon--call {
  background: linear-gradient(135deg,#7a0018,#a0002a);
  color: #fff;
}

/* WHATSAPP */
.btn-icon--whatsapp {
  background: linear-gradient(45deg,#D4AF37,#FFD700);
  color: #000;
}

/* ICON SIZE */
.btn-icon i {
  font-size: 16px;
}

/* HOVER */
.btn-icon:hover {
  transform: scale(1.08);
}


/* ===== intro SECTION ===== */
/* HERO SECTION */
.section-intro {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;

  background: url('../images/banner-destop.webp') center/cover no-repeat;
}

/* OVERLAY */
.intro-overlay {
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.75)
  );
}

/* CONTENT */
.intro-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* TITLE */
.intro-title {
  font-family: 'Cinzel', serif;
  font-size: 44px;
  line-height: 1.3;

  background: linear-gradient(45deg, #fff, #D4AF37, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 18px;
}

/* SUBTITLE */
.intro-subtitle {
  font-size: 15px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* BUTTON GROUP */
.intro-actions {
  display: flex;
  gap: 15px;
}

/* BUTTON BASE */
.btn {
  padding: 12px 22px;
  border-radius: 40px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
}

/* PRIMARY */
.btn--primary {
  background: linear-gradient(45deg, #D4AF37, #FFD700);
  color: #000;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

/* OUTLINE */
.btn--outline {
  background: linear-gradient(135deg, #7a0018, #a0002a);
  color: #fff;
  border: none;

  border-radius: 40px;
  box-shadow: 0 0 15px rgba(160,0,42,0.4);
}

.btn--outline:hover {
  background: linear-gradient(135deg, #900020, #c00030);
}

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

.section-intro{

    min-height:92vh;

    background:url("../images/banner-mobile.webp") center center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

}
}
/*======================================
FEATURED MODELS
======================================*/

.featured-models{

    padding:100px 0;

     background:
    radial-gradient(circle at top left,
    rgba(120,15,35,.18),
    transparent 40%), 
	radial-gradient(circle at bottom right,
    rgba(212,175,55,.05),
    transparent 35%),
	

}

.featured-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;
	

}
.featured-heading .section-label{
    display:inline-block;
    margin-bottom:15px;
    color:var(--primary);
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;
}
.featured-heading h2{

    margin:18px 0;

    color:var(--white);
	 font-size:52px;
    font-family:'Playfair Display',serif;
    color:#fff;
    margin-bottom:20px;
    line-height:1.15;

}
.featured-heading h2 span{
    color:var(--primary);
}
.featured-heading p{

    color:var(--text);

    line-height:1.8;
	 max-width:780px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#c9c9c9;

}

/*======================================
PROFILE
======================================*/

.featured-profile{

    display:flex;

    align-items:center;

    gap:60px;

    margin-bottom:80px;

    padding:35px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.03),
        rgba(255,255,255,.015)
    );

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    overflow:hidden;

}

.featured-profile:last-child{

    margin-bottom:0;

}

.featured-profile:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.25);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

/* Alternate Layout */

.featured-profile.reverse{

    flex-direction:row-reverse;

}

/*======================================
IMAGE
======================================*/

.featured-image{

    width:320px;

    flex-shrink:0;

    position:relative;

    overflow:hidden;

    border-radius:22px;

}

.featured-image img{

    width:100%;

    height:400px;

    object-fit:cover;

    display:block;

    transition:.45s;

}

.featured-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        rgba(0,0,0,0),
        rgba(0,0,0,.12)
    );

}

.featured-profile:hover img{

    transform:scale(1.06);

}

/*======================================
CONTENT
======================================*/

.featured-content{

    flex:1;

}

.profile-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:30px;

    background:rgba(212,175,55,.08);

    border:1px solid rgba(212,175,55,.20);

    color:var(--primary);

    font-size:12px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:18px;

}

.featured-content h3{

    font-size:44px;

    color:var(--white);

    margin-bottom:12px;

    line-height:1.1;

    font-family:'Playfair Display',serif;

}

.profile-meta{

    color:var(--primary);

    font-size:16px;

    margin-bottom:20px;

    font-weight:500;

}

.featured-content p{

    color:var(--text);

    line-height:1.9;

    margin-bottom:30px;

    max-width:650px;

}

/*======================================
BUTTONS
======================================*/

.profile-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.profile-buttons a{

    text-decoration:none;
	 color:#fff;

}

/* WhatsApp Button */
.featured-whatsapp{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:180px;
    height:56px;

    padding:0 30px;

    border-radius:50px;

    background:linear-gradient(135deg,#d4af37,#e6c75b);

    color:#111;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}
.featured-outline{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:180px;
    height:56px;

    padding:0 30px;

    border:1px solid rgba(255,255,255,.45);

    border-radius:50px;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.featured-outline:hover{

    background:#d4af37;

    color:#111;

}
.featured-whatsapp:hover{

    transform:translateY(-3px);

    color:#111;

}

.btn-whatsapp:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(212,175,55,.30);
	color:#111;

}

/* Outline Button */

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border:1px solid rgba(212,175,55,.45);

    color:var(--primary);

    border-radius:50px;

    transition:.3s;

}

.btn-outline:hover{

    background:var(--gold-gradient);

    color:#000;

}

/*======================================
RESPONSIVE
======================================*/

/*======================================
TABLET
======================================*/

@media(max-width:991px){

.featured-profile,
.featured-profile.reverse{

    flex-direction:column;

    gap:30px;

    padding:30px;

    text-align:center;

}

.featured-image{

    width:320px;

    margin:auto;

}

.featured-content{

    width:100%;

}

.profile-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

}

}


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

@media(max-width:768px){

.featured-models{

    padding:70px 0;

}

.featured-heading{

    margin-bottom:50px;

}

.featured-heading h2{

    font-size:34px;

}

.featured-heading p{

    font-size:16px;

}

.featured-profile{

    padding:22px;

    border-radius:18px;

    margin-bottom:40px;

}

.featured-image{

    width:100%;

    max-width:300px;

}

.featured-image img{

    width:100%;

    height:360px;

    object-fit:cover;

}

.featured-content h3{

    font-size:34px;

}

.profile-meta{

    font-size:16px;

}

.featured-content p{

    font-size:15px;

    line-height:1.8;

}

/* Buttons */

.profile-buttons{

    display:flex;

    gap:12px;

}

.featured-whatsapp,
.featured-outline{

    width:calc(50% - 6px);

    min-width:auto;

    height:48px;

    padding:0 12px;

    font-size:15px;

}

}


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

@media(max-width:480px){

.featured-image{

    max-width:270px;

}

.featured-image img{

    height:330px;

}

.featured-content h3{

    font-size:30px;

}

.featured-whatsapp,
.featured-outline{

    font-size:14px;

    height:46px;

}

}
.intro-content{

    max-width:100%;
    padding:0 18px;
    text-align:center;

}

.intro-title{

    font-size:32px;
    line-height:1.2;
    margin-bottom:18px;

}

.intro-subtitle{

    font-size:17px;
    line-height:1.6;
    margin-bottom:22px;

}

.intro-actions{

    display:flex;
    flex-direction:row;      /* 👈 important */

    justify-content:center;

    align-items:center;

    gap:10px;

    flex-wrap:nowrap;

}

.intro-actions .btn{

    width:48%;

    max-width:160px;

    padding:14px 0;

    font-size:15px;

    border-radius:35px;

}

}

/* SECTION BASE */
.section-premium {
  padding: 80px 0;
  background:
    radial-gradient(circle at top left,
    rgba(120,15,35,.18),
    transparent 40%),

    radial-gradient(circle at bottom right,
    rgba(212,175,55,.05),
    transparent 35%),
}

/* GRID */
.premium-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  align-items: center;
}

/* CONTENT */
.section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #D4AF37;

    font-family: 'Poppins', sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    line-height: 1.4;

    position: relative;
}
.premium-title {
    font-family: 'Cinzel', serif;

    font-size: 34px;

    font-weight: 600;

    line-height: 1.3;

    margin: 0 0 22px;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #f5e6c8 45%,
        #D4AF37 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.premium-title span {
    display: block;
}

.premium-text {
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* IMAGE */
.premium-image {
  position: relative;
}

.premium-image img {
  width: 100%;
  border-radius: 15px;
  display: block;

  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* BADGE ON IMAGE */
.image-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;

  background: linear-gradient(45deg, #D4AF37, #FFD700);
  color: #000;

  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;

  box-shadow: 0 0 15px rgba(212,175,55,0.5);
}

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

  .premium-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

.section-label {
        font-size: 10px;
        letter-spacing: 2.5px;
        margin-bottom: 12px;
    }

    .premium-title {
        font-size: 29px;
        line-height: 1.3;
    }

  .premium-text {
    text-align: center;
  }

  .premium-content {
    text-align: center;
  }

  .premium-image {
    order: 0; /* image upar aayega mobile me */
  }

}

/*======================================
PORTFOLIO PREVIEW
======================================*/

.section-models{

        position:relative;

    padding:100px 0;

    background:
    radial-gradient(circle at top right,
    rgba(120,15,35,.18),
    transparent 40%),

    radial-gradient(circle at bottom left,
    rgba(212,175,55,.05),
    transparent 35%),

    linear-gradient(
    135deg,
    #070707 0%,
    #12060b 35%,
    #22080f 65%,
    #090909 100%
    );

    overflow:hidden;

}

.models-heading{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.models-heading h2{

    margin:18px 0;

    color:#fff;

}

.models-heading p{

    color:#bdbdbd;

    line-height:1.8;

}

/*======================================
GRID
======================================*/

.models-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*======================================
CARD
======================================*/

.model-card{

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.03),
        rgba(255,255,255,.015)
    );

    border:1px solid rgba(212,175,55,.12);

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

}

.model-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.35);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

/*======================================
IMAGE
======================================*/

.model-card__image{

    display:block;

    overflow:hidden;

}

.model-card__image img{

    width:100%;

    height:420px;

    object-fit:cover;

    display:block;

    transition:.45s;

}

.model-card:hover img{

    transform:scale(1.06);

}

/*======================================
CONTENT
======================================*/

.model-card__body{

    padding:24px;

    text-align:center;

}

.model-name{

    font-size:30px;

    font-family:'Playfair Display',serif;

    color:#fff;

    margin-bottom:8px;

}

.model-role{

    color:var(--primary);

    font-size:15px;

    margin-bottom:18px;

}

.model-link{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.model-link:hover{

    color:var(--primary);

}

/*======================================
BOTTOM BUTTON
======================================*/

.models-footer{

    text-align:center;

    margin-top:60px;

}

/*======================================
TABLET
======================================*/

@media(max-width:991px){

.models-grid{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.model-card__image img{

    height:380px;

}

}

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

@media(max-width:768px){

.section-models{

    padding:70px 0;

}

.models-heading{

    margin-bottom:45px;

}

.models-grid{

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.model-card{

    border-radius:18px;

}

.model-card__image img{

    height:260px;

}

.model-card__body{

    padding:18px 14px;

}

.model-name{

    font-size:22px;

}

.model-role{

    font-size:14px;

    margin-bottom:12px;

}

.model-link{

    font-size:14px;

}

}

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

@media(max-width:480px){

.models-grid{

    gap:15px;

}

.model-card__image img{

    height:220px;

}

.model-name{

    font-size:19px;

}

.model-role{

    font-size:13px;

}

}
/*======================================
PREMIUM CATEGORIES
======================================*/

.premium-categories{

    padding:100px 0;

   


    background:
    radial-gradient(circle at top left,
    rgba(120,15,35,.22),
    transparent 45%),

    radial-gradient(circle at bottom right,
    rgba(212,175,55,.06),
    transparent 40%),

    linear-gradient(
    135deg,
    #070707 0%,
    #12060b 35%,
    #22080f 65%,
    #090909 100%
    );

    overflow:hidden;
	

}
.premium-categories::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
    180deg,
    rgba(255,255,255,.015),
    transparent 35%
    );

    pointer-events:none;

}
.categories-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.categories-heading h2{

    margin:18px 0;

    color:var(--white);

}

.categories-heading p{

    color:var(--text);

    line-height:1.9;

}

/*======================================
GRID
======================================*/

.categories-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*======================================
CARD
======================================*/

.category-card{

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    min-height:280px;

    padding:35px;

    border-radius:22px;

     background:linear-gradient(
    145deg,
    rgba(255,255,255,.04),
    rgba(255,255,255,.015)
    );

    border:1px solid rgba(212,175,55,.10);

    text-decoration:none;

    transition:.35s;

    overflow:hidden;

}

.category-card:hover{

     transform:translateY(-8px);

    border-color:rgba(212,175,55,.30);

    box-shadow:

    0 25px 50px rgba(0,0,0,.40),

    0 0 35px rgba(120,15,35,.20);

}

/*======================================
NUMBER
======================================*/

.category-number{

    font-size:60px;

    font-family:'Playfair Display',serif;

    font-weight:700;

    line-height:1;

    color:rgba(212,175,55,.10);

    margin-bottom:30px;
	 text-shadow:0 0 15px rgba(212,175,55,.08);

}

/*======================================
TITLE
======================================*/

.category-card h3{

    color:#fff;

    font-size:30px;

    margin-bottom:15px;

    transition:.3s;

}

.category-card:hover h3{

    color:var(--primary);

}

/*======================================
DESCRIPTION
======================================*/

.category-card p{

    color:var(--text);

    line-height:1.8;

    margin-bottom:30px;

}

/*======================================
LINK
======================================*/

.category-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--primary);

    font-weight:600;

    transition:.3s;

}

.category-card:hover .category-link{

    transform:translateX(6px);

}

/*======================================
HOVER LINE
======================================*/

.category-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:3px;

    background:linear-gradient(90deg,#d4af37,#f5dc88);

    transition:.35s;

}

.category-card:hover::before{

    width:100%;

}

/*======================================
TABLET
======================================*/

@media(max-width:991px){

.categories-grid{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.category-card{

    min-height:250px;

}

}

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

@media(max-width:768px){

.premium-categories{

    padding:70px 0;

}

.categories-heading{

    margin-bottom:45px;

}

.categories-grid{

    grid-template-columns:1fr;

    gap:20px;

}

.category-card{

    min-height:auto;

    padding:28px;

}

.category-number{

    font-size:46px;

    margin-bottom:20px;

}

.category-card h3{

    font-size:24px;

}

.category-card p{

    font-size:15px;

    margin-bottom:20px;

}

}

@media(max-width:480px){

.category-card{

    padding:24px;

}

.category-number{

    font-size:40px;

}

.category-card h3{

    font-size:22px;

}

}
/* =====================================
   BOOKING PROCESS
===================================== */

.booking-process {

    position: relative;

    padding: 100px 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(122,15,30,.20),
            transparent 38%
        ),

        radial-gradient(
            circle at 85% 80%,
            rgba(212,175,55,.06),
            transparent 38%
        ),

        linear-gradient(
            135deg,
            #070707 0%,
            #12060b 45%,
            #21080f 70%,
            #080808 100%
        );

    overflow: hidden;
}


/* =====================================
   HEADING
===================================== */

.booking-heading {

    max-width: 760px;

    margin: 0 auto 70px;

    text-align: center;
}

.booking-heading .section-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.booking-heading h2 {

    margin-bottom: 20px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 48px;

    line-height: 1.15;
}

.booking-heading p {

    max-width: 700px;

    margin: auto;

    color: #c5c0bb;

    font-size: 16px;

    line-height: 1.85;
}


/* =====================================
   TIMELINE
===================================== */

.booking-timeline {

    position: relative;

    max-width: 900px;

    margin: auto;
}


/* GOLD LINE */

.booking-timeline::before {

    content: "";

    position: absolute;

    left: 42px;

    top: 35px;

    bottom: 35px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(212,175,55,.55),
            rgba(122,15,30,.65),
            transparent
        );
}


/* =====================================
   STEP
===================================== */

.booking-step {

    position: relative;

    display: grid;

    grid-template-columns: 85px 1fr;

    gap: 30px;

    margin-bottom: 25px;
}

.booking-step:last-child {

    margin-bottom: 0;
}


/* =====================================
   NUMBER
===================================== */

.booking-number {

    position: relative;

    z-index: 2;

    width: 85px;

    height: 85px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #8a1428,
            #450914
        );

    border: 1px solid rgba(212,175,55,.45);

    color: var(--gold);

    font-family: 'Playfair Display', serif;

    font-size: 24px;

    font-weight: 600;

    box-shadow:
        0 12px 35px rgba(0,0,0,.4),
        0 0 25px rgba(122,15,30,.18);
}


/* =====================================
   CONTENT CARD
===================================== */

.booking-content {

    padding: 30px 32px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    border: 1px solid rgba(212,175,55,.12);

    backdrop-filter: blur(12px);

    transition: .35s ease;
}

.booking-content:hover {

    transform: translateY(-4px);

    border-color: rgba(212,175,55,.30);

    box-shadow:
        0 20px 45px rgba(0,0,0,.35),
        0 0 30px rgba(122,15,30,.12);
}


/* =====================================
   LABEL
===================================== */

.booking-label {

    display: block;

    margin-bottom: 8px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;
}


/* =====================================
   TITLE
===================================== */

.booking-content h3 {

    margin-bottom: 12px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 27px;
}


/* =====================================
   TEXT
===================================== */

.booking-content p {

    max-width: 700px;

    color: #bdb7b1;

    font-size: 15px;

    line-height: 1.8;
}


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

@media(max-width:768px) {

    .booking-process {

        padding: 70px 0;

    }

    .booking-heading {

        margin-bottom: 45px;

    }

    .booking-heading h2 {

        font-size: 34px;

    }

    .booking-heading p {

        font-size: 15px;

    }

    .booking-timeline::before {

        left: 29px;

        top: 25px;

        bottom: 25px;

    }

    .booking-step {

        grid-template-columns: 60px 1fr;

        gap: 15px;

        margin-bottom: 18px;

    }

    .booking-number {

        width: 60px;

        height: 60px;

        font-size: 18px;

    }

    .booking-content {

        padding: 22px 20px;

        border-radius: 16px;

    }

    .booking-content h3 {

        font-size: 22px;

    }

    .booking-content p {

        font-size: 14px;

        line-height: 1.7;

    }

}


@media(max-width:480px) {

    .booking-heading h2 {

        font-size: 29px;

    }

    .booking-step {

        grid-template-columns: 50px 1fr;

        gap: 12px;

    }

    .booking-timeline::before {

        left: 24px;

    }

    .booking-number {

        width: 50px;

        height: 50px;

        font-size: 16px;

    }

    .booking-content {

        padding: 18px 16px;

    }

    .booking-content h3 {

        font-size: 20px;

    }

}

/* =====================================
   SERVICES & EXPERIENCES
===================================== */

.services-experience {

    padding: 90px 0;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(122,15,30,.16),
            transparent 38%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(212,175,55,.05),
            transparent 35%
        ),
        #080808;
}


/* =====================================
   MAIN ROUNDED CARD
===================================== */

.services-card {

    width: min(100%, 1000px);

    margin: 0 auto;

    padding: 65px 70px;

    border-radius: 32px;

    background:
        linear-gradient(
            145deg,
            rgba(122,15,30,.25),
            rgba(20,7,11,.94) 45%,
            rgba(7,7,7,.98)
        );

    border: 1px solid rgba(212,175,55,.18);

    box-shadow:
        0 30px 80px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.025);

    position: relative;

    overflow: hidden;
}


/* subtle glossy highlight */

.services-card::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -250px;
    right: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,.08),
            transparent 68%
        );

    pointer-events: none;
}


/* =====================================
   HEADING
===================================== */

.services-card .section-label {

    display: block;

    margin-bottom: 14px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.services-card h2 {

    max-width: 720px;

    margin-bottom: 22px;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: 44px;

    line-height: 1.2;
}


.services-intro {

    max-width: 820px;

    margin-bottom: 45px;

    color: #bdb6af;

    font-size: 15px;

    line-height: 1.9;
}


/* =====================================
   SERVICES LIST
===================================== */

.services-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* =====================================
   SERVICE ITEM
===================================== */

.service-item {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px;

    border-radius: 16px;

    background:
        rgba(255,255,255,.025);

    border: 1px solid rgba(212,175,55,.10);

    transition: .3s ease;
}


.service-item:hover {

    transform: translateY(-4px);

    background:
        rgba(122,15,30,.14);

    border-color:
        rgba(212,175,55,.28);

    box-shadow:
        0 15px 35px rgba(0,0,0,.25);
}


/* =====================================
   NUMBER
===================================== */

.service-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        145deg,
        #3a121b,
        #1d080e
    );

    border: 1px solid rgba(212,175,55,.55);

    color: #e5c76b;

    font-family: "Playfair Display", serif;

    font-size: 15px;
    font-weight: 600;

    text-shadow:
        0 0 10px rgba(212,175,55,.25);

    box-shadow:
        0 0 0 1px rgba(212,175,55,.05),
        0 8px 20px rgba(0,0,0,.25);
}


/* =====================================
   SERVICE CONTENT
===================================== */

.service-item h3 {

    margin-bottom: 7px;

    color: #f6f0e7;

    font-family: "Playfair Display", serif;

    font-size: 20px;
}


.service-item p {

    color: #a9a19a;

    font-size: 13px;

    line-height: 1.7;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {

    .services-card {

        padding: 55px 45px;

    }

    .services-card h2 {

        font-size: 38px;

    }

}


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

@media (max-width: 768px) {

    .services-experience {

        padding: 65px 0;

    }

    .services-card {

        width: calc(100% - 30px);

        padding: 40px 22px;

        border-radius: 24px;

    }

    .services-card h2 {

        font-size: 31px;

    }

    .services-intro {

        font-size: 14px;

        line-height: 1.8;

        margin-bottom: 32px;

    }

    .services-list {

        grid-template-columns: 1fr;

        gap: 14px;

    }

    .service-item {

        padding: 19px;

    }

}


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

@media (max-width: 480px) {

    .services-card {

        padding: 34px 17px;

    }

    .services-card h2 {

        font-size: 28px;

    }

    .service-item {

        gap: 14px;

    }

    .service-icon {

        flex-basis: 38px;

        width: 38px;
        height: 38px;

        font-size: 12px;

    }

    .service-item h3 {

        font-size: 18px;

    }

    .service-item p {

        font-size: 13px;

    }

}

/* =====================================================
   HYDERABAD EXPERIENCE SECTION
===================================================== */

.hyderabad-experience {
    position: relative;
    padding: 110px 20px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(90, 8, 30, 0.28),
            transparent 38%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(212, 175, 55, 0.06),
            transparent 35%
        ),
        #10090b;

    overflow: hidden;
}


.experience-container {
    width: min(1100px, 100%);
    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.experience-heading {
    max-width: 850px;
    margin: 0 auto 65px;
    text-align: center;
}


.experience-heading .section-label,
.why-heading .section-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #d4af37;

    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}


.experience-heading h2 {
    margin: 0;

    color: #f7f0e5;

    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;

    line-height: 1.2;
}


.experience-heading h2 span {
    display: block;

    margin-top: 5px;

    color: #d4af37;

    font-style: italic;
}


.experience-intro {
    max-width: 720px;

    margin: 25px auto 0;

    color: #bdb4b2;

    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.9;
}


/* =====================================================
   MAIN CONTENT
===================================================== */

.experience-content {
    display: grid;

    grid-template-columns: 1.7fr 0.8fr;

    gap: 55px;

    align-items: center;

    margin-bottom: 90px;
}


.experience-text p {
    margin: 0 0 22px;

    color: #c5bcba;

    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.9;
}


.experience-text p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   HIGHLIGHT
===================================================== */

.experience-highlight {
    position: relative;

    padding: 38px 30px;

    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(74, 16, 31, 0.55),
            rgba(18, 10, 12, 0.75)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 20px 50px rgba(0,0,0,0.25);
}


.experience-highlight::before {
    content: "";

    position: absolute;

    top: 0;
    left: 30px;

    width: 70px;
    height: 2px;

    background: #d4af37;
}


.highlight-number {
    display: block;

    margin-bottom: 12px;

    color: #d4af37;

    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 600;
}


.experience-highlight h3 {
    margin: 0 0 12px;

    color: #f5eee5;

    font-family: 'Cinzel', serif;
    font-size: 22px;
}


.experience-highlight p {
    margin: 0;

    color: #aaa09e;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   WHY HEADING
===================================================== */

.why-heading {
    margin-bottom: 40px;

    text-align: center;
}


.why-heading h3 {
    margin: 0;

    color: #f5eee5;

    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 3vw, 38px);

    line-height: 1.3;
}


.why-heading h3 span {
    color: #d4af37;

    font-style: italic;
}


/* =====================================================
   FEATURE GRID
===================================================== */

.experience-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


.experience-card {
    position: relative;

    display: flex;

    gap: 22px;

    min-height: 190px;

    padding: 28px;

    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(32, 18, 21, 0.88),
            rgba(15, 10, 11, 0.95)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.experience-card:hover {
    transform: translateY(-5px);

    border-color: rgba(212, 175, 55, 0.42);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.28),
        0 0 30px rgba(212, 175, 55, 0.04);
}


.experience-number {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 50%;

    color: #d4af37;

    font-family: 'Cinzel', serif;
    font-size: 14px;

    background: rgba(212, 175, 55, 0.04);
}


.experience-card-content h4 {
    margin: 3px 0 10px;

    color: #f5eee5;

    font-family: 'Cinzel', serif;
    font-size: 20px;
    line-height: 1.3;
}


.experience-card-content p {
    margin: 0;

    color: #aaa09e;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;

    line-height: 1.75;
}


/* =====================================================
   FEATURED CARD
===================================================== */

.experience-card--featured {
    border-color: rgba(212, 175, 55, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(75, 18, 34, 0.72),
            rgba(25, 12, 15, 0.96)
        );
}


.experience-link {
    display: inline-block;

    margin-top: 18px;

    color: #d4af37;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.3s ease;
}


.experience-link:hover {
    color: #f4d978;
}


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

@media (max-width: 768px) {

    .hyderabad-experience {
        padding: 75px 18px;
    }


    .experience-heading {
        margin-bottom: 45px;
    }


    .experience-heading .section-label,
    .why-heading .section-label {
        font-size: 9px;
        letter-spacing: 2.2px;
    }


    .experience-heading h2 {
        font-size: 29px;
    }


    .experience-intro {
        font-size: 14px;
        line-height: 1.75;
    }


    .experience-content {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-bottom: 65px;
    }


    .experience-text p {
        font-size: 14px;
        line-height: 1.8;
    }


    .experience-highlight {
        padding: 30px 24px;
    }


    .experience-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .experience-card {
        min-height: auto;

        padding: 24px 20px;

        gap: 17px;
    }


    .experience-number {
        flex: 0 0 44px;

        width: 44px;
        height: 44px;

        font-size: 12px;
    }


    .experience-card-content h4 {
        font-size: 18px;
    }


    .experience-card-content p {
        font-size: 13px;
        line-height: 1.7;
    }

}

/* =====================================================
   LOCATIONS SECTION
===================================================== */

.locations-section {
  position: relative;
  padding: 95px 20px;
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(212, 175, 55, 0.07),
      transparent 35%
    ),
    linear-gradient(
      120deg,
      #17120d 0%,
      #1b1114 48%,
      #240b15 100%
    );
  overflow: hidden;
}


/* TOP GOLD LINE */

.locations-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.55),
    transparent
  );
}


/* HEADING */

.locations-heading {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}


.locations-heading .section-label {
  display: block;
  margin-bottom: 14px;

  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;

  color: #d4af37;
}


.locations-heading h2 {
  margin: 0;

  font-family: "Cinzel", serif;
  font-size: 42px;
  line-height: 1.25;
  font-weight: 500;

  color: #f8f1e4;
}


.locations-heading h2 span {
  font-style: italic;

  background: linear-gradient(
    90deg,
    #d4af37,
    #f2d47a
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.locations-heading p {
  max-width: 650px;
  margin: 16px auto 0;

  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.8;

  color: #b9afb0;
}


/* GRID */

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;

  max-width: 1120px;
  margin: 0 auto;
}


/* CARD */

.location-card {
  position: relative;

  min-height: 126px;
  padding: 24px 25px;

  display: flex;
  align-items: center;

  text-decoration: none;

  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.012)
    );

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


.location-card:hover {
  transform: translateY(-5px);

  border-color: rgba(212, 175, 55, 0.55);

  background:
    linear-gradient(
      135deg,
      rgba(94, 17, 36, 0.72),
      rgba(42, 19, 22, 0.92)
    );

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(212, 175, 55, 0.07);
}


/* NUMBER */

.location-number {
  position: absolute;
  top: 17px;
  right: 20px;

  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 1px;

  color: rgba(212, 175, 55, 0.65);
}


/* ICON */

.location-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(212, 175, 55, 0.32);

  background: rgba(212, 175, 55, 0.06);

  color: #d4af37;

  font-size: 17px;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}


.location-card:hover .location-icon {
  background: #d4af37;
  color: #1b1114;
}


/* CONTENT */

.location-info {
  margin-left: 17px;
  padding-right: 28px;
}


.location-info h3 {
  margin: 0 0 5px;

  font-family: "Cinzel", serif;
  font-size: 20px;
  font-weight: 600;

  color: #f8f1e4;
}


.location-info span {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.3px;

  color: #a99c9e;
}


/* ARROW */

.location-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;

  font-size: 12px;

  color: #9b7a32;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}


.location-card:hover .location-arrow {
  color: #d4af37;
  transform: translateX(4px);
}


/* BUTTON */

.locations-button-wrap {
  display: flex;
  justify-content: center;

  margin-top: 38px;
}


.locations-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 13px 25px;

  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50px;

  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;

  text-decoration: none;

  color: #d4af37;
  background: rgba(212, 175, 55, 0.035);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.locations-button i {
  font-size: 11px;

  transition: transform 0.3s ease;
}


.locations-button:hover {
  color: #1b1114;
  background: #d4af37;

  transform: translateY(-2px);

  box-shadow:
    0 8px 25px rgba(212, 175, 55, 0.18);
}


.locations-button:hover i {
  transform: translateX(4px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }

  .locations-heading h2 {
    font-size: 36px;
  }

}


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

@media (max-width: 600px) {

  .locations-section {
    padding: 70px 15px;
  }

  .locations-heading {
    margin-bottom: 32px;
  }

  .locations-heading .section-label {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .locations-heading h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .locations-heading p {
    font-size: 13px;
    line-height: 1.7;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .location-card {
    min-height: 112px;
    padding: 18px 15px;
    border-radius: 14px;
  }

  .location-icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .location-info {
    margin-left: 11px;
    padding-right: 10px;
  }

  .location-info h3 {
    font-size: 15px;
    line-height: 1.35;
  }

  .location-info span {
    font-size: 10px;
  }

  .location-number {
    top: 12px;
    right: 13px;
    font-size: 9px;
  }

  .location-arrow {
    display: none;
  }

  .locations-button-wrap {
    margin-top: 30px;
  }

  .locations-button {
    padding: 12px 21px;
    font-size: 12px;
  }

}
/* =====================================
   FINAL CTA
===================================== */

.final-cta {

    position: relative;

    padding: 85px 20px;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(122, 15, 30, .30),
            transparent 40%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(212, 175, 55, .07),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #070707 0%,
            #17070d 50%,
            #090909 100%
        );

    overflow: hidden;
}


/* subtle top/bottom lines */

.final-cta::before,
.final-cta::after {

    content: "";

    position: absolute;

    left: 10%;
    right: 10%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, .25),
            transparent
        );
}

.final-cta::before {
    top: 0;
}

.final-cta::after {
    bottom: 0;
}


/* =====================================
   CTA BOX
===================================== */

.final-cta-box {

    position: relative;

    max-width: 980px;

    margin: 0 auto;

    padding: 65px 40px;

    text-align: center;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(122, 15, 30, .28),
            rgba(24, 8, 13, .78),
            rgba(8, 8, 8, .90)
        );

    border: 1px solid rgba(212, 175, 55, .20);

    box-shadow:
        0 30px 80px rgba(0,0,0,.42),
        inset 0 1px 0 rgba(255,255,255,.025);

    overflow: hidden;
}


/* glossy light */

.final-cta-box::before {

    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    top: -250px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,.09),
            transparent 68%
        );

    pointer-events: none;
}


/* =====================================
   LABEL
===================================== */

.final-cta-label {

    position: relative;

    display: block;

    margin-bottom: 15px;

    color: #d4af37;

    font-family: 'Poppins', sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3.5px;

    text-transform: uppercase;
}


/* =====================================
   HEADING
===================================== */

.final-cta h2 {

    position: relative;

    margin: 0;

    color: #f7f0e6;

    font-family: 'Cinzel', serif;

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 600;

    line-height: 1.25;
}


.final-cta h2 span {

    display: block;

    color: #d4af37;

    font-style: italic;
}


/* =====================================
   DESCRIPTION
===================================== */

.final-cta-content > p {

    position: relative;

    max-width: 620px;

    margin: 20px auto 0;

    color: #b8aeac;

    font-family: 'Poppins', sans-serif;

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================
   BUTTONS
===================================== */

.final-cta-actions {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 13px;

    margin-top: 30px;
}


.final-cta-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-width: 145px;

    padding: 13px 24px;

    border-radius: 50px;

    font-family: 'Poppins', sans-serif;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;
}


/* WhatsApp */

.final-cta-btn--primary {

    color: #15100d;

    background:
        linear-gradient(
            135deg,
            #f2d47a,
            #d4af37
        );

    box-shadow:
        0 10px 28px rgba(212,175,55,.14);
}


.final-cta-btn--primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(212,175,55,.24);
}


.final-cta-btn--primary i {
    font-size: 16px;
}


/* Call */

.final-cta-btn--secondary {

    color: #eadfce;

    background: rgba(255,255,255,.025);

    border: 1px solid rgba(212,175,55,.35);
}


.final-cta-btn--secondary:hover {

    transform: translateY(-3px);

    color: #111;

    background: #d4af37;

    border-color: #d4af37;
}


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

@media (max-width: 768px) {

    .final-cta {

        padding: 65px 15px;

    }

    .final-cta-box {

        padding: 45px 22px;

        border-radius: 23px;

    }

    .final-cta-label {

        font-size: 9px;

        letter-spacing: 2.5px;

    }

    .final-cta h2 {

        font-size: 29px;

        line-height: 1.3;

    }

    .final-cta-content > p {

        font-size: 14px;

        line-height: 1.75;

    }

    .final-cta-actions {

        gap: 9px;

    }

    .final-cta-btn {

        min-width: 0;

        flex: 1;

        padding: 12px 10px;

        font-size: 12px;

    }

}
/* =====================================
   FAQ SECTION
===================================== */

.faq-section {
    position: relative;

    padding: 90px 20px;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(120, 12, 35, 0.20),
            transparent 38%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(212, 175, 55, 0.06),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #090909,
            #19070d 55%,
            #14110b
        );
}


/* HEADING */

.faq-heading {
    max-width: 760px;

    margin: 0 auto 48px;

    text-align: center;
}


.faq-heading .section-label {
    display: block;

    margin-bottom: 14px;

    font-family: "Poppins", sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3.5px;

    color: #d4af37;
}


.faq-heading h2 {
    margin: 0;

    font-family: "Cinzel", serif;

    font-size: 40px;
    line-height: 1.3;
    font-weight: 600;

    color: #f7f0e6;
}


.faq-heading h2 span {
    color: #d4af37;
    font-style: italic;
}


.faq-heading p {
    max-width: 620px;

    margin: 15px auto 0;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
    line-height: 1.8;

    color: #aaa0a0;
}


/* =====================================
   2 × 3 GRID
===================================== */

.faq-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}


/* FAQ CARD */

.faq-item {
    border: 1px solid rgba(212, 175, 55, 0.18);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.012)
        );

    overflow: hidden;

    transition:
        border-color .3s ease,
        background .3s ease,
        transform .3s ease;
}


.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.40);

    background:
        linear-gradient(
            145deg,
            rgba(90, 15, 31, 0.35),
            rgba(255,255,255,0.018)
        );
}


/* SUMMARY */

.faq-item summary {
    min-height: 78px;

    padding: 20px 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    cursor: pointer;

    list-style: none;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
    font-weight: 500;

    color: #f3e9dc;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


/* PLUS */

.faq-item summary b {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(212,175,55,.35);

    color: #d4af37;

    font-size: 19px;
    font-weight: 400;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}


/* OPEN STATE */

.faq-item[open] {
    border-color: rgba(212,175,55,.45);

    background:
        linear-gradient(
            145deg,
            rgba(75, 12, 28, .55),
            rgba(20, 10, 14, .9)
        );
}


.faq-item[open] summary b {
    transform: rotate(45deg);

    background: #d4af37;

    color: #160b0e;
}


/* ANSWER */

.faq-answer {
    padding: 0 22px 22px;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.75;

    color: #aaa0a0;
}


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

@media (max-width: 700px) {

    .faq-section {
        padding: 70px 15px;
    }

    .faq-heading {
        margin-bottom: 32px;
    }

    .faq-heading h2 {
        font-size: 28px;
    }

    .faq-heading p {
        font-size: 13px;
    }

    .faq-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .faq-item summary {
        min-height: 68px;

        padding: 17px 17px;

        font-size: 13px;
    }

    .faq-item summary b {
        width: 27px;
        height: 27px;

        font-size: 17px;
    }

    .faq-answer {
        padding: 0 17px 18px;

        font-size: 12px;
    }

}
/* =====================================================
   AAROHI VERMA
   PREMIUM FOOTER
===================================================== */

.footer {
  position: relative;

  padding: 75px 20px 25px;

  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(120, 15, 35, 0.20),
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(212, 175, 55, 0.045),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #080808 0%,
      #15080d 52%,
      #0b0908 100%
    );

  border-top: 1px solid rgba(212, 175, 55, 0.22);

  overflow: hidden;
}


/* subtle top glow */

.footer::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 420px;
  height: 1px;

  transform: translateX(-50%);

  background:
    linear-gradient(
      90deg,
      transparent,
      #d4af37,
      transparent
    );

  opacity: 0.65;
}


/* =====================================================
   MAIN FOOTER GRID
===================================================== */

.footer-main {

  display: grid;

  grid-template-columns:
    1.45fr
    0.75fr
    0.9fr
    1fr;

  gap: 55px;

  padding-bottom: 55px;

  max-width: 1180px;

  margin: 0 auto;
}


/* =====================================================
   BRAND
===================================================== */

.footer-brand {
  max-width: 350px;
}


.footer-logo {

  display: inline-block;

  margin: 0 0 18px;

  font-family: "Cinzel", serif;

  font-size: 30px;

  font-weight: 600;

  line-height: 1.1;

  letter-spacing: 0.5px;

  color: #f6efe4;

  text-decoration: none;
}


.footer-logo span {

  color: #d4af37;

  font-style: italic;

  margin-left: 3px;
}


.footer-description {

  max-width: 335px;

  margin: 0;

  font-family: "Poppins", sans-serif;

  font-size: 15px;

  line-height: 1.85;

  color: #9f9695;
}


/* =====================================================
   SOCIAL ICONS
===================================================== */

.footer-social {

  display: flex;

  align-items: center;

  gap: 9px;

  margin-top: 25px;
}


.footer-social a {

  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(212, 175, 55, 0.22);

  background:
    rgba(255, 255, 255, 0.025);

  color: #a99e9b;

  font-size: 14px;

  text-decoration: none;

  transition:
    transform .3s ease,
    color .3s ease,
    background .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}


.footer-social a:hover {

  color: #16100d;

  background: #d4af37;

  border-color: #d4af37;

  transform: translateY(-4px);

  box-shadow:
    0 8px 22px rgba(212, 175, 55, 0.15);
}


/* =====================================================
   COLUMN HEADINGS
===================================================== */

.footer-column h3 {

  position: relative;

  margin: 3px 0 24px;

  padding-bottom: 13px;

  font-family: "Cinzel", serif;

  font-size: 17px;

  font-weight: 600;

  color: #f2e9dc;
}


.footer-column h3::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 30px;
  height: 1px;

  background: #d4af37;
}


/* =====================================================
   FOOTER LINKS
===================================================== */

.footer-links {

  list-style: none;

  padding: 0;
  margin: 0;
}


.footer-links li {

  margin-bottom: 13px;
}


.footer-links a {

  position: relative;

  font-family: "Poppins", sans-serif;

  font-size: 15px;

  color: #a99f9d;

  text-decoration: none;

  transition:
    color .25s ease,
    padding-left .25s ease;
}


.footer-links a::before {

  content: "";

  position: absolute;

  left: -12px;
  top: 50%;

  width: 0;
  height: 1px;

  transform: translateY(-50%);

  background: #d4af37;

  transition: width .25s ease;
}


.footer-links a:hover {

  color: #d4af37;

  padding-left: 5px;
}


.footer-links a:hover::before {

  width: 7px;
}


/* =====================================================
   CONTACT
===================================================== */

.footer-contact {

  list-style: none;

  padding: 0;
  margin: 0;
}


.footer-contact li {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 15px;

  min-height: 28px;
}


.footer-contact-icon {

  width: 30px;
  height: 30px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(212, 175, 55, 0.20);

  background: rgba(212, 175, 55, 0.045);

  color: #d4af37;

  font-size: 12px;
}


.footer-contact a {

  font-family: "Poppins", sans-serif;

  font-size: 15px;

  color: #aaa09e;

  text-decoration: none;

  transition: color .25s ease;
}


.footer-contact a:hover {

  color: #d4af37;
}


/* =====================================================
   DIVIDER
===================================================== */

.footer-divider {

  width: 100%;

  max-width: 1180px;

  height: 1px;

  margin: 0 auto;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(212, 175, 55, 0.18),
      transparent
    );
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {

  max-width: 1180px;

  margin: 0 auto;

  padding-top: 23px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}


.copyright {

  margin: 0;

  font-family: "Poppins", sans-serif;

  font-size: 15px;

  color: #777070;
}


.copyright strong {

  color: #b9a58a;

  font-weight: 500;
}


/* =====================================================
   BOTTOM LINKS
===================================================== */

.footer-bottom-links {

  display: flex;

  align-items: center;

  gap: 13px;
}


.footer-bottom-links a {

  font-family: "Poppins", sans-serif;

  font-size: 15px;

  color: #777070;

  text-decoration: none;

  transition: color .25s ease;
}


.footer-bottom-links a:hover {

  color: #d4af37;
}


.footer-bottom-links span {

  width: 1px;

  height: 12px;

  background: rgba(255,255,255,.12);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

  .footer {

    padding-top: 65px;
  }


  .footer-main {

    grid-template-columns: 1.4fr 1fr 1fr;

    gap: 40px;
  }


  .footer-brand {

    grid-column: span 3;

    max-width: 500px;
  }

}


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

@media (max-width: 650px) {

  .footer {

    padding: 55px 18px 22px;
  }


  .footer-main {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 38px 25px;

    padding-bottom: 38px;
  }


  .footer-brand {

    grid-column: span 2;

    max-width: 100%;
  }


  .footer-logo {

    font-size: 27px;
  }


  .footer-description {

    max-width: 100%;

    font-size: 13px;

    line-height: 1.8;
  }


  .footer-social {

    margin-top: 21px;

    gap: 8px;
  }


  .footer-social a {

    width: 36px;
    height: 36px;

    font-size: 13px;
  }


  .footer-column h3 {

    font-size: 16px;

    margin-bottom: 20px;
  }


  .footer-links li {

    margin-bottom: 11px;
  }


  .footer-links a,
  .footer-contact a {

    font-size: 13px;
  }


  .footer-contact li {

    gap: 9px;

    margin-bottom: 13px;
  }


  .footer-contact-icon {

    width: 28px;
    height: 28px;

    font-size: 13px;
  }


  .footer-bottom {

    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 15px;

    padding-top: 20px;
  }


  .footer-bottom-links {

    flex-wrap: wrap;

    justify-content: center;

    gap: 9px;
  }


  .footer-bottom-links a {

    font-size: 13px;
  }


  .copyright {

    font-size: 13px;
  }

}


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

@media (max-width: 400px) {

  .footer {

    padding-left: 15px;
    padding-right: 15px;
  }


  .footer-main {

    column-gap: 18px;
  }


  .footer-social a {

    width: 34px;
    height: 34px;
  }


  .footer-column h3 {

    font-size: 14px;
  }


  .footer-links a,
  .footer-contact a {

    font-size: 11px;
  }

}


/*====================================
DESKTOP FLOATING BUTTON
====================================*/

.desktop-floating-contact{

    position:fixed;

    right:25px;

    bottom:100px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:9999;

}

.desktop-floating-contact a{

    width:60px;

    height:60px;

    border-radius:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.desktop-floating-contact i{

    font-size:22px;

    flex-shrink:0;

}

.desktop-floating-contact span{

    width:0;

    opacity:0;

    white-space:nowrap;

    overflow:hidden;

    transition:.35s ease;

    font-weight:600;

}

.floating-call{

    background:#9b002f;

    color:#fff;

}

.floating-whatsapp{

    background:var(--primary);

    color:#111;

}

.desktop-floating-contact a:hover{

    width:170px;

    justify-content:flex-start;

    padding-left:20px;

}

.desktop-floating-contact a:hover span{

    width:auto;

    opacity:1;

    margin-left:12px;

}

/*====================================
MOBILE STICKY CTA
====================================*/

.mobile-cta{

    display:none;

}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:768px){

.desktop-floating-contact{

display:none;

}

@media (max-width:768px){

.mobile-cta{

    position:fixed;
    left:0;
    right:0;
    bottom:0;

    display:flex;
    gap:10px;

    padding:12px;

    background:rgba(8,8,8,.96);
    backdrop-filter:blur(12px);

    z-index:9999;
}

.mobile-cta a{

    flex:1;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:15px 10px;

    border-radius:16px;   /* 👈 Rounded */

    font-size:16px;
    font-weight:600;

    text-decoration:none;

}

.mobile-call{

    background:#9b002f;
    color:#fff;

}

.mobile-whatsapp{

    background:var(--primary);
    color:#111;

}

body{

    padding-bottom:90px;

}

}

/*--call girls page--*/
.intro-section {
  padding: 120px 20px;
  padding-bottom: 120px;
  text-align: center;   /* 👈 main fix */

  display: flex;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(circle at center, rgba(255,0,100,0.15), transparent),
    linear-gradient(to bottom, #0a0a0a, #1a0000);
}

.intro-content {
  max-width: 700px;
}

.intro-content h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
}

.intro-content p {
  color: #bbb;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}

.intro-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-call {
  padding: 12px 25px;
  border-radius: 30px;
  background: linear-gradient(45deg,#ff0066,#ff4d88);
  color: #fff;
  text-decoration: none;
}

.btn-whatsapp {
  padding: 12px 25px;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}

/* MOBILE */
@media(max-width:768px){
  .intro-content h2 {
    font-size: 26px;
  }


 .intro-buttons {
    flex-direction: row;       /* 👈 vertical se horizontal */
    justify-content: center;
    gap: 10px;
  }
  .btn-call,
  .btn-whatsapp {
    padding: 10px 16px;        /* 👈 chhota size */
    font-size: 13px;           /* 👈 compact text */
    border-radius: 25px;
  }
}
.ultraH-section {
  margin-top: -80px;   /* 👈 sections overlap */
  padding-top: 120px;

  background:
    linear-gradient(to top, transparent, rgba(0,0,0,0.9)),
    radial-gradient(circle at center, rgba(212,175,55,0.08), transparent),
    #050505;
}
.ultraH-content h1 {
  font-size: 36px;
  font-family: 'Cinzel', serif;

  background: linear-gradient(45deg,#fff,#D4AF37,#FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 15px;
}

/* SECTION */
.ultra-booking {
  padding: 100px 20px;
  background:
    radial-gradient(circle at center, rgba(255,0,100,0.1), transparent),
    linear-gradient(to bottom, #050505, #1a0000);
}

/* TITLE */
.ultra-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;

  background: linear-gradient(45deg,#fff,#D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TIMELINE */
.ultra-timeline {
  position: relative;
  max-width: 700px;
  margin: auto;
}

/* CENTER LINE */
.ultra-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;

  background: linear-gradient(to bottom,#ff0066,#FFD700);
}

/* STEP */
.ultra-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 50px;

  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.ultra-step:nth-child(2){ animation-delay:0.2s; }
.ultra-step:nth-child(3){ animation-delay:0.4s; }

/* ICON */
.ultra-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(145deg,#ff0066,#ff2e7a);
  color: #fff;
  font-size: 22px;

  box-shadow: 0 0 25px rgba(255,0,90,0.5);
  z-index: 2;
}

.ultra-icon.gold {
  background: linear-gradient(145deg,#D4AF37,#FFD700);
  color: #000;
}

/* GLASS CARD */
.ultra-content {
  flex: 1;
  padding: 20px;

  border-radius: 15px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.1);

  transition: 0.3s;
}

/* HOVER EFFECT */
.ultra-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* TEXT */
.ultra-content h3 {
  color: #fff;
  margin-bottom: 8px;
}

.ultra-content p {
  color: #ccc;
  font-size: 14px;
}

/* CTA */
.ultra-cta {
  text-align: center;
  margin-top: 40px;
}

.ultra-cta a {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
}

/* ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media(max-width:768px){
  .ultra-timeline::before {
    left: 20px;
  }

  .ultra-icon {
    width: 50px;
    height: 50px;
  }
}




.service-section {
  padding: 80px 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.service-box {
  padding: 25px;
  border-radius: 15px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.1);

  color: #fff;
}

.service-box h3 {
  margin-bottom: 15px;
  color: #D4AF37;
}

.service-box ul {
  list-style: none;
  padding: 0;
}

.service-box li {
  margin-bottom: 8px;
  color: #ccc;
}

/* MOBILE */
@media(max-width:768px){
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.ultraCTA-section {
  padding: 80px 20px;

  background:
    radial-gradient(circle at center, rgba(255,0,100,0.15), transparent),
    linear-gradient(135deg,#0a0a0a,#1a0008);
}

/* BOX */
.ultraCTA-box {
  text-align: center;
  max-width: 800px;
  margin: auto;

  padding: 40px 25px;
  border-radius: 20px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(212,175,55,0.2);

  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* TITLE */
.ultraCTA-content h2 {
  font-size: 32px;
  margin-bottom: 10px;

  background: linear-gradient(45deg,#fff,#D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.ultraCTA-content p {
  color: #bbb;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* POINTS */
.ultraCTA-points {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.ultraCTA-points span {
  font-size: 13px;
  color: #ddd;
}

/* BUTTONS */
.ultraCTA-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* CALL */
.cta-call {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;

  background: linear-gradient(45deg,#ff0066,#ff4d88);
  color: #fff;

  box-shadow: 0 0 20px rgba(255,0,100,0.5);
}

/* WHATSAPP */
.cta-whatsapp {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;

  border: 1px solid #fff;
  color: #fff;
}

/* HOVER */
.cta-call:hover {
  transform: scale(1.05);
}

.cta-whatsapp:hover {
  background: #fff;
  color: #000;
}

/* MOBILE */
@media(max-width:768px){
  .ultraCTA-buttons {
    flex-direction: row;
  }

  .cta-call,
  .cta-whatsapp {
    padding: 10px 18px;
    font-size: 13px;
  }
}

