/* ===================================
   GreenGold Estates Landing Page
   Premium Land Sales CSS
   =================================== */

:root {
    --primary: #16a34a;
    --primary-dark: #15803d;
    --primary-light: #22c55e;
    --primary-lighter: #4ade80;
    --secondary: #0f172a;
    --accent: #eab308;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-green: 0 4px 20px rgba(22, 163, 74, 0.3);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

/* Gradient Text */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
    background: var(--gradient-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Section Styles */
section {
    padding: 70px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(22, 163, 74, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-header p {
    font-size: 16px;
    color: var(--gray-500);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-right: 40px;
}

.site-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    color: var(--white);
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar.scrolled .logo {
    color: var(--gray-900);
}

.logo .logo-text span {
    color: var(--white);
}

.navbar.scrolled .logo .logo-text span {
    color: var(--primary);
}

.logo i {
    font-size: 28px;
    color: var(--primary-light);
}

.logo strong {
    color: var(--primary-light);
}

.btn-outline-nav {
    background: linear-gradient(135deg, #d4a017 0%, #c5941a 50%, #b8860b 100%);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-outline-nav:hover {
    background: linear-gradient(135deg, #e6b422 0%, #d4a017 50%, #c5941a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

.navbar.scrolled .btn-outline-nav {
    background: linear-gradient(135deg, #d4a017 0%, #c5941a 50%, #b8860b 100%);
    color: var(--white);
    border: none;
}

.navbar.scrolled .btn-outline-nav:hover {
    background: linear-gradient(135deg, #e6b422 0%, #d4a017 50%, #c5941a 100%);
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--gray-600);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
    color: var(--gray-800);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/background-overa.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 90, 40, 0.92) 0%, rgba(20, 83, 45, 0.88) 50%, rgba(21, 128, 61, 0.85) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #fef08a 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 36px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-card img {
    width: 550px;
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.hero-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: var(--white);
}

.property-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.hero-card-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-card-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.hero-card-content .price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-light);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 20px;
    color: var(--primary);
}

.floating-card span {
    font-weight: 600;
    font-size: 13px;
    color: var(--gray-800);
    white-space: nowrap;
}

.floating-card.card-1 {
    top: 340px;
    right: 40px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 120px;
    left: 20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: var(--white);
}

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

.service-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card.featured {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
    border-color: transparent;
}

.service-card.featured * {
    color: var(--white);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, 0.1);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 28px;
    color: var(--primary);
}

.service-card.featured .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.service-card.featured .service-link {
    color: var(--white);
}

.service-link:hover {
    gap: 10px;
}

/* ===================================
   Properties Section
   =================================== */
.properties {
    background: var(--gray-50);
}

.property-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

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

.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.property-badge.hot {
    background: var(--danger);
}

.favorite-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.favorite-btn:hover {
    background: var(--danger);
    color: var(--white);
}

.property-content {
    padding: 24px;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.property-location i {
    color: var(--primary);
}

.property-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.property-features {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500);
}

.property-features i {
    color: var(--primary);
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.property-price .price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.property-price .price-note {
    display: block;
    font-size: 12px;
    color: var(--gray-400);
}

.properties-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===================================
   About Compact Section
   =================================== */
.about-compact {
    padding: 50px 0;
    background: var(--gray-50);
}

.about-compact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    max-width: 500px;
}

.about-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.about-text p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.about-highlights {
    display: flex;
    gap: 20px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 100px;
}

.highlight-item i {
    font-size: 24px;
    color: var(--primary);
}

.highlight-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    background: var(--white);
    padding: 60px 0;
}

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

.testimonial-card {
    padding: 28px 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
    background: var(--gradient);
    border: none;
}

.testimonial-card.featured * {
    color: var(--white);
}

.testimonial-rating {
    margin-bottom: 14px;
}

.testimonial-rating i {
    color: var(--accent);
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 18px;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
}

.author-info span {
    font-size: 12px;
    color: var(--gray-500);
}

.testimonial-card.featured .author-info h4,
.testimonial-card.featured .author-info span {
    color: var(--white);
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
    padding: 60px 0;
}

.cta .container {
    position: relative;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

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

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.contact-items {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(22, 163, 74, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: var(--primary);
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-xl);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #14532d;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--white);
    color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.footer-contact ul li i {
    color: var(--primary-light);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #14532d 0%, #15803d 100%);
    transform: translateY(-3px);
}

/* ===================================
   Login Modal
   =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.modal-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--gray-500);
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

.login-modal {
    padding: 40px;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.login-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.login-header p {
    font-size: 14px;
    color: var(--gray-500);
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.login-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 15px;
    transition: all 0.3s;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
}

.remember-me input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.forgot-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.login-divider span {
    padding: 0 16px;
    font-size: 13px;
    color: var(--gray-400);
}

.login-alt {
    text-align: center;
}

.login-alt p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.login-alt a {
    color: var(--primary);
    font-weight: 600;
}

.login-alt a:hover {
    text-decoration: underline;
}

/* ===================================
   Inquiry Modal
   =================================== */
.inquiry-modal {
    padding: 40px;
    max-width: 450px;
}

.inquiry-header {
    text-align: center;
    margin-bottom: 24px;
}

.inquiry-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.inquiry-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
}

.inquiry-plot-details {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 24px;
}

.inquiry-plot-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.inquiry-plot-details p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inquiry-plot-details p i {
    color: var(--primary);
    width: 16px;
}

.inquiry-plot-details .available-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
}

.inquiry-form .form-group {
    margin-bottom: 16px;
}

.inquiry-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.inquiry-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 15px;
    transition: all 0.3s;
}

.inquiry-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.inquiry-success {
    text-align: center;
    padding: 20px 0;
}

.inquiry-success i {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 16px;
}

.inquiry-success h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.inquiry-success p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Inquiry count badge */
.inquiry-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.inquiry-count i {
    color: var(--primary);
}

/* ===================================
   Properties Loading State
   =================================== */
.properties-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.properties-loading i {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

.properties-loading p {
    font-size: 16px;
}

.properties-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.properties-empty i {
    font-size: 60px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.properties-empty h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.properties-empty p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

.property-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.property-tag-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(22, 163, 74, 0.1);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.property-tag-item i {
    font-size: 10px;
}

/* ===================================
   Parcel Cards
   =================================== */
.parcel-card {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.parcel-card:hover {
    border-color: var(--primary);
}

.parcel-badge {
    background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%) !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.parcel-badge i {
    font-size: 12px;
}

.parcel-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.parcel-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
}

.stat-available {
    color: var(--primary);
}

.stat-available i {
    color: var(--primary);
}

.stat-reserved {
    color: var(--warning);
}

.stat-reserved i {
    color: var(--warning);
}

.stat-sold {
    color: var(--gray-500);
}

.stat-sold i {
    color: var(--gray-500);
}

.parcel-card .property-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.parcel-card .property-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.parcel-card .property-price .price-note {
    font-size: 11px;
    color: var(--gray-500);
    order: -1;
}

.parcel-card .property-price .price {
    font-size: 20px;
}

.parcel-card .btn {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero p {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-compact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-highlights {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        font-size: 20px;
        color: var(--gray-800);
    }
    
    .nav-actions .btn,
    .nav-actions .btn-outline-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 100px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .hero-stats .stat {
        flex: 1;
        text-align: center;
    }
    
    .hero-stats .stat h3 {
        font-size: 20px;
    }
    
    .hero-stats .stat p {
        font-size: 11px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-social,
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .about-highlights {
        gap: 12px;
    }
    
    .highlight-item {
        padding: 14px;
        min-width: 80px;
    }
    
    .highlight-item i {
        font-size: 20px;
    }
    
    .highlight-item span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        padding: 14px 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        top: 20px;
        right: 20px;
    }
    
    .experience-badge .number {
        font-size: 28px;
    }
}
