﻿:root{
  --gold:#d4af37;
  --dark:#0b0b0b;
}

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

html, body{
  font-family:Montserrat,sans-serif;
  background:var(--dark);
  color:#fff;
  overflow-x: hidden;

}

h1,h2,h3{
  font-family:'Playfair Display',serif;
}

/* ================= HEADER ================= */

header{
  position:fixed;width:100%;top:0;left:0;
  top:0;
  left:0;
  width:100%;
  transition:0.3s ease;

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

  padding:20px 60px; /* 🔥 key spacing */

  background:rgba(0,0,0,0.4);backdrop-filter:blur(10px);
  z-index:1000;
}

@media (max-width:1024px){
  header{
    padding:15px 30px;
  }
}

@media (max-width:768px){
  header{
    padding:15px 20px;
  }
}

.header-right{
  display:flex;
  align-items:center;
  gap:40px; /* 🔥 premium spacing */
}

.logo img{
  width:100px;
}

 

nav{
  display:flex;
  gap:35px;
}

nav a{
  color:#fff;
  text-decoration:none;

  font-size:12px; /* 🔥 small & elegant */
  letter-spacing:1.5px;
  text-transform:uppercase;

  font-weight:400; /* 🔥 not bold */
  opacity:0.85;

  transition:0.3s;
}

nav a:hover{
  color:var(--gold);
  opacity:1;
}

.btn{
  background:linear-gradient(45deg,#d4af37,#f5d77a);
  color:#000;
  padding:10px 22px;
  border:none;
  border-radius:5px;
  cursor:pointer;
  font-weight:500;
}
.btn:hover{
  box-shadow:0 5px 20px rgba(212,175,55,0.3);
}
/* ================= HAMBURGER ================= */

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.menu-toggle span{
  width:26px;
  height:2px;
  background:#fff;
  transition:0.3s;
}

/* CROSS ANIMATION */
.menu-toggle.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}
.menu-toggle.active span:nth-child(2){
  opacity:0;
}
.menu-toggle.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

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

.hero{
  height:100vh;
  display:flex;
  align-items:center;
  padding:0 40px;
  background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.8)),
  url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover;
  position:relative;
}

.hero h2{
  font-size:60px;
  line-height:1.2;
}

.hero span{
  color:var(--gold);
}

.hero p{
  margin:20px 0;
  color:#ccc;
}

/* ================= FEATURES ================= */
.features{
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:40px 60px;
  background:#fff;

  gap:30px;
}

/* EACH ITEM */
.feature-row{
  display:flex;
  align-items:center;
  gap:15px;

  flex:1; /* 🔥 equal width */
  min-width:0;
}

/* ICON */
.feature-row img{
  width:40px;
  flex-shrink:0;
}

/* TEXT */
.feature-row h4{
  color:var(--gold);
  font-size:16px;
  margin-bottom:4px;
}

.feature-row p{
  font-size:13px;
  color:#666;
  line-height:1.4;
}

/* DIVIDER */
.divider{
  width:1px;
  height:50px;
  background:#e5e5e5;
  flex-shrink:0;
}

section, div {
  max-width: 100%;
}

/* ================= MOBILE PREMIUM GRID ================= */

@media (max-width:768px){

  .features{
    display:grid;                         /* 🔥 switch to grid */
    grid-template-columns:1fr 1fr;        /* 2 columns */
    gap:15px;

    padding:25px 15px;
  }

  .feature-row{
    flex-direction:column;                /* 🔥 vertical layout */
    align-items:flex-start;

    background:#fff;
    padding:18px;
    border-radius:12px;

    box-shadow:0 5px 20px rgba(0,0,0,0.06);

    transition:0.3s ease;
  }

  /* ICON */
  .feature-row img{
    width:36px;
    height:36px;
    margin-bottom:10px;
  }

  /* TEXT */
  .feature-row h4{
    font-size:14px;
    margin-bottom:4px;
  }

  .feature-row p{
    font-size:12px;
    line-height:1.4;
  }

  /* REMOVE DIVIDERS IN MOBILE */
  .divider{
    display:none;
  }

}

@media (max-width:480px){
  .features{
    grid-template-columns:1fr 1fr; /* still 2 columns */
    gap:12px;
  }
}


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

.about{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:60px;
  padding:80px 60px;
  background:#fff;
}

