:root {
  --primary: #278221;
  --accent: #00FF77;
  --soft-green: #d4f5df;
  --bg-1: #f2fff6;
  --bg-2: #e4f5ea;
  --bg-3: #f7fffb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2), var(--bg-3));
  color: #333;
  line-height: 1.6;
}

:root {
  --primary: #278221;
  --accent: #00FF77;
  --soft-green: #d4f5df;
  --bg-1: #f2fff6;
  --bg-2: #e4f5ea;
  --bg-3: #f7fffb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2), var(--bg-3));
  color: #333;
  line-height: 1.6;
}

/* ================= HEADER ================= */

header {
  background: linear-gradient(90deg, #278221, #2f9e3a);
  padding: 15px 8%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-weight: bold;
  font-size: 18px;
  color: white;
}

header nav a {
  color: var(--soft-green);
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  transition: 0.3s ease;
}

header nav a:hover {
  color: var(--soft-green);
}

/* HERO */
.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#aa1616;
position:relative;
overflow:hidden;
}

/* Background Image */
.hero::before{
content:"";
position:absolute;
inset:0;
background:url('assets/acacia.jpeg') center/cover no-repeat;
z-index:0;
}

/* Overlay Hijau ke Hitam Soft */
.hero::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
170deg,
rgba(39,130,33,0.35) 0%,
rgba(0,0,0,0.75) 85%
);
z-index:1;
}

/* Konten di atas overlay */
.hero-content{
position:relative;
z-index:2;
}

/* ================= SECTION ================= */

section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #ffffff, #f9fffb);
  margin: 40px 8%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(39,130,33,0.06);
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
  font-size: 28px;
}

/* ================= GRID / CONTENT ================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

/* ================= LOCATION MAP ================= */

.map iframe {
  width: 100%;
  border-radius: 15px;
  border: none;
}

/* ================= FOOTER ================= */

footer{
  background:var(--primary);
  color:#ffffff;
  padding:20px 8%;   /* lebih tipis */
  text-align:center;
}

.footer-links{
  margin:10px 0;
}

.footer-links a{
  margin:0 8px;
  font-size:14px;
}

footer h3{
  margin-bottom:8px;
  font-size:18px;
}

footer p{
  margin-top:10px;
  font-size:13px;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .hero h1 {
    font-size: 32px;
  }

  header nav a {
    margin-left: 15px;
    font-size: 14px;
  }

  section {
    margin: 30px 5%;
    padding: 70px 5%;
  }
}
/* ===== KEUNGGULAN 3 KOLOM ===== */

.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.keunggulan-card {
  text-align: center;
  transition: all 0.3s ease;
}

.keunggulan-card .icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.keunggulan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(39,130,33,0.08);
}

.keunggulan-card:hover .icon {
  color: var(--accent);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .keunggulan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .keunggulan-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= TENTANG KAMI ================= */

#tentang {
  position: relative;
  padding: 120px 8%;
  margin: 40px 8%;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
}

/* Background Image */
#tentang::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/tentang-bg.jpeg") center/cover no-repeat;
  z-index: 0;
}

/* Overlay Gradasi Hijau Tipis */
#tentang::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(39,130,33,0.65) 0%,
    rgba(20,60,25,0.75) 40%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
}

/* Konten di atas overlay */
#tentang > * {
  position: relative;
  z-index: 2;
}

#tentang h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #ffffff;
}

.tentang-subtitle {
  font-size: 28px;
  margin-bottom: 35px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
}

#tentang p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 22px auto;
  color: #f3fff6;
}

#tentang strong {
  color: #00FF77;
}
/* FOOTER UPGRADE */
footer{
background:linear-gradient(
160deg,
#1f5f23 0%,
#174d16 40%,
#0f2e12 100%
);
color:#fff;
padding:70px 8%;
text-align:center;
width:100%;
}
footer h3{
font-size:32px;
margin-bottom:30px;
}

.footer-links{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:40px;
font-size:20px;
font-weight:500;
}

.footer-links a{
color:#fff;
text-decoration:none;
display:flex;
align-items:center;
gap:10px;
transition:0.3s;
}

.footer-links a i{
font-size:24px;
color:var(--accent);
}

.footer-links a:hover{
color:var(--accent);
transform:translateY(-3px);
}

.copyright{
margin-top:40px;
font-size:16px;
opacity:0.8;
}
/* TIPE RUMAH */
.tipe-wrapper{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:40px;
margin-top:50px;
}

