:root {
    --primary-green: #1a5336;
    --accent-green: #2ecc71;
    --bg-faded: #f8fafc;
    --text-main: #1e293b;
    --text-light: #94a3b8;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* 1. NAVBAR STICKY */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.navbar-brand {
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--primary-green) !important;
    font-size: 1.5rem;
}

.navbar-toggler {
    border: 0;
    padding: 0;
    box-shadow: none !important;
}

.navbar-toggler i {
    font-size: 1.8rem;
    color: var(--text-main);
}

.nav-link {
    font-weight: 700;
    color: var(--text-main) !important;
    margin: 0 12px;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

/* 2. HERO SECTION */
.hero-section {
    min-height: 100vh;
    height: auto;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)),
        url('../img/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--accent-green);
}

.hero-slogan {
    font-size: 1.35rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 1;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description-container {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-align: center;
    /* Or justify if preferred */
}

.hero-description:last-child {
    margin-bottom: 0;
}

/* 3. PROPERTY SECTION */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--primary-green);
    margin-bottom: 3rem;
    text-align: center;
}

.property-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid #7af475;
    transition: var(--transition-smooth);
    height: 100%;
    text-align: center;
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-green);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.btn-custom {
    padding: 12px 30px;
    border-radius: 15px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-primary-green {
    background: var(--primary-green);
    color: white;
    border: none;
}

.btn-primary-green:hover {
    background: #14412a;
    color: white;
    transform: scale(1.05);
}

.btn-proposal {
    background: #f1f5f9;
    color: var(--primary-green);
    border: 2px dashed var(--primary-green);
    margin-top: 2rem;
    display: inline-block;
    padding: 16px 40px;
}

.btn-proposal:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

/* 4. ABOUT SECTION */
.about-section {
    background: var(--bg-faded);
}

.about-box {
    background: white;
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
}

.text-primary-green {
    color: var(--primary-green);
}

/* 5. CONTACT SECTION */
.contact-info-box {
    background: var(--primary-green);
    color: white;
    border-radius: 30px;
    padding: 3rem;
    height: 100%;
}

.map-wrapper {
    background: #f1f5f9;
    border-radius: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* 6. FOOTER */
.footer {
    background: #0f172a;
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-title {
    color: white;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer h6 {
    color: white;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.social-icons a {
    font-size: 1.5rem;
    color: white;
    margin-right: 15px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--accent-green);
    transform: translateY(-5px);
}

.admin-btn-footer {
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    border: 1px solid white;
    transition: var(--transition-smooth);
}

.admin-btn-footer:hover {
    background: white;
    color: #0f172a !important;
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    padding-top: 30px;
    font-size: 0.85rem;
    text-align: center;
}

.copyright-bar a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.copyright-bar a:hover {
    color: var(--accent-green);
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .about-box {
        padding: 2rem;
    }

    .property-card {
        padding: 2rem;
    }
}


/* PAGE HEADER */
.page-header {
    background: linear-gradient(rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.75)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1600') center/cover no-repeat;
    padding: 120px 0 100px;
    color: white;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.page-header h1 span {
    color: var(--accent-green);
}

.page-header .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* FILTER SECTION */
.filter-section {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    margin-top: -80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.form-label-custom {
    font-size: 0.7rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-control-custom {
    background: #f8fafc;
    border: 1.5px solid #eef2f6;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    background: white;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 5px rgba(26, 83, 54, 0.1);
}

/* LAND CARD */
.land-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.land-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-green);
}

.land-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.land-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.land-card:hover .land-img-wrapper img {
    transform: scale(1.12);
}

.price-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--primary-green);
    color: white;
    padding: 10px 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.5px;
}

.land-card .badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 10px;
}

/* PAGINATION */
.custom-pagination .page-link {
    border: none;
    color: var(--text-main);
    font-weight: 700;
    margin: 0 6px;
    border-radius: 12px !important;
    padding: 12px 20px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.custom-pagination .page-link:hover {
    background: var(--bg-faded);
    transform: translateY(-2px);
}

.custom-pagination .page-item.active .page-link {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 8px 20px rgba(26, 83, 54, 0.2);
}

.custom-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* SPINNER */
.spinner {
    width: 56px;
    height: 56px;
    border: 6px solid #f0f0f0;
    border-top: 6px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Text accents */
.text-accent-green {
    color: var(--accent-green);
}

/* PPP PAGE HEADER (Darker theme for premium feel) */
.ppp-page-header {
    background: linear-gradient(rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.75)),
        url('../img/mainbg.png') center/cover no-repeat;
    padding: 140px 0 120px;
    color: white;
    text-align: center;
    position: relative;
}

/* PPP FILTER SECTION */
.ppp-filter-section {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    margin-top: -90px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

/* PPP CARD SPECIFICS */
.ppp-card .land-img-wrapper {
    height: 220px;
    /* Slightly taller for PPP assets */
}

.type-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* PROPOSAL PAGE HEADER */
.proposal-page-header {
    background: linear-gradient(rgba(26, 83, 54, 0.92), rgba(26, 83, 54, 0.85)),
        url('../img/mainbg.png') center/cover no-repeat;
    padding: 140px 0 120px;
    color: white;
    text-align: center;
    position: relative;
}

.proposal-page-header h1 span {
    color: var(--accent-green);
}

/* PROPOSAL FORM CARD */
.proposal-form-container {
    max-width: 900px;
    margin: -90px auto 120px;
    position: relative;
    z-index: 10;
}

.proposal-card {
    background: white;
    padding: 4.5rem;
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.proposal-card:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

/* FORM STYLES - REUSED & ENHANCED */
.form-label-custom {
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.form-control-custom {
    background: #f8fafc;
    border: 2px solid #eef2f6;
    border-radius: 16px;
    padding: 1rem 1.2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    background: white;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 5px rgba(26, 83, 54, 0.1);
}

/* FILE UPLOAD */
.file-upload-wrapper {
    border: 2px dashed #cbd5e1;
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    background: #f8fafc;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
}

.file-upload-wrapper:hover {
    border-color: var(--primary-green);
    background: #f0fdf4;
    transform: translateY(-4px);
}

.file-upload-wrapper i {
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.file-upload-wrapper:hover i {
    transform: scale(1.1);
}

/* SUBMIT BUTTON */
.btn-submit-proposal {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1.3rem;
    border-radius: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 1rem;
    width: 100%;
    transition: var(--transition-smooth);
    margin-top: 2rem;
}

.btn-submit-proposal:hover {
    background: #14412a;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(26, 83, 54, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .proposal-card {
        padding: 2.5rem;
        margin: -50px auto 80px;
    }

    .proposal-form-container {
        padding: 0 1rem;
    }
}

/* ADMIN LOGIN FULL SCREEN */
.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    background: var(--bg-faded);
}

.admin-login-left {
    flex: 1;
    background: linear-gradient(rgba(26, 83, 54, 0.7), rgba(26, 83, 54, 0.6)),
        url('../img/mainbg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 2rem;
}

.admin-login-left .overlay-content {
    text-align: center;
    max-width: 500px;
}

.admin-login-left h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.admin-login-left h1 span {
    color: var(--accent-green);
}

.admin-login-left p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.admin-login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: white;
}

.admin-login-card {
    width: 100%;
    max-width: 480px;
    background: white;
    padding: 3.5rem;
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-login-card .brand-icon {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.admin-login-card h2 {
    color: var(--primary-green);
    letter-spacing: -1.5px;
    font-weight: 900;
}

.admin-login-card .form-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #64748b;
}

.admin-login-card .form-control {
    border-radius: 16px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    border: 2px solid #eef2f6;
    background: #f8fafc;
}

.admin-login-card .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 5px rgba(26, 83, 54, 0.1);
}

.btn-login-admin {
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 18px;
    padding: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-login-admin:hover {
    background: #14412a;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 83, 54, 0.2);
}

/* Mobile: Stack vertically, hide image */
@media (max-width: 992px) {
    .admin-login-left {
        display: none;
    }

    .admin-login-right {
        flex: 1;
    }

    .admin-login-wrapper {
        background: white;
    }
}

/* ADMIN NAVBAR & SIDEBAR */
.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.navbar-dark .nav-link:hover {
    color: var(--accent-green) !important;
}

.list-group-item.bg-dark {
    transition: var(--transition-smooth);
}

.list-group-item.bg-dark:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    padding-left: 1.5rem !important;
}

.offcanvas {
    width: 280px !important;
}

.bg-dark {
    background-color: #0f172a !important;
}

/* Admin Content Padding (for fixed navbar) */
.admin-body-content {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--bg-faded);
}

/* ADMIN MANAGEMENT PAGES - ENHANCEMENTS */
.admin-management-header {
    padding-top: 2rem;
}

.admin-management-header .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -2px;
}

.admin-management-header .section-title span {
    color: var(--accent-green);
}

/* FILTER SECTION REFINEMENT */
.filter-section.about-box {
    background: white;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* LAND CARD STATUS BADGE (ADMIN) */
.land-status-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.status-active {
    background: #e6f7ed;
    color: var(--primary-green);
}

.status-pending {
    background: #fff9e6;
    color: #b7791f;
}

.status-reserved {
    background: #fef2f2;
    color: #b02b2b;
}

/* CARD IMAGE WRAPPER */
.land-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.land-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.land-card:hover .land-img-wrapper img {
    transform: scale(1.12);
}

/* CARD ACTIONS */
.card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eef2f6;
}

.btn-edit {
    background: var(--accent-green);
    color: white;
}

.btn-edit:hover {
    background: #27b35e;
}

/* PAGINATION REFINEMENT */
.custom-pagination .page-link {
    border-radius: 12px !important;
    padding: 12px 20px;
    margin: 0 6px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.custom-pagination .page-item.active .page-link {
    background: var(--primary-green);
    border-color: var(--primary-green);
    box-shadow: 0 8px 20px rgba(26, 83, 54, 0.2);
}

/* LAND CARD - ADMIN ENHANCED */
.land-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.land-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-green);
}

.land-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.land-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.land-card:hover .land-img-wrapper img {
    transform: scale(1.12);
}

/* STATUS BADGE - FIXED & IMPROVED */
.land-status-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.status-active {
    background: #d4f8e8;
    color: #0d8b4f;
}

.status-pending {
    background: #fff4d6;
    color: #b7791f;
}

.status-reserved {
    background: #fde2e2;
    color: #c22d2d;
}

.status-inactive {
    background: #fde2e2;
    color: #c22d2d;
}

/* BUTTONS ON CARD */
.btn-outline-custom {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 16px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.btn-primary-custom {
    background: var(--primary-green);
    color: white;
    border-radius: 16px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-primary-custom:hover {
    background: #14412a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 83, 54, 0.2);
}

/* PROPOSAL ADMIN PAGE */
.proposal-plate {
    background: white;
    border-radius: 28px;
    padding: 1.5rem 2rem;
    border: 1px solid #eef2f6;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.proposal-plate:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-green);
}

.status-pill {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.status-pending {
    background: #fff4d6;
    color: #b7791f;
}

.status-accepted {
    background: #d4f8e8;
    color: #0d8b4f;
}

.status-rejected {
    background: #fde2e2;
    color: #c22d2d;
}

.time-ago-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    display: block;
    margin-top: 0.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* ACTION BUTTONS */
.btn-action {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.btn-accept {
    background: var(--accent-green);
    color: white;
}

.btn-accept:hover {
    background: #27b35e;
    transform: scale(1.05);
}

.btn-reject {
    background: #fee2e2;
    color: #c22d2d;
}

.btn-reject:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.05);
}

/* ADMIN LAND REGISTRATION FORM - REUSABLE COMPONENTS */

.form-container-optimized {
    max-width: 1200px;
    padding: 0 1.5rem 140px;
}

.data-plate {
    background: white;
    border-radius: 40px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid #eef2f6;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.plate-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 1.5rem;
}

.plate-number-badge {
    background: var(--primary-green);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.input-group-custom {
    position: relative;
}

.input-group-custom label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.75rem;
    display: block;
}

.input-group-custom input,
.input-group-custom textarea,
.input-group-custom select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #eef2f6;
    border-radius: 18px;
    background: #f8fafc;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.input-group-custom input:focus,
.input-group-custom textarea:focus,
.input-group-custom select:focus {
    border-color: var(--primary-green);
    background: white;
    box-shadow: 0 0 0 5px rgba(26, 83, 54, 0.1);
    outline: none;
}

.input-group-custom textarea {
    min-height: 100px;
    resize: vertical;
}

.upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    background: #f8fafc;
    transition: var(--transition-smooth);
}

.upload-zone:hover {
    border-color: var(--primary-green);
    background: #f0fdf4;
}

.upload-zone:hover i {
    transform: scale(1.1);
}

#preview-container img {
    max-width: 150px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

#preview-container img:hover {
    transform: scale(1.05);
}

.sticky-footer-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.25rem 0;
    border-top: 1px solid #eef2f6;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.plate-number-badge {
    background: var(--primary-green, #1a5336);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.upload-zone {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-zone:hover {
    border-color: var(--primary-green, #1a5336);
    background: #ffffff;
}

.plate-number-badge {
    background: var(--primary-green, #1a5336);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.upload-zone {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-zone:hover {
    border-color: var(--primary-green, #1a5336);
    background: #ffffff;
}

/* Custom Radio Pills (Yes/No choices) */
.choice-pill-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.choice-pill {
    cursor: pointer;
}

.choice-pill input {
    display: none;
}

.choice-pill span {
    display: block;
    text-align: center;
    padding: 12px 28px;
    border-radius: 16px;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    min-width: 110px;
}

.choice-pill input:checked+span {
    background: #e6f7ed;
    color: var(--primary-green);
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(26, 83, 54, 0.15);
}

.choice-pill span:hover:not(:has(input:checked)) {
    background: #eef2f6;
}

/* Scale Selector (Low / Moderate / High) */
.scale-selector {
    display: flex;
    background: #f8fafc;
    padding: 6px;
    border-radius: 18px;
    gap: 6px;
}

.scale-item {
    flex: 1;
    text-align: center;
}

.scale-item input {
    display: none;
}

.scale-item span {
    display: block;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    cursor: pointer;
    color: #64748b;
    transition: var(--transition-smooth);
}

.scale-item input:checked+span.low {
    background: #fee2e2;
    color: #dc2626;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.scale-item input:checked+span.mod {
    background: #fef3c7;
    color: #d97706;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.2);
}

.scale-item input:checked+span.high {
    background: #dcfce7;
    color: #16a34a;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
}

.scale-item span:hover:not(:has(input:checked)) {
    background: #eef2f6;
}

/* Sub-topic divider (used in PPP form) */
.sub-topic-divider {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-green);
    background: #e6f7ed;
    padding: 10px 20px;
    border-radius: 12px;
    margin: 2.5rem 0 1.5rem 0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Universal Glowing White Asset Card Style */
.category-card {
    background: white;
    border: 2px solid var(--primary-green);
    box-shadow: 0 0 20px rgba(26, 83, 54, 0.15);
    /* Green glow */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(1.05);
    /* Persistent large size */
}

.category-card h5 {
    color: var(--text-main) !important;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.category-card p {
    color: #64748b !important;
    /* Muted dark gray */
}

.category-card .badge {
    background: var(--primary-green) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(26, 83, 54, 0.2);
}

.category-card:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 0 30px rgba(26, 83, 54, 0.3);
    /* Stronger glow */
    background: #fcfcfc;
}

/* HERO TABS & GLASSMORPHISM */
.custom-hero-tabs {
    position: relative;
    z-index: 10;
    margin-bottom: -25px !important;
    /* Overlap the panel */
}

.custom-hero-tabs .nav-link {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50px;
    padding: 12px 30px;
    margin: 0 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.custom-hero-tabs .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white !important;
}

.custom-hero-tabs .nav-link.active {
    background: var(--primary-green) !important;
    border-color: var(--primary-green);
    color: white !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.glass-panel {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* HERO SUB CARDS (Land & Proposals) */
.hero-sub-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* Removed transition and hover effects as requested */
}

/* Removed ::before hover effect */

.hero-sub-card .icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-green);
}

.badge-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 800;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.nav-link.active .badge-count {
    background: white;
    color: var(--primary-green);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ANIMATIONS */
.tab-pane.fade {
    transition: opacity 0.3s ease;
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE & MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-slogan {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .custom-hero-tabs {
        margin-bottom: 1.5rem !important;
    }

    .custom-hero-tabs .nav-link {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin: 3px;
    }

    .glass-panel {
        padding: 1.2rem !important;
        background: rgba(0, 0, 0, 0.6);
        /* Darker background for better readability on mobile */
    }

    /* Minimal Land View on Mobile */
    #land-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem !important;
    }

    #land-content .lead {
        font-size: 0.9rem;
        margin-bottom: 1rem !important;
        display: none;
        /* Hide description on mobile for minimal view */
    }

    .hero-sub-card {
        padding: 1rem;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        text-align: left;
    }

    .hero-sub-card .icon-box {
        margin-right: 1rem;
        margin-bottom: 0 !important;
    }

    .hero-sub-card h5 {
        font-size: 1rem;
        margin-bottom: 0;
        flex-grow: 1;
    }

    .hero-sub-card p {
        display: none;
        /* Hide sub-description on mobile */
    }

    .hero-sub-card .btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
}