/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#f8fafc;
  overflow-x:hidden;
}

/* =========================
   VARIABLES
========================= */

:root{
  --primary:#0f172a;
  --secondary:#1e293b;
  --gold:#f5b100;
  --white:#fff;
  --gray:#94a3b8;

  --gradient:
  linear-gradient(
    135deg,
    #f5b100,
    #ffdb70
  );

  --shadow:
  0 10px 30px rgba(0,0,0,0.1);
}

/* =========================
   COMMON
========================= */

.section{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:var(--gold);
  font-weight:600;
  font-size:18px;
}

.section-title h2{
  font-size:42px;
  color:var(--primary);
  margin-top:10px;
}

/* =========================
   NAVBAR
========================= */


.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
}

/* NAVBAR */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:16px 7%;

  background:
  rgba(5,8,22,0.75);

  backdrop-filter:
  blur(18px);

  border-bottom:
  1px solid
  rgba(255,255,255,0.08);

  transition:
  0.4s ease;
}

/* =========================
   LOGO
========================= */

.logo-container{
  display:flex;
  align-items:center;
  gap:14px;
}

/* IMAGE */

.navbar-logo{
  width:65px;
  height:65px;

  object-fit:contain;

  border-radius:18px;

  transition:0.4s ease;
}

.navbar-logo:hover{
  transform:
  scale(1.08);
}

/* TEXT */

.logo-text{
  display:flex;
  flex-direction:column;
}

.logo-text h2{
  color:white;
  font-size:26px;
  font-weight:700;
  margin:0;
  line-height:1;
}

.logo-text span{
  color:#F5B100;
  font-size:11px;

  text-transform:uppercase;
  letter-spacing:2px;

  margin-top:5px;
}

/* =========================
   NAV LINKS
========================= */

.nav-links{
  display:flex;
  align-items:center;
  list-style:none;
  gap:35px;
}

.nav-links a{
  color:white;
  text-decoration:none;
  font-size:16px;
  font-weight:500;

  position:relative;
  transition:0.4s ease;
}

/* UNDERLINE */

.nav-links a::after{
  content:'';

  position:absolute;
  left:0;
  bottom:-8px;

  width:0%;
  height:2px;

  background:
  linear-gradient(
    90deg,
    #F5B100,
    #FFD54F
  );

  transition:0.4s ease;
}

.nav-links a:hover{
  color:#F5B100;
}

.nav-links a:hover::after{
  width:100%;
}

/* ACTIVE LINK */

.active-link{
  color:#F5B100 !important;
}

.whatsapp-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  text-decoration:none !important;
  color:#050816;

  border:none;
  padding:14px 30px;
  border-radius:50px;

  background:
  linear-gradient(
    135deg,
    #F5B100,
    #FFD54F
  );

  font-weight:700;
  font-size:18px;

  transition:0.4s ease;
}

/* REMOVE UNDERLINE */

.whatsapp-btn:hover{
  text-decoration:none !important;

  transform:
  translateY(-4px);

  box-shadow:
  0 12px 30px
  rgba(245,177,0,0.35);
}

.whatsapp-btn:focus,
.whatsapp-btn:active,
.whatsapp-btn:visited{
  text-decoration:none;
  color:#050816;
}

.whatsapp-btn i{
  font-size:22px;
}


/* =========================
   BROCHURE BUTTON
========================= */

.brochure-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  text-decoration:none;
  color:white;

  border:2px solid
  rgba(255,255,255,0.5);

  padding:16px 34px;
  border-radius:50px;

  backdrop-filter:
  blur(10px);

  transition:0.4s ease;
}

.brochure-btn i{
  color:#ff4d4d;
  font-size:20px;
}

.brochure-btn:hover{

  background:
  rgba(255,255,255,0.12);

  border-color:#F5B100;

  color:#F5B100;

  transform:
  translateY(-5px);

  box-shadow:
  0 15px 35px
  rgba(245,177,0,0.2);
}

/* =========================
   BUTTON
========================= */

.book-btn{
  border:none;

  padding:14px 28px;

  border-radius:50px;

  background:
  linear-gradient(
    135deg,
    #F5B100,
    #FFD54F
  );

  color:#050816;
  font-weight:600;

  cursor:pointer;

  transition:
  0.4s ease;
}