.tipe-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 20px 45px rgba(0,0,0,0.08);
transition:0.4s ease;
}

.tipe-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.tipe-card img{
width:100%;
height:250px;
object-fit:cover;
}

.tipe-content{
padding:25px;
font-size:17px;
line-height:1.8;
}

.tipe-content h3{
margin-bottom:15px;
color:var(--primary);
font-size:22px;
}

/* HERO */
.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
position:relative;
overflow:hidden;
}

/* Background Image */
.hero::before{
content:"";
position:absolute;
inset:0;
background:url('assets/acacia.jpeg') center/cover no-repeat;
z-index:0;
}

/* Overlay Hijau ke Hitam Soft */
.hero::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
170deg,
rgba(39,130,33,0.35) 0%,
rgba(0,0,0,0.75) 85%
);
z-index:1;
}

/* Konten di atas overlay */
.hero-content{
position:relative;
z-index:2;
}

/* ================= SECTION ================= */

section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #ffffff, #f9fffb);
  margin: 40px 8%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(39,130,33,0.06);
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
  font-size: 28px;
}

/* ================= GRID / CONTENT ================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

/* ================= LOCATION MAP ================= */

.map iframe {
  width: 100%;
  border-radius: 15px;
  border: none;
}

/* ================= FOOTER ================= */

footer {
  background: var(--primary);
  color: white;
  padding: 40px 8%;
  text-align: center;
  margin-top: 50px;
}

footer .social-links {
  margin: 15px 0;
}

footer .social-links a {
  color: var(--soft-green);
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

footer .social-links a:hover {
  color: var(--accent);
}

footer p {
  font-size: 14px;
  opacity: 0.9;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .hero h1 {
    font-size: 32px;
  }

  header nav a {
    margin-left: 15px;
    font-size: 14px;
  }

  section {
    margin: 30px 5%;
    padding: 70px 5%;
  }
}
/* ===== KEUNGGULAN 3 KOLOM ===== */

.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.keunggulan-card {
  text-align: center;
  transition: all 0.3s ease;
}

.keunggulan-card .icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.keunggulan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(39,130,33,0.08);
}

.keunggulan-card:hover .icon {
  color: var(--accent);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .keunggulan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .keunggulan-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= TENTANG KAMI ================= */

#tentang {
  position: relative;
  padding: 120px 8%;
  margin: 40px 8%;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
}

/* Background Image */
#tentang::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/tentang-bg.jpeg") center/cover no-repeat;
  z-index: 0;
}

/* Overlay Gradasi Hijau Tipis */
#tentang::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(39,130,33,0.65) 0%,
    rgba(20,60,25,0.75) 40%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
}

/* Konten di atas overlay */
#tentang > * {
  position: relative;
  z-index: 2;
}

#tentang h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #ffffff;
}

.tentang-subtitle {
  font-size: 28px;
  margin-bottom: 35px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
}

#tentang p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 22px auto;
  color: #f3fff6;
}

#tentang strong {
  color: #00FF77;
}
/* FOOTER UPGRADE */
footer{
background:linear-gradient(
160deg,
#1f5f23 0%,
#174d16 40%,
#0f2e12 100%
);
color:#fff;
padding:70px 8%;
text-align:center;
width:100%;
}
footer h3{
font-size:32px;
margin-bottom:30px;
}

.footer-links{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:40px;
font-size:20px;
font-weight:500;
}

.footer-links a{
color:#fff;
text-decoration:none;
display:flex;
align-items:center;
gap:10px;
transition:0.3s;
}

.footer-links a i{
font-size:24px;
color:var(--accent);
}

.footer-links a:hover{
color:var(--accent);
transform:translateY(-3px);
}

.copyright{
margin-top:40px;
font-size:16px;
opacity:0.8;
}
/* TIPE RUMAH */
.tipe-wrapper{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:40px;
margin-top:50px;
}

.tipe-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 20px 45px rgba(0,0,0,0.08);
transition:0.4s ease;
}

.tipe-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.tipe-card img{
width:100%;
height:250px;
object-fit:cover;
}

.tipe-content{
padding:25px;
font-size:17px;
line-height:1.8;
}

.tipe-content h3{
margin-bottom:15px;
color:var(--primary);
font-size:22px;
}
:root {
  --primary: #278221;
  --accent: #00FF77;
  --soft-green: #d4f5df;
  --bg-1: #f2fff6;
  --bg-2: #e4f5ea;
  --bg-3: #f7fffb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2), var(--bg-3));
  color: #333;
  line-height: 1.6;
}