/* LEFT IMAGE */
.about-img{
  flex:1;
}

.about-img img{
  width:100%;
  border-radius:20px;
  display:block;
   transition:0.4s ease;
}

.about-img img:hover{
  transform:scale(1.03);
}

/* RIGHT CONTENT */
.about-content{
  flex:1;
}

.about-content span{
  color:var(--gold);
  letter-spacing:2px;
  font-size:12px;
  text-transform:uppercase;
}

.about-content h2{
  font-size:48px;
  line-height:1.2;
  margin:15px 0 20px;
  color:#000;
}

.about-content p{
  color:#555;
  font-size:15px;
  line-height:1.8;
  margin-bottom:15px;
  max-width:520px;
}

/* BUTTON */
.about-content .btn{
  margin-top:15px;
}


/* ================= ANIMATION ================= */
.about-content{
  animation:fadeUp 0.8s ease;
}

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

/* ================= ABOUT MOBILE PREMIUM ================= */

@media (max-width:768px){
    .about-content {
        animation: fadeUp 0.8s ease;
    }
  .about{
    flex-direction:column;       /* 🔥 stack */
    padding:50px 20px;
    gap:30px;
  }

  /* IMAGE FIRST */
  .about-img{
    width:100%;
  }

  .about-img img{
    border-radius:16px;
  }

  /* CONTENT */
  .about-content{
    width:100%;
  }

  .about-content span{
    font-size:11px;
    letter-spacing:1.5px;
  }

  .about-content h2{
    font-size:28px;             /* 🔥 scaled down */
    line-height:1.3;
  }

  .about-content p{
    font-size:14px;
    line-height:1.7;
  }

  /* BUTTON FULL WIDTH */
  .about-content .btn{
    width:100%;
    text-align:center;
    padding:12px;
  }

}
@media (max-width:480px){

  .about{
    padding:40px 15px;
  }

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

}
/* ================= PROJECTS ================= */
/* ================= PROJECTS ================= */

.projects{
  padding:80px 60px;
  background:#111;
}

/* HEADER */
.projects-header p{
  color:var(--gold);
  letter-spacing:2px;
  font-size:12px;
  margin-bottom:10px;
}

.projects-header h2{
  font-size:42px;
  margin-bottom:10px;
}

.projects-header .desc{
  color:#aaa;
  max-width:600px;
  margin-bottom:40px;
}

/* GRID */
.projects-grid{
  display:flex;
  gap:30px;
}

/* LEFT IMAGE */
.project-main{
  flex:1.2;
  overflow:hidden;
  border-radius:14px;
}

.project-main img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s ease;
}

/* RIGHT SIDE */
.project-side{
  flex:1;
  display:flex;
  gap:20px;
  align-items:flex-start; /* 🔥 alignment fix */
}

/* ================= THUMBNAILS ================= */

