/* General Styles */
:root {
    --primary-green: #2E6A4B;
    --dark-green: #225039;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-gray: #666666;
    --accent-gold: #D4AF37;
    --white: #ffffff;
    --black: #000000;
    --red-hot: #EF4444;
    --emerald-green: #10B981;
    --blue-accent: #3B82F6;
    --purple-accent: #8B5CF6;
    --yellow-accent: #F59E0B;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background-color: rgba(46, 106, 75, 0.1);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(46, 106, 75, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.btn.primary-btn {
    background: linear-gradient(to right, var(--primary-green), var(--dark-green));
    color: var(--white);
    box-shadow: 0 10px 20px rgba(46, 106, 75, 0.2);
}

.btn.primary-btn:hover {
    background: linear-gradient(to right, var(--dark-green), var(--primary-green));
    box-shadow: 0 15px 30px rgba(46, 106, 75, 0.3);
    transform: translateY(-3px);
}

.btn.outline-btn {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn.outline-btn:hover {
    background-color: var(--white);
    color: var(--dark-gray);
    border-color: var(--white);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn.survey-btn {
    background: linear-gradient(to right, var(--yellow-accent), #FF8C00);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.btn.survey-btn:hover {
    background: linear-gradient(to right, #FF8C00, var(--yellow-accent));
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
    transform: translateY(-3px);
}

.btn.survey-btn-lg {
    padding: 18px 35px;
    font-size: 1.25rem;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.header .logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.header .logo img:hover {
    transform: scale(1.05);
}

.header .navbar ul {
    list-style: none;
    display: flex;
}

.header .navbar ul li {
    margin-left: 30px;
}

.header .navbar ul li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    transition: all 0.3s ease;
}

.header .navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-green), var(--emerald-green));
    transition: width 0.3s ease;
}

.header .navbar ul li a:hover {
    color: var(--primary-green);
}

.header .navbar ul li a:hover::after {
    width: 100%;
}

.header .whatsapp-btn {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 106, 75, 0.2);
}

.header .whatsapp-btn:hover {
    background-color: var(--dark-green);
    box-shadow: 0 8px 20px rgba(46, 106, 75, 0.3);
    transform: translateY(-2px);
}

.header .whatsapp-btn svg {
    margin-right: 8px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: left;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(34, 80, 57, 0.2));
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/Kavling_Nasira.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.75);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(46, 106, 75, 0.45));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding-top: 80px; /* To account for fixed header */
}

.hero-content .badge {
    background-color: rgba(46, 106, 75, 0.2);
    color: #90EE90; /* Light green for badge text */
    border: 1px solid rgba(144, 238, 144, 0.3);
    margin-bottom: 20px;
}

.hero-promo-wrapper {
    margin-bottom: 25px;
}

.hero-promo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #facc15;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

.hero-promo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M1,5 C30,2 60,8 99,4 M3,7 C33,4 63,10 97,6' stroke='%23facc15' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.hero-content h1 {
    font-family: 'Caveat', cursive;
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.hero-content h1 span.hero-yellow-text {
    color: #facc15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-buttons .btn svg {
    margin-right: 10px;
}

.hero-buttons .btn.primary-btn svg:last-child {
    margin-left: 10px;
    margin-right: 0;
}

.survey-cta-hero {
    background: linear-gradient(to right, rgba(46, 106, 75, 0.2), rgba(59, 130, 246, 0.2));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.survey-cta-hero h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.survey-cta-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.survey-cta-hero .btn {
    flex-shrink: 0;
    padding: 12px 25px;
    font-size: 1rem;
}


/* Stats Section */
.stats-section {
    background: linear-gradient(to bottom right, var(--light-gray), var(--white));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="pattern-circles" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="2" fill="%23e0e0e0"/></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(%23pattern-circles)"/></svg>');
    opacity: 0.05;
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-item .stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.stat-item:nth-child(1) .stat-icon {
    background: linear-gradient(to bottom right, rgba(46, 106, 75, 0.1), rgba(46, 106, 75, 0.2));
}
.stat-item:nth-child(1) .stat-icon svg {
    color: var(--primary-green);
}

.stat-item:nth-child(2) .stat-icon {
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.2));
}
.stat-item:nth-child(2) .stat-icon svg {
    color: var(--blue-accent);
}

.stat-item:nth-child(3) .stat-icon {
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.2));
}
.stat-item:nth-child(3) .stat-icon svg {
    color: var(--yellow-accent);
}

.stat-item:nth-child(4) .stat-icon {
    background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.2));
}
.stat-item:nth-child(4) .stat-icon svg {
    color: var(--purple-accent);
}

.stat-item .stat-icon svg {
    width: 45px;
    height: 45px;
    transition: transform 0.4s ease;
}