:root {
  --primary: #278221;
  --accent: #00FF77;
  --soft-green: #d4f5df;
  --bg-1: #f2fff6;
  --bg-2: #e4f5ea;
  --bg-3: #f7fffb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2), var(--bg-3));
  color: #333;
  line-height: 1.6;
}

/* ================= HEADER ================= */

header {
  background: linear-gradient(90deg, #278221, #2f9e3a);
  padding: 15px 8%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-weight: bold;
  font-size: 18px;
  color: white;
}

header nav a {
  color: var(--soft-green);
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  transition: 0.3s ease;
}

header nav a:hover {
  color: var(--accent);
}

/* HERO */
.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
position:relative;
overflow:hidden;
}

/* Background Image */
.hero::before{
content:"";
position:absolute;
inset:0;
background:url('assets/acacia.jpeg') center/cover no-repeat;
z-index:0;
}

/* Overlay Hijau ke Hitam Soft */
.hero::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
170deg,
rgba(39,130,33,0.35) 0%,
rgba(0,0,0,0.75) 85%
);
z-index:1;
}

/* Konten di atas overlay */
.hero-content{
position:relative;
z-index:2;
}

/* ================= SECTION ================= */

section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #ffffff, #f9fffb);
  margin: 40px 8%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(39,130,33,0.06);
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
  font-size: 28px;
}

/* ================= GRID / CONTENT ================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

/* ================= LOCATION MAP ================= */

.map iframe {
  width: 100%;
  border-radius: 15px;
  border: none;
}

/* ================= FOOTER ================= */
footer{
  background:var(--primary);
  color:#ffffff;
  padding:20px 8%;   /* lebih tipis */
  text-align:center;
}

.footer-links{
  margin:10px 0;
}

.footer-links a{
  margin:0 8px;
  font-size:14px;
}

footer h3{
  margin-bottom:8px;
  font-size:18px;
}

footer p{
  margin-top:10px;
  font-size:13px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .hero h1 {
    font-size: 32px;
  }

  header nav a {
    margin-left: 15px;
    font-size: 14px;
  }

  section {
    margin: 30px 5%;
    padding: 70px 5%;
  }
}
/* ===== KEUNGGULAN 3 KOLOM ===== */

.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.keunggulan-card {
  text-align: center;
  transition: all 0.3s ease;
}

.keunggulan-card .icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.keunggulan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(39,130,33,0.08);
}

.keunggulan-card:hover .icon {
  color: var(--accent);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .keunggulan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .keunggulan-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= TENTANG KAMI ================= */

#tentang {
  position: relative;
  padding: 120px 8%;
  margin: 40px 8%;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
}

/* Background Image */
#tentang::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/dahlia.jpeg") center/cover no-repeat;
  z-index: 0;
}

/* Overlay Gradasi Hijau Tipis */
#tentang::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(39,130,33,0.65) 0%,
    rgba(20,60,25,0.75) 40%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
}

/* Konten di atas overlay */
#tentang > * {
  position: relative;
  z-index: 2;
}

#tentang h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #ffffff;
}

.tentang-subtitle {
  font-size: 28px;
  margin-bottom: 35px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
}

#tentang p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 22px auto;
  color: #f3fff6;
}

#tentang strong {
  color: #00FF77;
}
/* FOOTER UPGRADE */
footer{
background:linear-gradient(
160deg,
#1f5f23 0%,
#174d16 40%,
#0f2e12 100%
);
color:#fff;
padding:70px 8%;
text-align:center;
width:100%;
}
footer h3{
font-size:32px;
margin-bottom:30px;
}

.footer-links{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:40px;
font-size:20px;
font-weight:500;
}

.footer-links a{
color:#fff;
text-decoration:none;
display:flex;
align-items:center;
gap:10px;
transition:0.3s;
}

.footer-links a i{
font-size:24px;
color:var(--accent);
}

.footer-links a:hover{
color:var(--accent);
transform:translateY(-3px);
}

.copyright{
margin-top:40px;
font-size:16px;
opacity:0.8;
}
/* TIPE RUMAH */
.tipe-wrapper{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:40px;
margin-top:50px;
}

.tipe-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 20px 45px rgba(0,0,0,0.08);
transition:0.4s ease;
}

.tipe-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.tipe-card img{
width:100%;
height:250px;
object-fit:cover;
}