/* DESKTOP → vertical */
.project-thumbs{
  width:45%;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.project-thumbs img{
  width:100%;
  height:90px;
  object-fit:cover;
  border-radius:12px;
  transition:0.4s ease;
}

/* HOVER EFFECT */
.project-main img:hover,
.project-thumbs img:hover{
  transform:scale(1.05);
}

/* INFO BOX */
.project-info{
  width:55%;
  background:#1a1a1a;
  padding:25px;
  border-radius:14px;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

.project-info h3{
  color:var(--gold);
  margin-bottom:8px;
}

.project-info .location{
  color:#aaa;
  font-size:14px;
  margin-bottom:15px;
}

.project-info ul{
  color:#ccc;
  font-size:14px;
  line-height:1.8;
  margin-bottom:20px;
  padding-left:18px;
}

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

@media (max-width:768px){

  .projects{
    padding:50px 20px;
  }

  .projects-header h2{
    font-size:28px;
  }

  .projects-grid{
    flex-direction:column;
    gap:25px;
  }

  .project-main img{
    height:220px;
  }

  .project-side{
    flex-direction:column;
  }

  /* MOBILE → 2x2 GRID */
  .project-thumbs{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .project-thumbs img{
    height:100px;
  }

  .project-info{
    width:100%;
  }

  .project-info .btn{
    width:100%;
  }

}
/* ================= PROJECTS MOBILE PREMIUM ================= */

@media (max-width:768px){

  .projects{
    padding:50px 20px;
  }

  /* HEADER */
  .projects-header h2{
    font-size:28px;
  }

  .projects-header .desc{
    font-size:14px;
  }

  /* STACK LAYOUT */
  .projects-grid{
    flex-direction:column;
    gap:25px;
  }

  /* MAIN IMAGE */
  .project-main img{
    height:220px;
    object-fit:cover;
  }

  /* SIDE SECTION */
  .project-side{
    flex-direction:column;
    gap:20px;
    align-items:stretch; /* 🔥 IMPORTANT */
  }

  /* THUMBNAILS → GRID */
  .project-thumbs{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .project-thumbs img{
    height:100px;
    object-fit:cover;
  }

  /* INFO BOX */
  .project-info{
    width:100%;
    padding:20px;
  }

  .project-info h3{
    font-size:18px;
  }

  .project-info ul{
    font-size:13px;
  }

  /* BUTTON FULL WIDTH */
  .project-info .btn{
    width:100%;
    text-align:center;
    padding:12px;
  }

}


/* ================= INVEST SECTION ================= */

.invest{
  background:#0b0b0b;
  padding:70px 60px;
  text-align:center;
}

/* HEADER */
.invest-sub{
  color:var(--gold);
  letter-spacing:2px;
  font-size:12px;
  margin-bottom:10px;
}

.invest h2{
  font-size:40px;
  margin-bottom:40px;
}

/* GRID */
.invest-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* CARD */
.invest-card{
  background:#111;
  padding:25px;
  border-radius:14px;
  transition:0.3s ease;
}

.invest-card img{
  width:45px;
  margin-bottom:15px;
}

.invest-card h4{
  color:#fff;
  margin-bottom:8px;
}

.invest-card p{
  color:#aaa;
  font-size:14px;
}

/* HOVER (premium feel) */
.invest-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

@media (max-width:768px){

  .invest{
    padding:50px 20px;
  }

  .invest h2{
    font-size:28px;
  }

  .invest-grid{
    grid-template-columns:1fr 1fr; /* 🔥 2 column */
    gap:15px;
  }

  .invest-card{
    padding:20px;
  }

  .invest-card img{
    width:36px;
  }

}



/* ================= CHOOSE US ================= */

.choose{
  background:#fff;
  padding:60px 60px;
  text-align:center;
}

/* HEADER */
.choose-sub{
  color:var(--gold);
  letter-spacing:1.5px;
  font-size:12px;
  margin-bottom:8px;
}

.choose h2{
  font-size:38px;
  margin-bottom:35px;
  color:#000;
}

/* GRID */
.choose-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARD */
.choose-card{
  padding:20px;
  border-radius:12px;
  transition:0.3s ease;
}

.choose-card img{
  width:36px;
  margin-bottom:10px;
}

.choose-card h4{
  font-size:15px;
  margin-bottom:5px;
  color:#000;
}

.choose-card p{
  font-size:13px;
  color:#666;
  line-height:1.5;
}

/* HOVER */
.choose-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* ================= CHOOSE US ================= */

.choose{
  background:#fff;
  padding:60px 60px;
  text-align:center;
}

.choose-card img{
  background:rgba(212,175,55,0.1);
  padding:10px;
  border-radius:50%;
}

/* HEADER */
.choose-sub{
  color:var(--gold);
  letter-spacing:1.5px;
  font-size:12px;
  margin-bottom:8px;
}

.choose h2{
  font-size:38px;
  margin-bottom:35px;
  color:#000;
}

/* GRID */
.choose-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARD */
.choose-card{
  padding:20px;
  border-radius:12px;
  transition:0.3s ease;
}

.choose-card img{
  background:rgba(212,175,55,0.1);
  padding:10px;
  border-radius:50%;
}
.choose-card h4{
  font-size:15px;
  margin-bottom:5px;
  color:#000;
}

.choose-card p{
  font-size:13px;
  color:#666;
  line-height:1.5;
}

/* HOVER */
.choose-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

@media (max-width:768px){

  .choose{
    padding:40px 20px;
  }

  .choose h2{
    font-size:26px;
  }

  .choose-grid{
    grid-template-columns:1fr 1fr; /* 🔥 2 column */
    gap:15px;
  }

}
/* ================= VIDEO ================= */

.video{
  position:relative;
  height:380px; /* 🔥 more premium height */

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

  background:
    linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center/cover;

  overflow:hidden;
}
.play{
  width:90px;
  height:90px;
  border-radius:50%;

  border:2px solid rgba(212,175,55,0.8);
  color:var(--gold);

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

  font-size:24px;
  cursor:pointer;

  position:relative;

  backdrop-filter:blur(4px); /* 🔥 glass effect */
  background:rgba(0,0,0,0.3);

  transition:0.4s ease;
}
.play::before{
  content:'';
  position:absolute;

  width:120%;
  height:120%;
  border-radius:50%;

  border:1px solid rgba(212,175,55,0.4);
  animation:glowPulse 2s infinite;
}
.play:hover{
  background:var(--gold);
  color:#000;
  transform:scale(1.1);
  box-shadow:0 0 30px rgba(212,175,55,0.5);
}

.video-popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background:rgba(0,0,0,0.8);

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

  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:9999;
}

.video-popup.active{
  opacity:1;
  visibility:visible;
}

.video-box{
  width:90%;
  max-width:800px;
  position:relative;
}

.video-box iframe{
  width:100%;
  height:450px;
}

.close{
  position:absolute;
  top:-30px;
  right:0;
  color:#fff;
  font-size:24px;
  cursor:pointer;
}

@media (max-width:768px){

  .video{
    height:240px;
  }

  .play{
    width:65px;
    height:65px;
    font-size:18px;
  }

}




/* ================= TESTIMONIAL SLIDER ================= */
/* ================= TESTIMONIAL ================= */
/* ================= TESTIMONIAL ================= */

.testimonials{
  background:#f3f0ea;
  padding:70px 40px;
  text-align:center;
  color:#000;
}

.test-sub{
  color:var(--gold);
  letter-spacing:2px;
  font-size:12px;
}

/* WRAPPER */
.test-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-top:40px;
}

/* VIEWPORT */
.test-viewport{
  overflow:hidden;
  width:900px;
}

/* TRACK */
.test-track{
  display:flex;
  transition:0.4s ease;
}

/* CARD */
.test-card{
  min-width:280px;
  background:#fff;
  border-radius:12px;
  padding:20px;
  margin:0 10px;
  text-align:left;
  position:relative;
}

/* QUOTE */
.quote{
  font-size:28px;
  color:var(--gold);
  position:absolute;
  top:10px;
  left:15px;
}

/* TEXT */
.test-text{
  font-size:13px;
  line-height:1.6;
  color:#555;
  margin-top:20px;
}

/* USER */
.test-user{
  margin-top:12px;
}

.test-user h4{
  font-size:13px;
  font-weight:600;
  color:#000;
}

.test-user span{
  font-size:12px;
  color:#777;
}

/* ARROWS */
.arrow{
  width:40px;
  height:40px;
  border-radius:50%;
  border:none;
  background:#fff;
  cursor:pointer;
  font-size:20px;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.arrow:hover{
  background:var(--gold);
  color:#000;
}

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

  .test-wrapper{
    gap:10px;
  }

  .test-viewport{
    width:100%;
    overflow:hidden;
  }

  .test-track{
    display:flex;
    transition:0.4s ease;
  }

  .test-card{
    min-width:100%;      /* 🔥 FULL WIDTH */
    margin:0;            /* 🔥 remove center gap */
    border-radius:12px;
  }
    .arrow{
    width:38px;
    height:30px;
    font-size:18px;
    position:relative;
  }
     .testimonials{
    padding:50px 15px;
  }

}



/* ================= GALLERY ================= */

.gallery{
  background:#f3f0ea;
  padding:60px 40px;
  text-align:center;
}

.gallery-sub{
  color:var(--gold);
  letter-spacing:2px;
  font-size:12px;
  margin-bottom:20px;
}

/* WRAPPER */
.gallery-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

/* VIEWPORT */
.gallery-viewport{
  overflow:hidden;
  width:100%;
  max-width:1100px;
}

/* TRACK */
.gallery-track{
  display:flex;
  transition:0.4s ease;
}

/* IMAGES */
.gallery-track img{
  width:20%;              /* 🔥 5 images */
  height:140px;
  object-fit:cover;
  border-radius:10px;
  padding:0 5px;
}

/* ARROWS */
.gal-arrow{
  width:40px;
  height:40px;
  border-radius:50%;
  border:none;
  background:#fff;
  cursor:pointer;
  font-size:20px;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.gal-arrow:hover{
  background:var(--gold);
  color:#000;
}

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

  .gallery-viewport{
    overflow:hidden;
    width:100%;
  }

  .gallery-track{
    display:flex;
  }

  .gallery-track img{
    width:100%;
    flex:0 0 100%;   /* 🔥 CRITICAL FIX */
    padding:0;       /* 🔥 remove side gap */
    margin:0;
    height:200px;
  }
  .gallery-wrapper{
  gap:5px;
}

}


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

.cta{
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.pexels.com/photos/210617/pexels-photo-210617.jpeg') center/cover no-repeat;

  padding:80px 60px;
  color:#fff;
}

.cta-container{
  max-width:1100px;
  margin:auto;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

/* TEXT */
.cta-text h2{
  font-family:'Playfair Display',serif;
  font-size:36px;
  margin-bottom:10px;
}

.cta-text p{
  color:#ddd;
  font-size:15px;
  line-height:1.6;
}

/* BUTTONS */
.cta-buttons{
  display:flex;
  gap:15px;
}

/* PRIMARY */
.btn-primary{
  background:var(--gold);
  color:#000;
  border:none;
  padding:12px 22px;
  border-radius:6px;
  font-weight:500;
  cursor:pointer;
  transition:0.3s;
}

.btn-primary:hover{
  box-shadow:0 5px 20px rgba(212,175,55,0.4);
}

/* OUTLINE */
.btn-outline{
  background:transparent;
  border:1px solid #fff;
  color:#fff;
  padding:12px 22px;
  border-radius:6px;
  cursor:pointer;
  transition:0.3s;
}

.btn-outline:hover{
  background:#fff;
  color:#000;
}

/* ================= ULTRA PREMIUM CTA ================= */

.cta{
  position:relative;
  overflow:hidden;

  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
    url('https://images.pexels.com/photos/210617/pexels-photo-210617.jpeg') center/cover no-repeat;

  padding:100px 60px;
  color:#fff;
}

/* 🔥 GLASS OVERLAY */
.cta-overlay{
  position:absolute;
  inset:0;
  backdrop-filter:blur(3px);
  background:rgba(0,0,0,0.2);
}

/* CONTAINER */
.cta-container{
  position:relative;
  z-index:2;

  max-width:1100px;
  margin:auto;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

/* TEXT */
.cta-text h2{
  font-family:'Playfair Display',serif;
  font-size:40px;
  margin-bottom:12px;
  letter-spacing:0.5px;
}

.cta-text p{
  color:#ddd;
  font-size:16px;
  line-height:1.7;
}

/* BUTTONS */
.cta-buttons{
  display:flex;
  gap:18px;
}

/* PRIMARY BUTTON */
.btn-primary{
  background:linear-gradient(45deg,#d4af37,#f5d77a);
  color:#000;
  border:none;
  padding:14px 26px;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;

  transition:0.3s ease;
  box-shadow:0 5px 20px rgba(212,175,55,0.3);
}

.btn-primary:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 10px 30px rgba(212,175,55,0.5);
}

/* OUTLINE BUTTON */
.btn-outline{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.6);
  color:#fff;
  padding:14px 26px;
  border-radius:8px;
  cursor:pointer;

  backdrop-filter:blur(6px);
  transition:0.3s ease;
}

.btn-outline:hover{
  background:#fff;
  color:#000;
  transform:translateY(-3px);
}

/* 🔥 BACKGROUND ZOOM ANIMATION */
.cta::before{
  content:'';
  position:absolute;
  inset:0;
  background:inherit;
  z-index:0;
  animation:zoomBg 20s infinite alternate ease-in-out;
}

@keyframes zoomBg{
  0%{transform:scale(1);}
  100%{transform:scale(1.08);}
}


/* ================= CTA CONVERSION ================= */

.cta{
  position:relative;
  overflow:hidden;

  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
    url('https://images.pexels.com/photos/210617/pexels-photo-210617.jpeg') center/cover;

  padding:90px 60px;
  color:#fff;
}

.cta-overlay{
  position:absolute;
  inset:0;
  backdrop-filter:blur(3px);
}

/* CONTAINER */
.cta-container{
  position:relative;
  z-index:2;

  max-width:1100px;
  margin:auto;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

/* TEXT */
.cta-text h2{
  font-family:'Playfair Display',serif;
  font-size:38px;
  margin-bottom:10px;
}

.cta-text p{
  color:#ddd;
  font-size:16px;
  line-height:1.6;
}

/* TRUST LINE */
.cta-trust{
  margin-top:12px;
  font-size:13px;
  color:#cfcfcf;
}

/* BUTTONS */
.cta-buttons{
  display:flex;
  gap:15px;
}

/* CALL BUTTON */
.btn-primary{
  background:linear-gradient(45deg,#d4af37,#f5d77a);
  color:#000;
  padding:14px 28px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;

  animation:pulseBtn 2s infinite;
}

@keyframes pulseBtn{
  0%{transform:scale(1);}
  50%{transform:scale(1.05);}
  100%{transform:scale(1);}
}

/* WHATSAPP BUTTON */
.btn-whatsapp{
  background:#25D366;
  color:#fff;
  padding:14px 26px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}

.btn-whatsapp:hover{
  background:#1ebe5d;
}

@media (max-width:768px){

  .cta{
    padding:60px 20px;
    text-align:center;
  }

  .cta-container{
    flex-direction:column;
  }

  .cta-text h2{
    font-size:24px;
  }

  .cta-buttons{
    flex-direction:column;
    width:100%;
  }

  .cta-buttons a{
    width:100%;
  }

}

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

/* FOOTER */
.footer{
  background:#0b0b0b;
  color:#fff;
  padding:50px 20px;
  text-align:center;
}

.footer-container{
  max-width:1000px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.footer-col{
  flex:1;
  min-width:250px;
}

.footer-desc{
  color:#aaa;
  margin-top:10px;
}

.footer-urgency{
  color:#ffcc00;
  font-size:13px;
  margin-top:10px;
}

.footer-contact{
  color:#ccc;
  margin-bottom:10px;
}

/* FORM */
.footer-form{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-form input{
  padding:10px;
  border:none;
  border-radius:5px;
}

.footer-form button{
  background:#d4af37;
  border:none;
  padding:10px;
  border-radius:5px;
  font-weight:600;
}

/* BOTTOM */
.footer-bottom{
  margin-top:20px;
  color:#777;
  font-size:13px;
}

/* FLOATING WHATSAPP */
.whatsapp-float{
  position:fixed;
  bottom:80px;
  right:20px;
  width:55px;
  height:55px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  z-index:999;
}

/* STICKY CTA */
.sticky-cta{
  display:none;
}

@media (max-width:768px){

  .sticky-cta{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    display:flex;
    z-index:999;
  }

  .sticky-cta a{
    flex:1;
    text-align:center;
    padding:14px;
    font-weight:600;
    text-decoration:none;
  }

  .sticky-call{
    background:#d4af37;
    color:#000;
  }

  .sticky-whatsapp{
    background:#25D366;
    color:#fff;
  }

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

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

  

  .menu-toggle{
    display:flex;
  }

  /* DEFAULT NAV */
#navMenu{
  display:flex;
  align-items:center;
  gap:20px;
  right:10px; /* reduce */
  max-width:90vw; /* 🔥 prevents overflow */

}


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

  #navMenu{
  position:fixed;
    top:0;
    right:-100%; /* hidden */
    width:75%;
    height:100vh;

    background:#0b0b0b;
    padding:100px 25px;

    flex-direction:column;
    gap:20px;

    transition:0.4s ease;
    z-index:999;
  }

  #navMenu.active{
    right:0;
  }

  #navMenu a{
    font-size:15px;
    width:100%;
  }

  .mobile-btn{
    width:100%;
    text-align:center;
    margin-top:10px;
  }
}
  /* LAYOUT FIXES */
  .features{
    flex-wrap:wrap;
    gap:20px;
  }

  .feature-row{
    width:48%;
  }

}

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

  header{
    padding:15px 20px;
  }

  .hero{
    padding:120px 20px 60px;
    height:auto;
  }

  .hero h2{
    font-size:30px;
  }

  .features{
    flex-direction:column;
  }

  .feature-row{
    width:100%;
  }

}

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

  .hero h2{
    font-size:24px;
  }

}