.book-btn:hover{
  transform:
  translateY(-4px);

  box-shadow:
  0 10px 30px
  rgba(245,177,0,0.35);
}

/* =========================
   MENU BUTTON
========================= */

.menu-btn{
  display:none;

  color:white;
  font-size:32px;
  cursor:pointer;
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){



  .nav-links{
    position:fixed;

    top:90px;
    right:-100%;

    width:280px;
    height:100vh;

    background:
    rgba(5,8,22,0.98);

    backdrop-filter:
    blur(20px);

    flex-direction:column;
    justify-content:flex-start;
    align-items:center;

    padding-top:60px;

    transition:
    0.4s ease;
  }

  .nav-links.active{
    right:0;
  }

  .navbar-logo{
    width:55px;
    height:55px;
  }

  .logo-text h2{
    font-size:20px;
  }

  .logo-text span{
    font-size:10px;
  }

}

@media(max-width:576px){

  .navbar{
    padding:14px 5%;
  }

  .navbar-logo{
    width:48px;
    height:48px;
  }

  .logo-text h2{
    font-size:18px;
  }

}

/* =========================
   HERO
========================= */

.hero{
  min-height:100vh;
  padding-top:180px;
  padding-bottom:80px;

  background:
  linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)
  ),
  url("images/building.jpeg");

  background-size:cover;
  background-position:center;

  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.hero-content{
  max-width:900px;
  color:white;
  padding:0 20px;
}

.sub-heading{
  display:inline-block;
  padding:12px 25px;
  background:
  rgba(255,255,255,0.1);

  border-radius:50px;
  color:#ffe082;
}

.hero-content h1{
  font-size:65px;
  margin-top:20px;
  line-height:75px;
}

.hero-content h3{
  margin-top:20px;
  color:#f5d36a;
  font-size:28px;
}

.hero-content p{
  margin-top:25px;
  line-height:35px;
  color:#ddd;
  font-size:18px;
}

.hero-buttons{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:20px;
}

.primary-btn,
.secondary-btn{
  padding:16px 35px;
  border:none;
  border-radius:50px;
  cursor:pointer;
  font-size:16px;
}

.primary-btn{
  background:var(--gradient);
}

.secondary-btn{
  border:2px solid white;
  background:transparent;
  color:white;
}

/* =========================
   HERO CARDS
========================= */

.hero-cards{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:50px;
  flex-wrap:wrap;
}

.hero-card{
  width:220px;
  padding:25px;

  background:
  rgba(255,255,255,0.1);

  backdrop-filter:blur(20px);

  border-radius:25px;
}

.hero-card h4{
  color:#ffe082;
  margin-bottom:10px;
}

/* =========================
   ABOUT
========================= */

.about-container{
  display:flex;
  gap:50px;
  align-items:center;
}

.about-image img{
  width:100%;
  border-radius:30px;
}

.about-content p{
  line-height:34px;
  color:#475569;
}

.about-features{
  display:grid;
  grid-template-columns:
  repeat(2,1fr);

  gap:20px;
  margin-top:40px;
}

.feature{
  background:white;
  padding:25px;
  border-radius:20px;
  box-shadow:var(--shadow);
}

.feature i{
  color:var(--gold);
  font-size:30px;
  margin-bottom:15px;
}

/* =========================
   FLATS
========================= */