.stat-item:hover .stat-icon svg {
    transform: scale(1.15) rotate(5deg);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.stat-item:nth-child(1):hover h3 {
    color: var(--primary-green);
}
.stat-item:nth-child(2):hover h3 {
    color: var(--blue-accent);
}
.stat-item:nth-child(3):hover h3 {
    color: var(--yellow-accent);
}
.stat-item:nth-child(4):hover h3 {
    color: var(--purple-accent);
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Plots Section */
.plots-section {
    background-color: var(--white);
    padding: 100px 0;
}

.plots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.plot-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.plot-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plot-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.plot-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.plot-card:hover .plot-card-image img {
    transform: scale(1.1);
}

.plot-card-image .status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.plot-card-image .status-badge.available {
    background: linear-gradient(to right, var(--primary-green), var(--emerald-green));
}

.plot-card-image .status-badge.hot-deal {
    background: linear-gradient(to right, var(--red-hot), #FF6347);
}

.plot-card-content {
    padding: 30px;
}

.plot-card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.plot-card:hover .plot-card-content h3 {
    color: var(--primary-green);
}

.plot-card-content .location {
    display: flex;
    align-items: center;
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 20px;
}

.plot-card-content .location svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: var(--primary-green);
}

.plot-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.plot-detail-item {
    background-color: var(--light-gray);
    padding: 15px;
    border-radius: 10px;
}

.plot-detail-item span:first-child {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.plot-detail-item span:last-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.plot-price-total {
    background: linear-gradient(to right, rgba(46, 106, 75, 0.1), rgba(16, 185, 129, 0.1));
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid rgba(46, 106, 75, 0.2);
}

.plot-price-total span:first-child {
    display: block;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.plot-price-total span:last-child {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.plot-features {
    margin-bottom: 25px;
}

.plot-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.plot-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.plot-features-list .feature-badge {
    background-color: var(--light-gray);
    color: var(--text-gray);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.plot-features-list .feature-badge svg {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    color: var(--primary-green);
}

.plot-card .whatsapp-btn-card {
    width: 100%;
    background: linear-gradient(to right, var(--primary-green), var(--emerald-green));
    color: var(--white);
    padding: 15px 0;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 106, 75, 0.2);
}

.plot-card .whatsapp-btn-card:hover {
    background: linear-gradient(to right, var(--emerald-green), var(--primary-green));
    box-shadow: 0 8px 20px rgba(46, 106, 75, 0.3);
    transform: translateY(-2px);
}

.plot-card .whatsapp-btn-card svg {
    margin-right: 10px;
}

.survey-cta-plots {
    background: linear-gradient(to right, rgba(245, 158, 11, 0.1), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 900px;
    margin: 60px auto 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.survey-cta-plots h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.survey-cta-plots p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 30px;
}

.survey-cta-plots .btn svg {
    margin-right: 10px;
}

.survey-cta-plots .btn svg:last-child {
    margin-left: 10px;
    margin-right: 0;
}

/* About Section */
.about-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.about-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-item .about-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: rgba(46, 106, 75, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.about-item:hover .about-icon {
    background-color: rgba(46, 106, 75, 0.2);
}

.about-item .about-icon svg {
    width: 50px;
    height: 50px;
    color: var(--primary-green);
    transition: transform 0.4s ease;
}

.about-item:hover .about-icon svg {
    transform: scale(1.15) rotate(5deg);
}

.about-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.about-item p {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom right, var(--dark-gray), var(--black));
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="pattern-hexagons" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10 0L20 5L20 15L10 20L0 15L0 5Z" fill="%23333333"/></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(%23pattern-hexagons)"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section .section-header h2,
.contact-section .section-header p {
    color: var(--white);
}

.contact-section .badge {
    background-color: rgba(46, 106, 75, 0.2);
    color: #90EE90;
    border: 1px solid rgba(144, 238, 144, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info-card,
.contact-card {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.contact-info-card:hover,
.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-info-card h3,
.contact-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.contact-info-card .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.contact-info-card .contact-item svg {
    width: 22px;
    height: 22px;
    margin-right: 15px;
    color: var(--primary-green);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-card .btn {
    width: 100%;
    padding: 15px 0;
    font-size: 1.1rem;
}

.contact-card.survey-card {
    background: linear-gradient(to right, rgba(245, 158, 11, 0.1), rgba(255, 140, 0, 0.1));
    border-color: rgba(245, 158, 11, 0.2);
}

.contact-card.survey-card h3 svg {
    margin-right: 10px;
    color: var(--yellow-accent);
}

/* Footer */
.footer {
    background: linear-gradient(to bottom right, var(--black), var(--dark-gray));
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="pattern-triangles" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><polygon points="0,0 5,10 10,0" fill="%23222222"/></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(%23pattern-triangles)"/></svg>');
    opacity: 0.05;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;

    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(46, 106, 75, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.icon-box:hover {
    background-color: rgba(46, 106, 75, 0.4);
    transform: translateY(-3px);
}

.icon-box svg {
    width: 25px;
    height: 25px;
    color: var(--primary-green);
}

.footer-col h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a,
.footer-col ul li span {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col ul li svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    color: var(--primary-green);
}

.footer-col .btn {
    width: 100%;
    margin-top: 15px;
    padding: 10px 0;
    font-size: 1rem;
}

.footer-col .btn.outline-btn {
    border-color: rgba(46, 106, 75, 0.5);
    color: #90EE90;
}

.footer-col .btn.outline-btn:hover {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.footer-col .btn.survey-btn {
    background: transparent;
    border: 2px solid rgba(245, 158, 11, 0.5);
    color: var(--yellow-accent);
}

.footer-col .btn.survey-btn:hover {
    background-color: var(--yellow-accent);
    color: var(--white);
    border-color: var(--yellow-accent);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.copyright span {
    color: #90EE90;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 4.2rem;
    }
    .plots-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .header .navbar,
    .header .whatsapp-btn {
        display: none;
    }
    .header .container {
        justify-content: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .survey-cta-hero {
        flex-direction: column;
        text-align: center;
    }
    .survey-cta-hero .btn {
        width: 100%;
    }
    .section-header h2 {
        font-size: 2.5rem;
    }
    .section-header p {
        font-size: 1rem;
    }
    .stats-grid,
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .plot-card-content h3 {
        font-size: 1.5rem;
    }
    .plot-details {
        grid-template-columns: 1fr;
    }
    .plot-price-total span:last-child {
        font-size: 1.5rem;
    }
    .survey-cta-plots {
        padding: 30px;
    }
    .survey-cta-plots h3 {
        font-size: 1.8rem;
    }
    .survey-cta-plots p {
        font-size: 1rem;
    }
    .footer-col {
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-col ul {
        padding: 0;
    }
    .footer-col ul li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
    .hero-promo-text {
        font-size: 0.9rem;
        padding-bottom: 8px;
    }
    .hero-buttons .btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
    .plot-card {
        margin: 0 10px;
    }
}

/* Blog Page Styles */
.blog-hero-section {
    position: relative;
    padding: 160px 0 100px;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/Kavling_Nasira.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.45);
    z-index: -1;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.5), rgba(34, 80, 57, 0.5));
    z-index: -1;
}

.blog-hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 15px 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.blog-hero-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-image .blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(to right, var(--primary-green), var(--emerald-green));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    margin-bottom: 12px;
}

.blog-card-date {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.blog-card h3 a {
    color: var(--dark-gray);
    text-decoration: none;
}

.blog-card:hover h3 a {
    color: var(--primary-green);
}

.blog-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--dark-green);
}

.blog-read-more:hover svg {
    transform: translateX(5px);
}

/* Blog Detail Post Page */
.blog-post-page .header, .blog-list-page .header {
    background-color: rgba(255, 255, 255, 0.98);
}

.blog-main-content {
    padding: 150px 0 100px;
    background-color: #F8FAFC;
    min-height: 100vh;
}

.blog-article {
    max-width: 850px;
    background: var(--white);
    padding: 60px 80px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    margin: 0 auto;
}

.blog-back-btn {
    margin-bottom: 40px;
}

.blog-back-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-back-btn a svg {
    transition: transform 0.3s ease;
}

.blog-back-btn a:hover {
    color: var(--primary-green);
}

.blog-back-btn a:hover svg {
    transform: translateX(-4px);
}

.post-header {
    margin-bottom: 40px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 35px;
}

.post-header .badge {
    background-color: rgba(46, 106, 75, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(46, 106, 75, 0.2);
    font-weight: 700;
    padding: 6px 16px;
}

.post-header h1 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark-gray);
    margin: 20px 0;
    letter-spacing: -0.5px;
}

.post-meta {
    display: flex;
    gap: 25px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.meta-item svg {
    opacity: 0.6;
    width: 16px;
    height: 16px;
    color: var(--primary-green);
}

.post-content {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #374151;
}

.post-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin: 45px 0 20px;
    letter-spacing: -0.5px;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 35px 0 15px;
}

.post-content p {
    margin-bottom: 25px;
}

.post-content ul, .post-content ol {
    margin-bottom: 30px;
    padding-left: 24px;
}

.post-content li {
    margin-bottom: 12px;
}

.post-content blockquote {
    border-left: 4px solid var(--primary-green);
    background-color: rgba(46, 106, 75, 0.04);
    padding: 20px 30px;
    margin: 35px 0;
    font-style: italic;
    border-radius: 0 12px 12px 0;
    color: var(--dark-green);
    font-size: 1.2rem;
}

.post-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 35px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.post-share-cta {
    margin-top: 60px;
    padding: 40px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(46, 106, 75, 0.03), rgba(34, 80, 57, 0.08));
    border: 1px solid rgba(46, 106, 75, 0.12);
    text-align: center;
}

.post-share-cta h3 {
    font-size: 1.6rem;
    color: var(--dark-green);
    margin-bottom: 12px;
    font-weight: 800;
}

.post-share-cta p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.post-share-cta .cta-buttons {
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .blog-article {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 120px 0 70px;
    }
    .blog-hero-section h1 {
        font-size: 2.8rem;
    }
    .blog-article {
        padding: 40px 25px;
        border-radius: 15px;
    }
    .post-header h1 {
        font-size: 2.2rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
}