.tipe-content{
padding:25px;
font-size:17px;
line-height:1.8;
}

.tipe-content h3{
margin-bottom:15px;
color:var(--primary);
font-size:22px;
}

/* HERO */
.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
position:relative;
overflow:hidden;
}

/* Background Image */
.hero::before{
content:"";
position:absolute;
inset:0;
background:url('assets/acacia.jpeg') center/cover no-repeat;
z-index:0;
}

/* Overlay Hijau ke Hitam Soft */
.hero::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
170deg,
rgba(39,130,33,0.35) 0%,
rgba(0,0,0,0.75) 85%
);
z-index:1;
}

/* Konten di atas overlay */
.hero-content{
position:relative;
z-index:2;
}

/* ================= SECTION ================= */

section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #ffffff, #f9fffb);
  margin: 40px 8%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(39,130,33,0.06);
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
  font-size: 28px;
}

/* ================= GRID / CONTENT ================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

/* ================= LOCATION MAP ================= */

.map iframe {
  width: 100%;
  border-radius: 15px;
  border: none;
}

/* ================= FOOTER ================= */

footer {
  background: var(--primary);
  color: white;
  padding: 40px 8%;
  text-align: center;
  margin-top: 50px;
}

footer .social-links {
  margin: 15px 0;
}

footer .social-links a {
  color: var(--soft-green);
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

footer .social-links a:hover {
  color: var(--accent);
}

footer p {
  font-size: 14px;
  opacity: 0.9;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .hero h1 {
    font-size: 32px;
  }

  header nav a {
    margin-left: 15px;
    font-size: 14px;
  }

  section {
    margin: 30px 5%;
    padding: 70px 5%;
  }
}
/* ===== KEUNGGULAN 3 KOLOM ===== */

.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.keunggulan-card {
  text-align: center;
  transition: all 0.3s ease;
}

.keunggulan-card .icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.keunggulan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(39,130,33,0.08);
}

.keunggulan-card:hover .icon {
  color: var(--accent);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .keunggulan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .keunggulan-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= TENTANG KAMI ================= */

#tentang {
  position: relative;
  padding: 120px 8%;
  margin: 40px 8%;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
}

/* Background Image */
#tentang::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/dahlia.jpeg") center/cover no-repeat;
  z-index: 0;
}

/* Overlay Gradasi Hijau Tipis */
#tentang::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(39,130,33,0.65) 0%,
    rgba(20,60,25,0.75) 40%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
}

/* Konten di atas overlay */
#tentang > * {
  position: relative;
  z-index: 2;
}

#tentang h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #ffffff;
}

.tentang-subtitle {
  font-size: 28px;
  margin-bottom: 35px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
}

#tentang p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 22px auto;
  color: #f3fff6;
}

#tentang strong {
  color: #00FF77;
}
/* FOOTER UPGRADE */
footer{
background:linear-gradient(
160deg,
#1f5f23 0%,
#174d16 40%,
#0f2e12 100%
);
color:#fff;
padding:70px 8%;
text-align:center;
width:100%;
}
footer h3{
font-size:32px;
margin-bottom:30px;
}

.footer-links{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:40px;
font-size:20px;
font-weight:500;
}

.footer-links a{
color:#fff;
text-decoration:none;
display:flex;
align-items:center;
gap:10px;
transition:0.3s;
}

.footer-links a i{
font-size:24px;
color:var(--accent);
}

.footer-links a:hover{
color:var(--accent);
transform:translateY(-3px);
}

.copyright{
margin-top:40px;
font-size:16px;
opacity:0.8;
}
/* TIPE RUMAH */
.tipe-wrapper{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:40px;
margin-top:50px;
}

.tipe-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 20px 45px rgba(0,0,0,0.08);
transition:0.4s ease;
}

.tipe-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.tipe-card img{
width:100%;
height:250px;
object-fit:cover;
}

.tipe-content{
padding:25px;
font-size:17px;
line-height:1.8;
}

.tipe-content h3{
margin-bottom:15px;
color:var(--primary);
font-size:22px;
}

/* ================= HERO SUPER BIG TEXT ================= */

