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

:root{
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --bg-card: #ffffff;
  --text: #1a2332;
  --text-muted: #5a6a7e;
  --accent: #3a7cbf;
  --accent-hover: #2e6aa8;
  --border: #e2e6ec;
  --radius: 6px;
}

html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}
a{color:var(--text);text-decoration:none;}
img{max-width:100%;display:block;}
ul{list-style:none;}

.container{
  max-width:960px;
  margin:0 auto;
  padding:0 28px;
}

/* Buttons */
.btn{
  display:inline-block;
  padding:14px 32px;
  font-family:inherit;
  font-size:15px;
  font-weight:700;
  border-radius:var(--radius);
  cursor:pointer;
  transition:all .25s ease;
  text-align:center;
  border:2px solid transparent;
  letter-spacing:0.3px;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
  box-shadow:0 4px 20px rgba(58,124,191,.2);
}
.btn-primary:hover{
  background:var(--accent-hover);
  box-shadow:0 8px 28px rgba(58,124,191,.3);
}
.btn-outline{
  background:transparent;
  color:var(--text);
  border-color:var(--border);
  padding:12px 28px;
  font-size:14px;
}
.btn-outline:hover{
  background:var(--bg-alt);
  border-color:#c8ced6;
}
.btn-accent{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
  box-shadow:0 4px 20px rgba(58,124,191,.2);
}
.btn-accent:hover{
  background:var(--accent-hover);
  box-shadow:0 8px 28px rgba(58,124,191,.3);
}
.btn-submit{width:100%;padding:16px;font-size:16px;}

/* Hero-specific buttons (over dark image) */
.hero .btn-primary{
  background:#fff;
  color:var(--text);
  border-color:#fff;
  box-shadow:0 4px 20px rgba(255,255,255,.15);
}
.hero .btn-primary:hover{
  background:#edf0f3;
  box-shadow:0 8px 28px rgba(255,255,255,.22);
}
.hero .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.4);
}
.hero .btn-outline:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.7);
}

/* Header */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  max-width:960px;
  margin:0 auto;
  padding:0 28px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{display:flex;align-items:center;}
.logo-img{height:46px;width:auto;}
.menu{display:flex;gap:28px;align-items:center;}
.menu a{
  font-size:14px;
  font-weight:500;
  color:var(--text-muted);
  transition:color .25s;
}
.menu a:hover{color:var(--text);}
.menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px;}
.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  margin:5px 0;
  border-radius:2px;
  transition:transform .3s, opacity .3s;
}

/* Hero */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:140px 28px 100px;
  text-align:center;
  background:linear-gradient(rgba(15,22,32,0.5),rgba(15,22,32,0.65)),url("/images/hero-building.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  position:relative;
  color:#fff;
}
.hero-content{max-width:720px;margin:0 auto;position:relative;z-index:1;}
.hero h1{
  font-size:clamp(36px,6vw,58px);
  font-weight:900;
  letter-spacing:-1.5px;
  line-height:1.08;
  margin-bottom:20px;
  color:#fff;
}
.tagline{
  font-size:19px;
  color:rgba(255,255,255,.85);
  margin-bottom:28px;
  font-style:italic;
}
.tagline em{font-style:italic;}
.hero-desc{
  font-size:17px;
  line-height:1.85;
  color:rgba(255,255,255,.75);
  margin-bottom:44px;
  max-width:580px;
  margin-left:auto;
  margin-right:auto;
}
.hero-buttons{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:center;
}
.hero-buttons .btn-primary{
  width:100%;
  max-width:340px;
}
.hero-buttons .btn-outline{
  width:100%;
  max-width:340px;
}

/* Sections */
.section{padding:100px 0;}
.section-alt{background:var(--bg-alt);}

.section-title{
  font-size:clamp(28px,4vw,38px);
  font-weight:900;
  letter-spacing:-0.5px;
  margin-bottom:16px;
  line-height:1.15;
  color:var(--text);
}
.section-subtitle{
  font-size:20px;
  font-weight:600;
  color:var(--accent);
  margin-bottom:12px;
}
.section-desc{
  font-size:17px;
  color:var(--text-muted);
  line-height:1.85;
  margin-bottom:28px;
  max-width:620px;
}

/* Section images */
.section-image{
  width:100%;
  border-radius:10px;
  box-shadow:0 8px 30px rgba(0,0,0,0.1);
  margin-bottom:48px;
  object-fit:cover;
  max-height:400px;
}

/* What We Do grid */
.services-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:44px;
}
.service-block{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px 28px;
  transition:border-color .25s, transform .25s, box-shadow .25s;
}
.service-block:hover{
  border-color:rgba(58,124,191,.3);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
}
.service-block h3{
  font-size:17px;
  font-weight:800;
  margin-bottom:10px;
  letter-spacing:-0.2px;
  color:var(--text);
}
.service-block p{
  font-size:15px;
  color:var(--text-muted);
  line-height:1.7;
}

/* Check list (Why Choose Us) */
.check-list{margin-top:36px;}
.check-list li{
  font-size:17px;
  padding:14px 0;
  border-bottom:1px solid var(--border);
  padding-left:32px;
  position:relative;
  color:var(--text);
}
.check-list li::before{
  content:"\2713";
  position:absolute;
  left:0;
  font-weight:700;
  color:var(--accent);
}

/* About blocks */
.about-block{margin-bottom:48px;}
.about-block:last-child{margin-bottom:0;}
.about-block h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:14px;
  letter-spacing:-0.3px;
  color:var(--text);
}
.about-block p{
  font-size:16px;
  color:var(--text-muted);
  line-height:1.85;
  margin-bottom:12px;
}