.flat-container{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

.flat-card{
  width:400px;
  background:white;
  padding:40px;
  border-radius:25px;
  box-shadow:var(--shadow);
}

.flat-card h3{
  font-size:30px;
  color:var(--primary);
}

.flat-card p{
  margin:20px 0;
}

.flat-card ul{
  margin-left:20px;
}

.flat-card li{
  margin:12px 0;
}

.flat-card button{
  margin-top:25px;
  padding:14px 30px;
  border:none;
  border-radius:40px;
  background:var(--gradient);
}

.details-btn{
  margin-top:25px;
  padding:15px 32px;
  border:none;
  border-radius:50px;
  cursor:pointer;

  background:linear-gradient(
    135deg,
    #F5B100,
    #FFD54F
  );

  color:#050816;
  font-size:16px;
  font-weight:600;

  transition:0.4s ease;
}

.details-btn:hover{
  transform:translateY(-5px);

  box-shadow:
  0 15px 35px
  rgba(245,177,0,0.35);
}

/* =========================
   AMENITIES
========================= */

.amenities-grid{
  display:grid;
  grid-template-columns:
  repeat(3,1fr);

  gap:25px;
}

.amenity-card{
  background:white;
  padding:40px;
  text-align:center;
  border-radius:25px;
  box-shadow:var(--shadow);
}

.amenity-card i{
  font-size:40px;
  color:var(--gold);
  margin-bottom:20px;
}

/* =========================
   GALLERY
========================= */

.gallery-grid{
  display:grid;
  grid-template-columns:
  repeat(2,1fr);

  gap:20px;
}

.gallery-grid img{
  width:100%;
  height:350px;
  object-fit:cover;
  border-radius:25px;
}

/* =========================
   CONTACT
========================= */

.contact-form{
  max-width:700px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  padding:20px;
  border:none;
  border-radius:18px;
  box-shadow:var(--shadow);
}

.contact-form textarea{
  resize:none;
  height:180px;
}

.contact-form button{
  padding:18px;
  border:none;
  border-radius:50px;
  background:var(--gradient);
  cursor:pointer;
}





/* ==========================
   CONTACT LIVE MAP
========================== */

.contact-section{
  background:
  linear-gradient(
    to bottom,
    #081120,
    #050816
  );
}

.contact-container{
  display:grid;
  grid-template-columns:
  420px 1fr;

  gap:40px;
  align-items:center;
}

.contact-info{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.contact-card{
  background:
  rgba(255,255,255,0.05);

  border:
  1px solid
  rgba(255,255,255,0.08);

  backdrop-filter:
  blur(20px);

  border-radius:30px;

  padding:35px;

  transition:0.4s ease;
}

.contact-card:hover{
  transform:
  translateY(-10px);

  border-color:
  rgba(245,177,0,0.3);
}

.contact-card i{
  font-size:42px;
  color:#F5B100;
  margin-bottom:20px;
}

.contact-card h3{
  color:white;
  margin-bottom:15px;
}

.contact-card p{
  color:#CBD5E1;
  line-height:30px;
  margin-bottom:20px;
}

.map-btn{
  display:inline-block;

  background:
  linear-gradient(
    135deg,
    #F5B100,
    #FFD54F
  );

  color:#050816;
  text-decoration:none;

  padding:14px 24px;

  border-radius:50px;
  font-weight:600;

  transition:0.4s ease;
}

.map-btn:hover{
  transform:
  translateY(-5px);
}

.map-wrapper{
  height:600px;
  border-radius:35px;
  overflow:hidden;

  border:
  2px solid
  rgba(245,177,0,0.2);

  box-shadow:
  0 20px 50px
  rgba(0,0,0,0.35);
}

.map-wrapper iframe{
  width:100%;
  height:100%;
  border:none;
}

/* MOBILE */

@media(max-width:992px){

  .contact-container{
    grid-template-columns:1fr;
  }

  .map-wrapper{
    height:450px;
  }

}

/* =========================
   FOOTER
========================= */

.footer{
  position:relative;
  background:
  linear-gradient(
    135deg,
    #071127,
    #0f172a,
    #16233d
  );

  color:#fff;

  padding:
  90px 8% 0;

  overflow:hidden;
}

/* GOLD TOP BORDER */

.footer::before{
  content:'';

  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:4px;

  background:
  linear-gradient(
    to right,
    #f5b100,
    #ffd54f,
    #f5b100
  );
}

/* MAIN GRID */

.footer-container{
  display:grid;

  grid-template-columns:
  2fr 1fr 1fr 1.5fr;

  gap:50px;

  padding-bottom:60px;
}

/* LOGO */

.footer-logo{
  font-size:38px;
  font-weight:700;

  color:#fff;

  margin-bottom:20px;
}

/* TEXT */

.footer-text{
  color:#cbd5e1;
  line-height:32px;
  font-size:16px;
  max-width:420px;
}

/* HEADINGS */

.footer-box h3{
  font-size:22px;
  margin-bottom:25px;

  color:#f5d36a;

  position:relative;
}

.footer-box h3::after{
  content:'';

  position:absolute;
  left:0;
  bottom:-10px;

  width:50px;
  height:3px;

  border-radius:20px;

  background:
  linear-gradient(
    to right,
    #f5b100,
    #ffd54f
  );
}

/* LIST */

.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin:18px 0;
}

.footer-box ul li a{
  text-decoration:none;
  color:#cbd5e1;

  transition:0.4s;
}

.footer-box ul li a:hover{
  color:#f5b100;

  padding-left:8px;
}

/* CONTACT */

.footer-box p{
  color:#cbd5e1;
  margin-bottom:18px;
  line-height:30px;
}

.footer-box p i{
  color:#f5b100;
  margin-right:10px;
}

/* SOCIAL */

.footer-social{
  display:flex;
  gap:15px;
  margin-top:30px;
}

.footer-social a{
  width:55px;
  height:55px;

  display:flex;
  justify-content:center;
  align-items:center;

  border-radius:50%;

  text-decoration:none;

  color:white;
  font-size:22px;

  background:
  rgba(255,255,255,0.08);

  backdrop-filter:
  blur(15px);

  transition:0.4s ease;
}

.footer-social a:hover{
  transform:
  translateY(-8px);

  background:
  linear-gradient(
    135deg,
    #f5b100,
    #ffd54f
  );

  color:#0f172a;

  box-shadow:
  0 12px 30px
  rgba(245,177,0,0.35);
}

/* BOTTOM */

.footer-bottom{
  border-top:
  1px solid
  rgba(255,255,255,0.08);

  text-align:center;

  padding:28px 0;
}

.footer-bottom p{
  color:#94a3b8;
  font-size:15px;
}

.footer-bottom span{
  color:#f5b100;
  font-weight:600;
}

/* RESPONSIVE */

@media(max-width:992px){

  .footer-container{

    grid-template-columns:
    1fr 1fr;

    gap:40px;
  }

}

@media(max-width:768px){

  .footer{
    padding:
    70px 6% 0;
  }

  .footer-container{

    grid-template-columns:
    1fr;

    text-align:center;
  }

  .footer-text{
    max-width:100%;
  }

  .footer-box h3::after{
    left:50%;
    transform:
    translateX(-50%);
  }

  .footer-social{
    justify-content:center;
  }

  .footer-logo{
    font-size:32px;
  }

}


/* ==========================
   PREMIUM SCROLL TOP BUTTON
========================== */

.scroll-top{
  position:fixed;
  right:30px;
  bottom:30px;

  width:70px;
  height:70px;

  border:none;
  outline:none;
  border-radius:50%;

  background:
  linear-gradient(
    135deg,
    #f5b100,
    #ffd54f
  );

  color:#0f172a;
  font-size:24px;
  cursor:pointer;

  display:flex;
  justify-content:center;
  align-items:center;

  box-shadow:
  0 15px 35px
  rgba(245,177,0,0.35);

  z-index:999;

  opacity:0;
  visibility:hidden;

  transform:
  translateY(20px);

  transition:
  all 0.4s ease;
}

/* SHOW BUTTON */

.scroll-top.show{
  opacity:1;
  visibility:visible;
  transform:
  translateY(0);
}

/* HOVER EFFECT */

.scroll-top:hover{

  transform:
  translateY(-8px)
  scale(1.08);

  box-shadow:
  0 20px 45px
  rgba(245,177,0,0.45);
}

/* ICON ANIMATION */

.scroll-top i{
  transition:0.4s;
}

.scroll-top:hover i{
  transform:
  translateY(-4px);
}

/* GLOW EFFECT */

.scroll-top::before{
  content:'';

  position:absolute;

  width:100%;
  height:100%;

  border-radius:50%;

  background:
  rgba(245,177,0,0.3);

  animation:
  pulse 2s infinite;

  z-index:-1;
}

@keyframes pulse{

  0%{
    transform:scale(1);
    opacity:0.6;
  }

  70%{
    transform:scale(1.5);
    opacity:0;
  }

  100%{
    transform:scale(1);
    opacity:0;
  }

}

/* MOBILE */

@media(max-width:768px){

  .scroll-top{
    width:60px;
    height:60px;
    right:20px;
    bottom:20px;
    font-size:20px;
  }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

  .menu-btn{
    display:block;
  }

  .nav-links{
    position:fixed;
    top:90px;
    right:-100%;
    width:280px;
    height:100vh;
    background:#0f172a;
    flex-direction:column;
    align-items:center;
    padding-top:60px;
    transition:0.4s;
  }

  .nav-links.active{
    right:0;
  }

  .hero-content h1{
    font-size:45px;
    line-height:55px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .about-container{
    flex-direction:column;
  }

  .amenities-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:768px){

  .section{
    padding:70px 5%;
  }

  .section-title h2{
    font-size:32px;
  }

  .hero{
    padding-top:150px;
  }

  .hero-content h1{
    font-size:38px;
    line-height:50px;
  }

  .hero-content h3{
    font-size:22px;
  }

  .hero-content p{
    font-size:16px;
    line-height:30px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .amenities-grid{
    grid-template-columns:1fr;
  }

  .hero-card{
    width:100%;
  }

}


/* ==========================
   PREMIUM ANIMATIONS
========================== */

/* Initial Hidden State */

.section,
.hero-card,
.flat-card,
.amenity-card,
.gallery-grid img,
.feature,
.contact-form,
.footer-box{

  opacity:0;
  transform:
  translateY(80px);

  transition:
  all 1s ease;
}

/* Reveal */

.show{
  opacity:1 !important;
  transform:
  translateY(0) !important;
}

/* ==========================
   HERO PREMIUM ANIMATION
========================== */

.hero-content{
  animation:
  heroFade 1.5s ease;
}

@keyframes heroFade{

  0%{
    opacity:0;
    transform:
    translateY(60px);
  }

  100%{
    opacity:1;
    transform:
    translateY(0);
  }

}

/* Hero Heading Glow */

.hero-content h1{
  animation:
  glowText 3s infinite alternate;
}

@keyframes glowText{

  from{
    text-shadow:
    0 0 10px rgba(245,177,0,0.2);
  }

  to{
    text-shadow:
    0 0 25px rgba(245,177,0,0.55);
  }

}

/* ==========================
   FLOATING CARDS EFFECT
========================== */

.hero-card{

  animation:
  floating 5s ease-in-out infinite;

  transition:
  0.4s ease;
}

.hero-card:hover{

  transform:
  translateY(-12px)
  scale(1.04);

}

.hero-card:nth-child(2){
  animation-delay:1s;
}

.hero-card:nth-child(3){
  animation-delay:2s;
}

@keyframes floating{

  0%{
    transform:
    translateY(0);
  }

  50%{
    transform:
    translateY(-12px);
  }

  100%{
    transform:
    translateY(0);
  }

}

/* ==========================
   PREMIUM CARD HOVER
========================== */

.flat-card,
.feature,
.amenity-card{

  transition:
  0.45s ease;
}

.flat-card:hover,
.feature:hover,
.amenity-card:hover{

  transform:
  translateY(-15px);

  box-shadow:
  0 20px 50px
  rgba(245,177,0,0.18);

}

/* ==========================
   GALLERY HOVER
========================== */

.gallery-grid img{

  transition:
  0.6s ease;

  overflow:hidden;
}

.gallery-grid img:hover{

  transform:
  scale(1.06);

  box-shadow:
  0 20px 50px
  rgba(0,0,0,0.4);

}

/* ==========================
   BUTTON HOVER EFFECT
========================== */

button{

  transition:
  0.4s ease;
}

button:hover{

  transform:
  translateY(-5px);

}

/* ==========================
   GOLD SHIMMER EFFECT
========================== */

.primary-btn,
.book-btn{

  position:relative;
  overflow:hidden;
}

.primary-btn::before,
.book-btn::before{

  content:'';

  position:absolute;
  top:0;
  left:-100%;

  width:100%;
  height:100%;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );

  transition:0.7s;
}

.primary-btn:hover::before,
.book-btn:hover::before{

  left:100%;
}

/* ==========================
   FOOTER ANIMATION
========================== */

.footer-social a{

  animation:
  pulseSocial 2s infinite;
}

@keyframes pulseSocial{

  0%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.08);
  }

  100%{
    transform:scale(1);
  }

}