.hero h1{
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero p{
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 400;
  letter-spacing: 2px;
}

/* Supaya benar-benar center dan full impact */
.hero-content{
  width: 100%;
  padding: 0 5%;
}
/* ================= HERO SUBTITLE ================= */

.hero-subtitle{
  display: block;
  font-size: clamp(16px, 2vw, 28px);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fbff00;
  margin-bottom: 15px;
}/* ================= NAVIGATION PREMIUM ================= */

/* Header Background Modern */
header{
  background: rgba(15, 46, 18, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  padding: 20px 8%;
  transition: 0.3s ease;
}

/* Logo */
header .logo{
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #00FF77 !important;
}

/* Nav Container */
header nav{
  display: flex;
  align-items: center;
}

/* Menu Link */
header nav a{
  font-size: 17px;
  font-weight: 600;
  margin-left: 35px;
  padding: 8px 14px;
  border-radius: 8px;
  color: #b7e610 !important;
  transition: 0.3s ease;
}

/* Hover Effect */
header nav a:hover{
  background: rgba(0,255,119,0.15);
  color: #c8ff00 !important;
  transform: translateY(-2px);
}

/* Active Link (kalau mau tambahkan class active di HTML) */
header nav a.active{
  background: #00FF77;
  color: #0f2e12 !important;
}
/* ================= NAVIGATION FONT UPDATE ================= */

header nav a{
  color: #ffffff !important;
  font-size: 19px;          /* diperbesar */
  font-weight: 700;         /* bold */
  letter-spacing: 1px;
  margin-left: 35px;
  transition: 0.3s ease;
}

/* Hover tetap putih tapi ada efek */
header nav a:hover{
  color: #c4ee09 !important;
  text-shadow: 0 0 8px rgba(255,255,255,0.6);
}
/* ================= LOGO UPDATE ================= */

header .logo{
  color: #ffffff !important;   /* jadi putih */
  font-size: 24px;             /* sedikit lebih besar */
  font-weight: 800;            /* lebih tebal */
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* ================= LOGO pir================= */
.logo img{
  width:80px;
  height:auto;
}
/* ================= keunggulan================ */
.keunggulan-title{
  font-size:48px;
  text-align:center;
  margin-bottom:40px;
  font-weight:700;
  color:var(--primary);
  text-transform:uppercase;
  letter-spacing:2px;
}

.keunggulan-grid{
  margin-top:20px;
}
/* ================= ikon fasilitas================ */
.icon{
  font-size:40px;
  color:var(--primary);
  margin-bottom:15px;
}
/* ================= spesifikasi teknis================ */
.spesifikasi-teknis{
  background:#3a8f2e;
  padding:70px 60px;
  margin-top:70px;
  border-radius:14px;
  color:#ffffff;
}

.spesifikasi-title{
  font-size:56px;          /* SUPER BESAR */
  font-weight:800;
  margin-bottom:45px;
  border-bottom:4px solid #ffffff;
  display:inline-block;
  padding-bottom:10px;
  color:#ffffff;           /* PUTIH */
  letter-spacing:1px;
}

.spesifikasi-grid{
  display:flex;
  justify-content:space-between;
  gap:60px;
  flex-wrap:wrap;
}

.spesifikasi-col{
  flex:1;
  min-width:280px;
}

.spesifikasi-col p{
  margin-bottom:22px;
  font-size:22px;          /* FONT LEBIH BESAR */
  font-weight:500;
}
/* lokasi */
.alamat-lokasi{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom:40px;
  font-size:20px;
  color:var(--primary);
}

.alamat-lokasi i{
  font-size:24px;
  color:var(--primary);
}

.lokasi-grid{
  margin-bottom:40px;
}

/* ============================= */
/* HERO ANIMATION (ZOOM HALUS)  */
/* ============================= */

@keyframes zoomHero {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero::before{
  animation: zoomHero 12s ease-in-out infinite alternate;
  transition: transform 8s ease-in-out;
}


/* ============================= */
/* GAMBAR TIPE RUMAH DINAMIS    */
/* ============================= */

.tipe-card img{
  width:100%;
  border-radius:12px;
  transition:0.5s ease;
}

.tipe-card img:hover{
  transform:scale(1.05);
}


/* ============================= */
/* MOBILE OPTIMIZATION          */
/* ============================= */

@media(max-width:768px){

  /* HERO lebih proporsional */
  .hero{
    height:80vh;
  }

  .hero::before{
    background-position:center center;
  }

  /* Gambar tipe rumah fokus & tidak gepeng */
  .tipe-card img{
    height:220px;
    object-fit:cover;
  }

  /* Card lebih interaktif saat disentuh */
  .card{
    transition:0.4s;
  }

  .card:active{
    transform:scale(0.97);
  }

}