/* Two column (Services / Property Buying) */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  margin-top:36px;
}
.two-col h3{
  font-size:18px;
  font-weight:800;
  margin-bottom:18px;
  color:var(--accent);
}

/* Bullet list */
.bullet-list li{
  font-size:16px;
  color:var(--text-muted);
  padding:9px 0;
  padding-left:22px;
  position:relative;
}
.bullet-list li::before{
  content:"\2022";
  position:absolute;
  left:0;
  color:var(--accent);
  font-weight:700;
  font-size:18px;
}

/* Sell section */
.highlight-line{
  font-size:21px;
  font-weight:800;
  margin:24px 0;
  letter-spacing:0.5px;
  color:var(--text);
}
#sell h3{
  font-size:18px;
  font-weight:700;
  margin-bottom:16px;
  margin-top:32px;
}
.sell-cta{margin-top:44px;}

/* Contact info */
.contact-info{margin-bottom:36px;}
.contact-info p{
  font-size:16px;
  color:var(--text-muted);
  margin-bottom:10px;
}
.contact-info a{
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-color:rgba(58,124,191,.4);
}
.contact-info a:hover{text-decoration-color:var(--accent);}
.contact-cta{margin-top:12px;}

/* Form */
.form-wrap{max-width:580px;margin:0 auto;text-align:center;}
.form-wrap .section-desc{margin-left:auto;margin-right:auto;}
.consultation-form{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:36px;
  text-align:left;
}
.consultation-form input,
.consultation-form textarea{
  width:100%;
  padding:15px 18px;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  color:var(--text);
  font-family:inherit;
  font-size:15px;
  transition:border-color .25s;
}
.consultation-form input::placeholder,
.consultation-form textarea::placeholder{
  color:#9ca8b8;
}
.consultation-form input:focus,
.consultation-form textarea:focus{
  outline:none;
  border-color:var(--accent);
}
.consultation-form textarea{
  resize:vertical;
  min-height:130px;
}

/* FAQ */
.faq-list{margin-top:36px;}
.faq-item{
  border-bottom:1px solid var(--border);
  padding:28px 0;
}
.faq-item:first-child{padding-top:0;}
.faq-item h3{
  font-size:17px;
  font-weight:700;
  margin-bottom:10px;
  color:var(--text);
}
.faq-item p{
  font-size:15px;
  color:var(--text-muted);
  line-height:1.75;
}

/* CTA Banner */
.cta-banner{
  padding:100px 0;
  text-align:center;
  background:linear-gradient(rgba(15,22,32,0.5),rgba(15,22,32,0.65)),url("/images/services-building.jpg");
  background-size:cover;
  background-position:center;
  color:#fff;
}
.cta-banner h2{
  font-size:clamp(26px,4vw,36px);
  font-weight:900;
  margin-bottom:16px;
  letter-spacing:-0.5px;
  color:#fff;
}
.cta-banner p{
  font-size:17px;
  color:rgba(255,255,255,.8);
  margin-bottom:36px;
  max-width:520px;
  margin-left:auto;
  margin-right:auto;
}
.cta-banner .btn-accent{
  background:#fff;
  color:var(--text);
  border-color:#fff;
}
.cta-banner .btn-accent:hover{
  background:#edf0f3;
}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  padding:48px 0 28px;
  background:var(--bg-alt);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:24px;
  flex-wrap:wrap;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:16px;
}
.footer-logo{height:40px;width:auto;}
.footer-brand div{
  display:flex;
  flex-direction:column;
  gap:3px;
}
.footer-brand strong{font-size:14px;color:var(--text);}
.muted{color:var(--text-muted);font-size:13px;}
.footer-nav{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
}
.footer-nav a{
  font-size:13px;
  color:var(--text-muted);
  transition:color .25s;
}
.footer-nav a:hover{color:var(--text);}
.footer-bottom{
  margin-top:28px;
  padding-top:20px;
  border-top:1px solid var(--border);
  font-size:13px;
  color:var(--text-muted);
}

/* Divider accent line */
.accent-line{
  width:48px;
  height:3px;
  background:var(--accent);
  border-radius:2px;
  margin-bottom:24px;
}

/* Mobile */
@media(max-width:768px){
  .menu-toggle{display:block;}
  .menu{
    display:none;
    position:absolute;
    top:72px;left:0;right:0;
    background:rgba(255,255,255,.97);
    backdrop-filter:blur(12px);
    flex-direction:column;
    padding:24px 28px;
    gap:18px;
    border-bottom:1px solid var(--border);
  }
  .menu.open{display:flex;}
  .menu a{font-size:16px;}

  .logo-img{height:46px;}

  .hero{padding:110px 24px 70px;min-height:auto;}
  .hero h1{font-size:32px;}
  .hero-desc{font-size:15px;}
  .hero-buttons{flex-direction:column;align-items:stretch;}
  .hero-buttons .btn{text-align:center;max-width:none;}

  .section{padding:70px 0;}
  .section-title{font-size:26px;}
  .section-image{max-height:260px;}

  .services-grid{grid-template-columns:1fr;gap:16px;}
  .two-col{grid-template-columns:1fr;gap:28px;}

  .cta-banner{padding:70px 0;}

  .footer-inner{flex-direction:column;gap:24px;}
  .footer-nav{flex-direction:column;gap:12px;}
}

@media(max-width:480px){
  .logo-img{height:42px;}
  .hero h1{font-size:28px;letter-spacing:-1px;}
  .btn{padding:12px 24px;font-size:14px;}
  .service-block{padding:24px 20px;}
}
