/* ===== VARIABLES ===== */
:root {
  --blue: #3d9bf7;
  --blue-dark: #2b7fd4;
  --blue-light: #eaf4ff;
  --navy: #0f2745;
  --navy-soft: #1c3a5e;
  --text: #2b3a4f;
  --muted: #6b7c93;
  --bg: #ffffff;
  --bg-alt: #f5f9ff;
  --line: #e6eef8;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(15, 39, 69, 0.08);
  --shadow-sm: 0 8px 24px rgba(15, 39, 69, 0.06);
  --max: 1180px;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; color: var(--navy); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 90%; max-width: var(--max); margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-family: 'Poppins', sans-serif; font-size: .95rem; cursor: pointer;
  border: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(61,155,247,.35); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(61,155,247,.45); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light); padding: 6px 14px;
  border-radius: 50px; margin-bottom: 18px;
}
.eyebrow.light { background: rgba(255,255,255,.18); color: #fff; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px); border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.navbar.scrolled { box-shadow: 0 6px 24px rgba(15,39,69,.06); border-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand-logo { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 500; font-size: .95rem; color: var(--text); transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: #fff !important; padding: 10px 22px;
  border-radius: 50px; box-shadow: 0 8px 20px rgba(61,155,247,.3);
}
.nav-cta:hover { background: var(--blue-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero-bg-shape {
  position: absolute; top: -200px; right: -150px; width: 700px; height: 700px;
  background: radial-gradient(circle at center, var(--blue-light), transparent 70%);
  z-index: -1;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-text h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; margin-bottom: 20px; }
.hero-text h1 .accent { color: var(--blue); }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-mini-stats { display: flex; gap: 40px; }
.hero-mini-stats div { display: flex; flex-direction: column; }
.hero-mini-stats strong { font-family: 'Poppins', sans-serif; font-size: 1.7rem; color: var(--navy); }
.hero-mini-stats span { font-size: .85rem; color: var(--muted); }

/* Hero visual cards */
.hero-visual { position: relative; height: 460px; }
.hero-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.card-main { position: absolute; top: 0; right: 0; width: 320px; overflow: hidden; }
.card-img {
  height: 200px;
  background: linear-gradient(135deg, #4a9ef5, #2b7fd4),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"/>');
  background-blend-mode: overlay;
  position: relative;
}
.card-img::after {
  content: "🏡"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 4rem; opacity: .9;
}
.card-body { padding: 18px 20px 22px; }
.card-body .tag { display: inline-block; font-size: .72rem; font-weight: 600; color: var(--blue); background: var(--blue-light); padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; }
.card-body h4 { font-size: 1.1rem; margin-bottom: 4px; }
.card-body p { font-size: .85rem; color: var(--muted); margin-bottom: 12px; }
.card-price { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--navy); }
.card-price small { font-size: .8rem; color: var(--muted); font-weight: 500; }

.card-float {
  position: absolute; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; box-shadow: var(--shadow-sm); animation: float 4s ease-in-out infinite;
}
.card-float .float-icon { width: 42px; height: 42px; display: grid; place-items: center; background: var(--blue-light); border-radius: 12px; font-size: 1.3rem; }
.card-float strong { display: block; font-family: 'Poppins', sans-serif; color: var(--navy); font-size: .95rem; }
.card-float span { font-size: .78rem; color: var(--muted); }
.card-float:first-of-type, .hero-card.card-float { left: 0; bottom: 70px; }
.card-float-2 { left: 40px; bottom: -10px; animation-delay: 1.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== TRUSTBAR ===== */
.trustbar { background: var(--navy); color: #fff; padding: 22px 0; }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust-inner > span { font-size: .9rem; opacity: .8; }
.trust-logos { display: flex; gap: 34px; flex-wrap: wrap; }
.trust-logos span { font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: .05em; opacity: .55; font-size: .95rem; }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

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

/* ===== SERVICE CARDS ===== */
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-icon { width: 60px; height: 60px; display: grid; place-items: center; font-size: 1.7rem; background: var(--blue-light); border-radius: 14px; margin-bottom: 20px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .95rem; }

/* ===== ABOUT ===== */
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-inner--solo { display: block; max-width: 820px; margin: 0 auto; text-align: center; }
.about-inner--solo .check-list { display: grid; text-align: left; max-width: 480px; margin: 0 auto 32px; }
.about-inner--solo .btn { display: inline-flex; }
.about-visual { position: relative; }
.about-img {
  height: 420px; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--blue), var(--navy));
  position: relative; box-shadow: var(--shadow);
}
.about-img::after { content: "🏘️"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 6rem; opacity: .9; }
.about-badge {
  position: absolute; bottom: -26px; right: -10px; background: #fff;
  padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 16px; max-width: 280px;
}
.about-badge strong { font-family: 'Poppins', sans-serif; font-size: 2.4rem; color: var(--blue); line-height: 1; }
.about-badge span { font-size: .85rem; color: var(--muted); }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 18px; }
.about-text > p { color: var(--muted); margin-bottom: 24px; }
.check-list { margin-bottom: 30px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; font-weight: 500; color: var(--text); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px;
  background: var(--blue); color: #fff; border-radius: 50%; display: grid; place-items: center;
  font-size: .8rem; font-weight: 700;
}

/* ===== STATS ===== */
.stats { background: var(--blue); padding: 60px 0; }
.stats .stat { text-align: center; color: #fff; }
.stats .stat strong { display: block; font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 800; }
.stats .stat span { opacity: .9; font-size: .95rem; }

/* ===== PROPERTY CARDS ===== */
.property-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid var(--line);
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.property-img { height: 210px; position: relative; }
.property-img::after { content: "🏠"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 3.4rem; opacity: .85; }
.img-1 { background: linear-gradient(135deg, #4a9ef5, #2b7fd4); }
.img-2 { background: linear-gradient(135deg, #5fb0ff, #357ec7); }
.img-3 { background: linear-gradient(135deg, #2b7fd4, #0f2745); }
.property-img .tag {
  position: absolute; top: 14px; left: 14px; z-index: 1; background: #fff; color: var(--blue);
  font-size: .75rem; font-weight: 700; padding: 6px 14px; border-radius: 50px;
}
.property-img .tag-sale { color: #e08a00; }
.property-body { padding: 22px; }
.property-body h3 { font-size: 1.2rem; margin-bottom: 4px; }
.loc { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.property-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.property-meta span { font-size: .78rem; background: var(--bg-alt); color: var(--text); padding: 5px 12px; border-radius: 8px; }
.property-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); }
.property-foot .price { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); }
.property-foot .price small { font-size: .78rem; color: var(--muted); font-weight: 500; }
.property-foot a { color: var(--blue); font-weight: 600; font-size: .9rem; }

/* ===== STEPS ===== */
.steps .step { background: #fff; border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; }
.step-num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.4rem; color: var(--blue-light); margin-bottom: 8px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .9rem; }

/* ===== TESTIMONI ===== */
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.testi .stars { color: #ffb400; letter-spacing: 2px; margin-bottom: 14px; }
.testi p { color: var(--text); font-style: italic; margin-bottom: 22px; }
.testi footer { display: flex; align-items: center; gap: 14px; }
.testi .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-family: 'Poppins', sans-serif; font-weight: 700; }
.testi footer strong { display: block; color: var(--navy); font-size: .95rem; }
.testi footer small { color: var(--muted); font-size: .8rem; }

/* ===== CTA / KONTAK ===== */
.cta-section { background: linear-gradient(150deg, var(--navy), var(--navy-soft)); }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-text h2 { color: #fff; font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.cta-text > p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 28px; }
.contact-list { display: grid; gap: 14px; }
.contact-list li { color: rgba(255,255,255,.9); font-size: .95rem; }
.cta-form { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.cta-form h3 { font-size: 1.4rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: .95rem; color: var(--text); background: var(--bg-alt);
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.field textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: #0a1a30; color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { height: 38px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .92rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col a { display: block; font-size: .92rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; flex-wrap: wrap; gap: 12px;
}
.footer-socials { display: flex; gap: 22px; }
.footer-socials a:hover { color: var(--blue); }

/* ===== HERO CENTERED (no visual) ===== */
.hero-centered { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.hero-centered .hero-sub { margin-left: auto; margin-right: auto; max-width: 640px; }
.hero-centered .hero-actions { justify-content: center; }

/* ===== GRID-2 ===== */
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ===== SERVICE BULLET LIST ===== */
.svc-list { margin-top: 16px; display: grid; gap: 9px; }
.svc-list li { position: relative; padding-left: 24px; font-size: .92rem; color: var(--text); }
.svc-list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px;
  background: var(--blue); border-radius: 50%;
}

/* ===== VISION & MISSION ===== */
.vm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.vm-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px; box-shadow: var(--shadow-sm); }
.vm-icon { width: 60px; height: 60px; display: grid; place-items: center; font-size: 1.7rem; background: var(--blue-light); border-radius: 14px; margin-bottom: 20px; }
.vm-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.vm-card > p { color: var(--muted); }
.vm-card .check-list { margin-bottom: 0; }

/* ===== PROJECTS ===== */
.projects-grid .project-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.project-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-alt); }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.project-card:hover .project-img img { transform: scale(1.06); }
.project-info { padding: 22px 24px; }
.project-tag {
  display: inline-block; font-size: .72rem; font-weight: 600; color: var(--blue);
  background: var(--blue-light); padding: 4px 12px; border-radius: 50px; margin-bottom: 10px;
}
.project-info h3 { font-size: 1.3rem; margin-bottom: 4px; }
.project-info .loc { font-size: .88rem; color: var(--muted); }

.more-projects {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-top: 40px;
}
.more-projects > span { color: var(--muted); font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: #fff; border: 1px solid var(--line); color: var(--navy);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .88rem;
  padding: 8px 18px; border-radius: 50px; box-shadow: var(--shadow-sm);
}
.projects-note { text-align: center; color: var(--muted); margin-top: 24px; max-width: 680px; margin-left: auto; margin-right: auto; }

/* ===== LEADERSHIP ===== */
.leader-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px; box-shadow: var(--shadow-sm); max-width: 960px; margin: 0 auto;
}
.leader-photo {
  width: 200px; height: 200px; border-radius: 50%; margin: 0 auto; overflow: hidden;
  background: linear-gradient(150deg, var(--blue), var(--navy));
  box-shadow: var(--shadow); border: 4px solid #fff;
}
.leader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.leader-body h3 { font-size: 1.6rem; margin-bottom: 4px; }
.leader-role { display: inline-block; color: var(--blue); font-weight: 600; font-family: 'Poppins', sans-serif; margin-bottom: 16px; }
.leader-body p { color: var(--muted); margin-bottom: 14px; }
.leader-body p:last-child { margin-bottom: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner, .about-inner, .cta-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 20px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-visual { margin-bottom: 40px; }
  .leader-card { grid-template-columns: 1fr; text-align: center; gap: 26px; padding: 36px 28px; }
  .leader-photo { width: 140px; height: 140px; font-size: 2.6rem; }
}
@media (max-width: 720px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 20px; gap: 18px; box-shadow: var(--shadow);
    transform: translateY(-150%); opacity: 0; pointer-events: none; transition: .3s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .hero-mini-stats { gap: 24px; }
  .trust-inner { justify-content: center; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
