*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter', sans-serif;
}

body{
  background:#071b2a;
  color:#fff;
}

/* ================= HEADER ================= */
.header{
  position:absolute;
  width:100%;
  top:0;
  z-index:100;
}

.header-inner{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  background:#fff;
  padding:10px;
  border-bottom-left-radius:30px;
  border-bottom-right-radius:30px;
}

.logo img{
  height:130px;
}

/* ================= NAV ================= */
.nav{
  display:flex;
  gap:28px;
  align-items:center;
}

.nav a,
.dropdown-toggle{
  font-size:15px;
  cursor:pointer;
  color:#fff;
  text-decoration:none;
}

/* ================= DROPDOWN ================= */
.dropdown{
  position:relative;
}

.dropdown-toggle{
  display:flex;
  align-items:center;
  gap:6px;
}

.dropdown-menu{
  position:absolute;
  top:34px;
  left:0;
  background:#0b2a40;
  border-radius:10px;
  min-width:180px;
  padding:6px 0;

  display:none;
  opacity:0;
  transform:translateY(10px);
}

.dropdown-menu a{
  display:block;
  padding:12px 18px;
  font-size:14px;
  white-space:nowrap;
}

.dropdown-menu a:hover{
  background:rgba(255,255,255,0.05);
}

.dropdown.active .dropdown-menu{
  display:block;
  opacity:1;
  transform:translateY(0);
}

/* ================= BUTTON ================= */
.outline-btn{
  padding:10px 22px;
  border:1px solid #fff;
  background:transparent;
  color:#fff;
  border-radius:25px;
  font-size:13px;
  cursor:pointer;
}

/* ================= HAMBURGER ================= */
.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
}

.hamburger span{
  width:24px;
  height:2px;
  background:#fff;
  margin-bottom:5px;
}

/* ================= HERO ================= */
.hero{
  height:100vh;
  background:url("images/banner-1.jpg")
    center/cover no-repeat;
  position:relative;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(7,27,42,.4),
    rgba(7,27,42,.4)
  );
}

.hero-content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.hero-top{
  color:#ff9c49;
  letter-spacing:1px;
  margin-bottom:18px;
  font-size:18px;
}

.hero h1{
  font-size:48px;
  line-height:1.2;
  margin-bottom:18px;
}

.hero-sub{
  max-width:640px;
  font-size:15px;
  opacity:.9;
}

.primary-btn{
  margin-top:28px;
  padding:14px 34px;
  background:#ff9c49;
  border:none;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
}

/* ================= WHATSAPP ================= */
.whatsapp-btn{
  position:fixed;
  bottom:30px;
  right:30px;
  background:#25d366;
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#fff;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  z-index: 2;
}

.whatsapp-btn:hover{
  transform:scale(1.05);
}

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

  .logo{
    background:#fff;
    padding:10px;
    border-bottom-left-radius:20px;
    border-bottom-right-radius:20px;
  }

  .logo img{
    height:80px;
  }

  .nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#071b2a;
    flex-direction:column;
    display:none;
    padding:20px 0;
    gap:0;
    height: calc(100vh - 100%)
  }

  .nav.active{
    display:flex;
  }

  .nav a,
  .dropdown-toggle{
    padding:14px 24px;
    width:100%;
    text-align:center;
  }

  .dropdown{
    width:100%;
  }

  .dropdown-menu{
    position:static;
    width:100%;
    transform:none;
    background:#0b2a40;
  }

  .dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 6px;
      justify-content: center;
  }

  .hamburger{
    display:flex;
  }

  .outline-btn{
    display:none;
  }
}

@media(max-width:600px){
  .hero h1{
    font-size:32px;
  }
  .hero-sub{
    font-size:14px;
  }
}




