@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root{
  --orange:#ff825c;
  --dark:#666666;
  --black:#2f2f2f;
  --light-grey:#f7f7f7;
  --white:#ffffff;
  --container:1240px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Manrope',sans-serif;
  background:var(--white);
  color:var(--dark);
  line-height:1.7;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
  transition:transform .6s ease;
}

.container{
  width:min(var(--container),92%);
  margin:0 auto;
}

/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 30px;
  border-radius:999px;
  font-size:15px;
  font-weight:600;
  transition:.3s ease;
  cursor:pointer;
}

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

.btn-primary{
  background:var(--orange);
  color:#fff;
}

.btn-secondary{
  background:#fff;
  border:1px solid #ddd;
  color:var(--dark);
}

/* HEADER */

.site-header{
  width:100%;
  background:#fff;
  border-bottom:1px solid #f2f2f2;
  position:sticky;
  top:0;
  z-index:9999;
}

.header-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}

.logo img{
  height:58px;
  width:auto;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:36px;
  margin-left:auto;
  margin-right:40px;
}

.main-nav a{
  font-size:15px;
  font-weight:500;
  color:var(--dark);
  position:relative;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:1px;
  background:var(--orange);
  transition:width .3s ease;
}

.main-nav a:hover::after{
  width:100%;
}

.header-btn{
  display:inline-flex;
}

/* MOBILE MENU */

.menu-toggle{
  display:none;
  width:34px;
  height:24px;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
}

.menu-toggle span{
  width:100%;
  height:2px;
  background:var(--black);
  border-radius:10px;
}

.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:82%;
  max-width:360px;
  height:100vh;
  background:#fff;
  z-index:10001;
  padding:90px 30px 30px;
  display:flex;
  flex-direction:column;
  gap:26px;
  transition:.35s ease;
  box-shadow:-20px 0 50px rgba(0,0,0,.08);
}

.mobile-menu.active{
  right:0;
}

.mobile-menu a{
  font-size:19px;
  font-weight:600;
  color:var(--dark);
}

.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.22);
  z-index:10000;
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
}

.menu-overlay.active{
  opacity:1;
  visibility:visible;
}

/* COMMON */

.section-label{
  display:inline-block;
  margin-bottom:18px;
  color:var(--orange);
  font-size:15px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}

.trust-left h2,
.services-heading h2,
.properties-heading h2,
.why-heading h2,
.testimonials-heading h2,
.page-hero h1,
.about-hero h1,
.about-story-grid h2,
.about-section-heading h2,
.about-founder-box h2,
.contact-hero h1,
.contact-form-grid h2{
  font-size:clamp(38px,4vw,58px);
  line-height:1.08;
  letter-spacing:-1.5px;
  color:var(--black);
  font-weight:600;
  max-width:980px;
}

/* HERO */

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

.hero-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-areas:
  "content image"
  "buttons image";
  align-items:center;
  gap:40px 70px;
}

.hero-content{
  grid-area:content;
}

.hero-image{
  grid-area:image;
}

.hero-buttons{
  grid-area:buttons;
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.hero-content h1{
  font-size:clamp(48px,5vw,68px);
  line-height:1.02;
  letter-spacing:-1.5px;
  color:var(--black);
  font-weight:600;
  max-width:620px;
}

.hero-content p{
  font-size:20px;
  max-width:540px;
  margin-top:24px;
}

.hero-image img{
  width:100%;
  height:540px;
  object-fit:cover;
  border-radius:24px;
}

/* HOME SECTIONS */

.trust-section,
.services-section,
.properties-section,
.why-section,
.testimonials-section,
.cta-section{
  padding:100px 0;
}

.trust-section,
.properties-section,
.testimonials-section{
  background:var(--light-grey);
}

/* TRUST */

.trust-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:start;
}

.trust-right p{
  font-size:18px;
  margin-bottom:36px;
}

.trust-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.stat-box{
  background:#fff;
  padding:34px 30px;
  border-radius:24px;
  transition:.35s ease;
}

.stat-box h3{
  font-size:34px;
  color:var(--black);
  margin-bottom:10px;
  font-weight:600;
}

/* SERVICES */

.services-heading,
.properties-heading,
.why-heading,
.testimonials-heading{
  margin-bottom:54px;
}

.services-heading p{
  font-size:18px;
  max-width:700px;
  margin-top:22px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.service-card{
  background:var(--light-grey);
  padding:34px 30px;
  border-radius:24px;
  transition:.35s ease;
}

.service-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:rgba(255,130,92,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--orange);
  font-size:30px;
  margin-bottom:26px;
}

.service-card h3{
  font-size:24px;
  line-height:1.2;
  color:var(--black);
  margin-bottom:16px;
  font-weight:600;
}

/* HOME PROPERTY CARDS */

.properties-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.property-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  transition:.35s ease;
}

.property-image{
  overflow:hidden;
}

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

.property-card:hover .property-image img{
  transform:scale(1.04);
}

