
:root{
  --brand:#5b8cff;
  --brand2:#7c4dff;
  --dark:#0b1220;
  --light:#f6f8fc;
  --text:#20293c;
  --muted:#6b7280;
  --radius:18px;
}

*{
  font-family: "Manrope", sans-serif;
}

html{
  scroll-behavior: smooth;
}

body{
  background:#fff;
  color:var(--text);
}

/* Navbar */
.navbar-custom{
  padding: 14px 0;
  background: rgba(11,18,32,0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.navbar-custom .nav-link{
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 14px !important;
  border-radius: 50px;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active{
  color:#fff;
  background: rgba(255,255,255,0.12);
}

.text-brand{
  color: var(--brand);
}

.btn-brand{
  background: linear-gradient(90deg,var(--brand),var(--brand2));
  border: none;
  color: #fff;
  font-weight: 700;
}

.btn-brand:hover{
  opacity: 0.95;
  transform: translateY(-1px);
}

.section-padding{
  padding: 90px 0;
}

/* Hero */
.hero-section{
  min-height: 100vh;
  padding-top: 120px;
  background: linear-gradient(120deg,rgba(11,18,32,0.85),rgba(11,18,32,0.55)),
  url("../image/hero.avif") center/cover no-repeat;
}

.badge-soft{
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 50px;
}

.hero-stats{
  display:flex;
  gap:18px;
  flex-wrap: wrap;
}

.stat-box{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 18px;
  border-radius: var(--radius);
  min-width: 150px;
}

.stat-box h3{
  margin: 0;
  color:#fff;
  font-weight: 800;
}

.stat-box p{
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* Hero Card */
.hero-card{
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius);
  padding: 28px;
}

.hero-card .form-label{
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.hero-card .form-control,
.hero-card .form-select{
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
}

/* Section Titles */
.section-subtitle{
  display:inline-block;
  font-weight: 800;
  color: var(--brand2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.section-title{
  font-size: 38px;
  font-weight: 900;
  margin-top: 10px;
}

/* About */
.image-card{
  position: relative;
}

.floating-box{
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 16px;
}

.icon-card{
  display:flex;
  gap:14px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #eef2ff;
}

.icon-card i{
  font-size: 24px;
  color: var(--brand);
  margin-top: 4px;
}

/* Properties */
.property-card{
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid #eef2ff;
  transition: all 0.25s ease;
}

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

.property-card:hover{
  transform: translateY(-6px);
}

.price{
  font-weight: 900;
  color: var(--brand2);
}

.property-info{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

/* Services */
.service-card{
  text-align:center;
  padding: 30px 20px;
  border-radius: var(--radius);
  background:#fff;
  border: 1px solid #eef2ff;
  transition: all 0.25s ease;
}

.service-card i{
  font-size: 32px;
  color: var(--brand2);
}

.service-card:hover{
  transform: translateY(-6px);
}

/* Testimonials */
.testimonial-card{
  background:#fff;
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid #eef2ff;
}

.avatar{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.stars i{
  color: #fbbf24;
}

/* Contact */
.contact-card{
  background:#fff;
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid #eef2ff;
}

.contact-card .form-control,
.contact-card .form-select,
.contact-card textarea{
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
}

.contact-info p{
  font-weight: 700;
  color: var(--muted);
}

/* Footer */
.footer-section{
  background: var(--dark);
  padding: 70px 0 25px;
}

.footer-links{
  padding:0;
  list-style:none;
}

.footer-links li{
  margin-bottom: 10px;
}

.footer-links a{
  text-decoration:none;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  font-size: 14px;
}

.footer-links a:hover{
  color:#fff;
}

.footer-line{
  border-color: rgba(255,255,255,0.12);
  margin: 35px 0 20px;
}

.social-links a{
  display:inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration:none;
  margin-right: 10px;
  transition: 0.2s;
}

.social-links a:hover{
  background: linear-gradient(90deg,var(--brand),var(--brand2));
}

.newsletter-form{
  display:flex;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 6px;
}

.newsletter-form input{
  flex:1;
  border:none;
  outline:none;
  background: transparent;
  padding: 10px 14px;
  color: #fff;
}

.newsletter-form button{
  border:none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(90deg,var(--brand),var(--brand2));
  color:#fff;
}

/* Back to top */
.back-to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(90deg,var(--brand),var(--brand2));
  color:#fff;
  text-decoration:none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 999;
}

.back-to-top.show{
  opacity: 1;
  pointer-events: auto;
}

/* Responsive */
@media(max-width: 991px){
  .section-title{
    font-size: 30px;
  }
  .hero-section{
    padding-top: 110px;
  }
}