/* ================= PARTNERS SLIDER ================= */
.partners-section{
  padding: 90px 0 110px;
  background: linear-gradient(to bottom, #efeefe, #f9ffff);
  overflow: hidden;
}

.partners-title{
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  color: #1d1d1d;
  margin-bottom: 60px;
}

.partners-slider{
  width: 100%;
  overflow: hidden;
}

.partners-track{
  display: flex;
  gap: 40px;
  width: max-content;
}

.partner-card{
  min-width: 220px;
  height: 110px;
  background: #fff;
  border: 1px solid #e7bfa6;
  border-radius: 14px;
  padding: 20px;
  box-sizing: border-box;

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

.partner-card img{
  width: 100%;
  /*max-height: 60px;*/
  object-fit: contain;
}

/* MOBILE */
@media(max-width:768px){
  .partners-title{
    font-size: 26px;
    margin-bottom: 40px;
  }

  .partner-card{
    min-width: 180px;
    height: 95px;
  }
}



/* ================= EXPERT GRID ================= */
.expert-grid-section{
  padding: 120px 0;
  background: linear-gradient(to bottom, #0b1c2d, #071b2a);
}

.expert-grid{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 24px;
}

/* COMMON CARD */
.card{
  border-radius: 26px;
  padding: 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* LEFT BIG CARD */
.card-big{
  grid-row: 1 / span 2;
  background: #1c1c1c;
}

.card-big h2{
  font-size: 48px;
  margin-bottom: 20px;
}

.card-big h3{
  font-size: 24px;
  margin-bottom: 10px;
}

.card-big p{
  font-size: 16px;
  opacity: 0.8;
}

/* IMAGE CARDS */
.image-card{
  background-size: cover;
  background-position: center;
  padding: 0;
}

.image-1{
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471");
}

.image-2{
  background-image: url("https://images.unsplash.com/photo-1528909514045-2fa4ac7a08ba");
}

/* GREEN CARD */
.card-green{
  background: #05bfa7;
}

.card-green h2{
  font-size: 42px;
  margin-bottom: 10px;
}

.card-green h3{
  font-size: 18px;
  margin-bottom: 8px;
}

.card-green p{
  font-size: 14px;
}

/* DARK SMALL CARD */
.card-dark{
  background: #14283d;
}

.card-dark h2{
  font-size: 42px;
  margin-bottom: 10px;
}

.card-dark h3{
  font-size: 18px;
  margin-bottom: 8px;
}

.card-dark p{
  font-size: 14px;
  opacity: 0.85;
}

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

/* Tablet */
@media (max-width: 900px){
  .expert-grid{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .card-big{
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 600px){
  .expert-grid{
    grid-template-columns: 1fr;
  }

  .image-card{
    height: 200px;
  }
}



/* ================= EXPERT GRID ================= */
.expert-grid-section{
  padding: 120px 0;
  background: linear-gradient(to bottom, #0b1c2d, #071b2a);
}

.expert-grid{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 24px;
}

/* COMMON CARD */
.card{
  border-radius: 26px;
  padding: 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* LEFT BIG CARD */
.card-big{
  grid-row: 1 / span 2;
  background: #1c1c1c;
}

.card-big h2{
  font-size: 48px;
  margin-bottom: 20px;
}

.card-big h3{
  font-size: 20px;
  margin-bottom: 10px;
}

.card-big p{
  font-size: 16px;
  opacity: 0.8;
}

/* IMAGE CARDS */
.image-card{
  background-size: cover;
  background-position: center;
  padding: 0;
}

.image-1{
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471");
}

.image-2{
  background-image: url("https://images.unsplash.com/photo-1528909514045-2fa4ac7a08ba");
}

/* GREEN CARD */
.card-green{
  background: #05bfa7;
}

.card-green h2{
  font-size: 42px;
  margin-bottom: 10px;
}

.card-green h3{
  font-size: 20px;
  margin-bottom: 8px;
}

.card-green p{
  font-size: 16px;
}

/* DARK SMALL CARD */
.card-dark{
  background: #14283d;
}

.card-dark h2{
  font-size: 42px;
  margin-bottom: 10px;
}

.card-dark h3{
  font-size: 20px;
  margin-bottom: 8px;
}

.card-dark p{
  font-size: 16px;
  opacity: 0.85;
}

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

/* Tablet */
@media (max-width: 900px){
  .expert-grid{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .card-big{
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 600px){
  .expert-grid{
    grid-template-columns: 1fr;
  }

  .image-card{
    height: 200px;
  }
}






/* ================= OUR SERVICES ================= */
.services-section{
  position: relative;
  padding: 120px 0 140px;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee")
    center/cover no-repeat;
}

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

.services-container{
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.services-tag{
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.services-title{
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 70px;
}

/* BOX */
.services-box{
  background: rgba(10, 28, 44, 0.92);
  border-radius: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

/* SERVICE ITEM */
.service-item{
  position: relative;
  padding: 50px 36px 44px;
  text-align: left;
}

.service-item:not(:last-child){
  border-right: 1px solid rgba(255,255,255,0.15);
}

/* NUMBER */
.service-number{
  font-size: 34px;
  font-weight: 600;
  display: block;
  margin-bottom: 160px;
}

/* CONTENT */
.service-content h3{
  font-size: 20px;
  margin-bottom: 14px;
}

.service-content p{
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 18px;
}

.service-content a{
  font-size: 13px;
  color: #00d2b8;
  text-decoration: none;
  letter-spacing: 1px;
}

.service-item{
  transition: transform 0.35s ease, background 0.35s ease;
}

.service-item:hover{
  transform: translateY(-6px);
  background: rgba(20, 50, 80, 0.25);
}


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

/* Tablet */
@media (max-width: 900px){
  .services-box{
    grid-template-columns: 1fr;
  }

  .service-item{
    padding: 40px 30px;
  }

  .service-item:not(:last-child){
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .service-number{
    margin-bottom: 40px;
  }
}

/* Mobile */
@media (max-width: 600px){
  .services-title{
    font-size: 30px;
  }
}





/* ================= PROPERTY SECTIONS ================= */
.property-section{
  padding: 80px 20px;
  background: #ffffff;
}

.property-section-title{
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #caa586;
  margin-bottom: 50px;
}

/* GRID */
.property-grid{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🔑 FIXED 4 PER ROW */
  gap: 28px;
  justify-content: center; /* 🔑 centers last row */
}


/* CARD */
.property-card{
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
}

.property-card{
  width: 100%;
  max-width: 280px;  /* keeps visual balance */
  justify-self: center; /* 🔑 centers card in grid cell */
}


.property-card img{
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* BODY */
.property-body{
  padding: 18px;
}

.property-body h3{
  font-size: 18px;
  margin-bottom: 6px;
  color: #caa586;
}

.location{
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.property-body p{
  font-size: 14px;
  margin-bottom: 6px;
  color: #222;
}

/* ACTIONS */
.property-actions{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.property-card .btn{
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
}

.property-card .btn.call{
  background: #f3f5ee;
  color: #0b3d2e;
}

.property-card .btn.whatsapp{
  background: #f3f5ee;
  color: #0b7d3b;
}

.property-card .btn:hover {
  box-shadow: 0px 0px 3px #ccc;
}

/* RESPONSIVE */
@media(max-width:600px){
  .property-section-title{
    font-size: 26px;
  }
}

/* Tablet: 2 per row */
@media (max-width: 1024px){
  .property-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 per row */
@media (max-width: 600px){
  .property-grid{
    grid-template-columns: 1fr;
  }
}






/* ================= FOOTER ================= */
.site-footer{
  background: linear-gradient(to bottom, #efeefe, #f9ffff);
  padding: 22px 20px;
  font-size: 13px;
  color: #222;
}

.footer-inner{
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner a{
  text-decoration: none;
  color: inherit;
}

.footer-inner a:hover{
  text-decoration: underline;
}

/* LEFT */
.footer-left p{
  margin-bottom: 6px;
}

.footer-left i{
  margin-right: 6px;
  font-size: 13px;
}

/* CENTER */
.footer-center{
  display: flex;
  gap: 14px;
}

.footer-center a{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
}

.footer-center a:hover{
  background: #00d2b8;
}

/* RIGHT */
.footer-right{
  text-align: right;
}

.footer-right .powered{
  margin-top: 4px;
}

.footer-right .powered a:hover{
  color: #caa586;
}


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

  .footer-right{
    text-align: center;
  }
}