.property-content{
  padding:28px;
}

.property-content span{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:var(--orange);
  margin-bottom:12px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.property-content h3{
  font-size:28px;
  line-height:1.1;
  color:var(--black);
  margin-bottom:10px;
  font-weight:600;
}

.property-content p{
  font-size:15px;
  margin-bottom:18px;
}

.property-meta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.property-link{
  color:var(--orange);
  font-weight:700;
}

/* WHY */

.why-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.why-card{
  background:var(--light-grey);
  padding:34px 30px;
  border-radius:24px;
  transition:.35s ease;
}

.why-number{
  font-size:15px;
  font-weight:700;
  color:var(--orange);
  margin-bottom:18px;
}

.why-card h3{
  font-size:24px;
  line-height:1.2;
  color:var(--black);
  margin-bottom:16px;
  font-weight:600;
}

/* TESTIMONIALS */

.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.testimonial-card{
  background:#fff;
  padding:34px 30px;
  border-radius:24px;
  transition:.35s ease;
}

.quote-mark{
  font-size:62px;
  line-height:1;
  color:var(--orange);
  margin-bottom:16px;
}

.testimonial-user h4{
  font-size:18px;
  color:var(--black);
  margin-bottom:4px;
  font-weight:600;
}

/* HOVER */

.stat-box:hover,
.service-card:hover,
.why-card:hover,
.testimonial-card:hover,
.property-card:hover,
.listing-card:hover,
.about-value-card:hover,
.contact-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 50px rgba(0,0,0,.06);
}

/* PAGE HERO */

.page-hero{
  padding:100px 0 60px;
}

.page-hero p{
  font-size:18px;
  max-width:760px;
  margin-top:24px;
}

/* FILTERS */

.property-filter-section{
  padding:0 0 50px;
}

.property-filter-form{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:18px;
  background:var(--light-grey);
  padding:24px;
  border-radius:24px;
}

.filter-field{
  position:relative;
}

.filter-field input,
.filter-field select{
  width:100%;
  height:56px;
  border:none;
  background:#fff;
  border-radius:16px;
  padding:0 18px;
  font-size:15px;
  font-family:'Manrope',sans-serif;
  color:var(--dark);
  outline:none;
}

.live-search-results{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:#fff;
  border-radius:18px;
  margin-top:10px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  overflow:hidden;
  z-index:999;
}

.live-search-results a,
.live-search-results span{
  display:block;
  padding:14px 18px;
  font-size:15px;
  color:var(--dark);
  border-bottom:1px solid #f2f2f2;
}

/* LISTING PAGE */

.properties-listing-section{
  padding:40px 0 100px;
}

.listing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.listing-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.04);
  transition:.35s ease;
}

.listing-image{
  overflow:hidden;
}

.listing-image img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.listing-card:hover .listing-image img{
  transform:scale(1.04);
}

.listing-content{
  padding:30px;
}

.listing-location{
  display:inline-block;
  margin-bottom:14px;
  font-size:12px;
  font-weight:700;
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:1px;
}

.listing-content h2{
  font-size:30px;
  line-height:1.15;
  color:var(--black);
  margin-bottom:14px;
  font-weight:600;
}

.listing-price{
  font-size:28px;
  font-weight:700;
  color:var(--orange);
  margin-bottom:18px;
}

.listing-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:28px;
}

.listing-meta span{
  background:var(--light-grey);
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
}

.listing-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* SINGLE PROPERTY */

.single-property-hero{
  padding:90px 0;
}

.single-property-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.single-property-content h1{
  font-size:54px;
  line-height:1.1;
  color:var(--black);
  margin-bottom:20px;
}

.property-address{
  font-size:18px;
  margin-bottom:20px;
}

.single-property-price{
  font-size:38px;
  font-weight:700;
  color:var(--orange);
  margin-bottom:24px;
}

.single-property-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:28px;
}

.property-description-section{
  padding:80px 0;
}

.property-description{
  background:var(--light-grey);
  padding:40px;
  border-radius:24px;
}

.property-description h2{
  font-size:34px;
  color:var(--black);
  margin-bottom:20px;
}

/* ABOUT PAGE */

.about-hero,
.about-story-section,
.about-values-section,
.about-founder-section{
  padding:100px 0;
}

.about-story-section,
.about-founder-section{
  background:var(--light-grey);
}

.about-hero-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:60px;
  align-items:end;
}

.about-story-grid,
.about-founder-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.about-values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:54px;
}

.about-hero p,
.about-story-grid p,
.about-founder-box p{
  font-size:18px;
  max-width:680px;
  margin-top:22px;
}

.about-hero-card,
.about-founder-highlight{
  background:#fff;
  padding:40px;
  border-radius:28px;
}

.about-hero-card h3{
  font-size:56px;
  color:var(--orange);
  line-height:1;
  margin-bottom:12px;
}

.about-value-card{
  background:var(--light-grey);
  padding:34px 30px;
  border-radius:24px;
  transition:.35s ease;
}

.about-value-card span{
  color:var(--orange);
  font-weight:700;
}

.about-value-card h3{
  font-size:24px;
  color:var(--black);
  margin:18px 0 14px;
}

/* CONTACT PAGE */

.contact-hero,
.contact-info-section,
.contact-form-section{
  padding:100px 0;
}

.contact-info-section{
  background:var(--light-grey);
}

.contact-hero-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:60px;
  align-items:end;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.contact-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:start;
}

.contact-hero p,
.contact-form-grid p{
  font-size:18px;
  max-width:680px;
  margin-top:22px;
}

.contact-hero-card,
.contact-form-box{
  background:var(--light-grey);
  padding:40px;
  border-radius:28px;
}

.contact-card{
  background:#fff;
  padding:34px 30px;
  border-radius:24px;
  transition:.35s ease;
}

.contact-card span{
  color:var(--orange);
  font-weight:700;
}

.contact-card h3{
  font-size:24px;
  color:var(--black);
  margin:18px 0 14px;
}

.contact-card a{
  display:inline-block;
  margin-top:18px;
  color:var(--orange);
  font-weight:600;
}

.contact-form-box input,
.contact-form-box textarea{
  width:100%;
  border:none;
  background:#fff;
  padding:16px 18px;
  border-radius:16px;
  margin-bottom:18px;
  font-family:'Manrope',sans-serif;
  font-size:15px;
}

.contact-form-box textarea{
  min-height:140px;
  resize:none;
}

/* CTA */

.cta-box{
  background:#171717;
  color:#fff;
  padding:80px;
  border-radius:30px;
  text-align:center;
}

.cta-box h2{
  font-size:clamp(36px,4vw,54px);
  line-height:1.1;
  margin-bottom:20px;
}

.cta-box p{
  max-width:720px;
  margin:0 auto 34px;
  color:#d5d5d5;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.cta-buttons .btn-secondary{
  background:transparent;
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
}

/* FOOTER */

.site-footer{
  background:#171717;
  color:#fff;
}

.footer-container{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:50px;
  padding:70px 0;
}

.footer-brand img{
  height:58px;
  margin-bottom:20px;
  filter:brightness(0) invert(1);
}

.footer-brand p{
  color:#cfcfcf;
}

.footer-links,
.footer-contact{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-links h4,
.footer-contact h4{
  margin-bottom:10px;
}

.footer-links a,
.footer-contact a,
.footer-contact p{
  color:#cfcfcf;
  font-size:14px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:20px 0;
  text-align:center;
}

.footer-bottom p{
  color:#bdbdbd;
  font-size:13px;
}

/* ANIMATION */

.fade-up{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .8s ease,transform .8s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:991px){

  .main-nav,
  .header-btn{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .hero-container,
  .trust-container,
  .services-grid,
  .properties-grid,
  .why-grid,
  .testimonials-grid,
  .footer-container,
  .listing-grid,
  .single-property-container,
  .about-hero-grid,
  .about-story-grid,
  .about-values-grid,
  .about-founder-box,
  .contact-hero-grid,
  .contact-grid,
  .contact-form-grid{
    grid-template-columns:1fr;
  }

  .hero-container{
    grid-template-areas:
    "content"
    "image"
    "buttons";
  }

  .trust-stats{
    grid-template-columns:1fr;
  }

  .property-filter-form{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:767px){

  .logo img{
    height:50px;
  }

  .hero-section,
  .page-hero,
  .trust-section,
  .services-section,
  .properties-section,
  .why-section,
  .testimonials-section,
  .cta-section,
  .single-property-hero,
  .property-description-section,
  .about-hero,
  .about-story-section,
  .about-values-section,
  .about-founder-section,
  .contact-hero,
  .contact-info-section,
  .contact-form-section{
    padding:70px 0;
  }

  .hero-content h1,
  .page-hero h1,
  .single-property-content h1{
    font-size:42px;
  }

  .hero-content p,
  .page-hero p{
    font-size:17px;
  }

  .hero-image img,
  .single-property-image img{
    height:320px;
  }

  .hero-buttons,
  .listing-actions,
  .cta-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-buttons .btn,
  .listing-actions .btn,
  .cta-buttons .btn,
  .single-property-content .btn{
    width:100%;
  }

  .property-filter-form{
    grid-template-columns:1fr;
  }

  .service-card,
  .property-content,
  .why-card,
  .testimonial-card,
  .stat-box,
  .listing-content,
  .property-description,
  .about-hero-card,
  .about-value-card,
  .about-founder-highlight,
  .contact-card,
  .contact-form-box{
    padding:24px;
  }

  .property-image img,
  .listing-image img{
    height:250px;
  }

  .listing-content h2{
    font-size:26px;
  }

  .single-property-price{
    font-size:30px;
  }

  .cta-box{
    padding:46px 24px;
  }
}