/* ============================================
   Dominica AID Bank - Professional Bank Theme
   ============================================ */

:root {
    --primary: #1a6b3c;
    --primary-dark: #0e4d2a;
    --primary-light: #2a8f52;
    --secondary: #1b3a4b;
    --accent: #d4a843;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-light: #6b7280;
    --bg-light: #f8f9fa;
    --bg-section: #f0f4f1;
    --white: #ffffff;
    --border: #e5e7eb;
}

/* Base */
html { font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-dark);
    font-weight: 700;
}

a { color: var(--primary); transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

/* ---- Top Bar ---- */
.topbar {
    background: var(--secondary);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    padding: 0.5rem 0;
}

.topbar a,
.topbar .topbar-link,
.topbar button.topbar-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.8rem;
}

.topbar a:hover,
.topbar .topbar-link:hover {
    color: var(--accent);
}

/* ---- Main Header / Nav ---- */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1030;
}

.logo-img {
    height: 70px;
    width: auto;
}

.navbar { padding: 0.6rem 0; }

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.7rem 1rem !important;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 240px;
}

.dropdown-item {
    font-size: 0.88rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: var(--text-body);
}

.dropdown-item:hover {
    background: var(--bg-section);
    color: var(--primary);
}

.dropdown-header {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    padding: 0.5rem 1rem 0.25rem;
}

/* ---- Hero Section ---- */
.hero-section { margin-top: 0; position: relative; }

.hero-cta {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.hero-cta .btn {
    pointer-events: auto;
}

.hero-slide {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--secondary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.btn-hero {
    background: var(--accent);
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    border: none;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: #c49a38;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,168,67,0.4);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--accent);
}

/* ---- Quick Services ---- */
.quick-services {
    padding: 3rem 0;
    background: var(--white);
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.service-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(26,107,60,0.12);
    transform: translateY(-4px);
    text-decoration: none;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-section);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* ---- Home About Section ---- */
.home-about {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26,107,60,0.3);
}

.stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 1.3rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-top: 0.8rem;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 1s ease;
}

/* ---- Loan Products ---- */
.loan-products {
    padding: 5rem 0;
    background: var(--white);
}

.loan-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.loan-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.loan-card-img {
    height: 180px;
    overflow: hidden;
}

.loan-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.loan-card:hover .loan-card-img img {
    transform: scale(1.06);
}

.loan-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.loan-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: -2.2rem;
    position: relative;
    box-shadow: 0 4px 10px rgba(26,107,60,0.3);
}

.loan-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.loan-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex: 1;
}

.loan-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.loan-link:hover {
    color: var(--primary-dark);
}

/* ---- Special Programs ---- */
.special-programs {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
}

.program-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    color: var(--white);
    transition: all 0.3s;
}

.program-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-3px);
}

.program-card i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.program-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.program-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.program-card a {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
}

.program-card a:hover { color: #e8bc55; }

/* ---- Mission Section ---- */
.mission-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.mission-section .lead {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-dark);
    border-left: 4px solid var(--primary);
    padding-left: 1.2rem;
}

.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    height: 100%;
    transition: all 0.3s;
}

.value-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.value-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    display: block;
}

.value-card h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* ---- CTA Section ---- */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.cta-section p {
    opacity: 0.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.cta-buttons { margin-top: 1rem; }

/* ---- Page Header (inner pages) ---- */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 3rem 0;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-header .breadcrumb {
    font-size: 0.85rem;
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.page-header .breadcrumb-item a:hover { color: var(--white); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ---- Page Content ---- */
.page-content {
    padding: 3rem 0 4rem;
}

.content-body h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-section);
}

.content-body h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.content-body ul {
    padding-left: 1.2rem;
}

.content-body li {
    margin-bottom: 0.4rem;
    padding-left: 0.3rem;
}

.content-body .lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 400;
}

/* ---- Sidebar ---- */
.sidebar-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
}

.sidebar-card h5, .sidebar-card h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.sidebar-card p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.8);
    padding: 3.5rem 0 1.5rem;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.footer-contact i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 1.5rem 0;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.footer-bottom-link {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.footer-bottom-link:hover { color: var(--accent); }

/* ---- Admin Table ---- */
.admin-table thead th {
    background: var(--bg-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    border-bottom: 2px solid var(--border);
}

.admin-table td {
    vertical-align: middle;
    font-size: 0.9rem;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {

    .hero-slide { min-height: 400px; }
    .section-title { font-size: 1.8rem; }
    .topbar .col-md-8,
    .topbar .col-md-4 { text-align: center !important; }
}

@media (max-width: 767px) {

    .hero-slide { min-height: 350px; padding: 2rem 0; }
    .quick-services { margin-top: 0; padding: 2rem 0; }
    .home-about, .loan-products, .special-programs, .mission-section { padding: 3rem 0; }
    .stat-number { font-size: 1.4rem; }
    .stat-icon-wrap { width: 40px; height: 40px; font-size: 1.1rem; }
    .topbar { display: none; }
}

/* ---- Team Cards ---- */
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.team-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.team-photo {
    height: 390px;
    overflow: hidden;
    background: var(--bg-section);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.4s;
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}

.team-info {
    padding: 1.2rem 1rem;
}

.team-info h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.team-info p {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

/* ---- Board of Directors Cards ---- */
.board-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s;
}

.board-card:hover {
    transform: translateY(-4px);
}

.board-photo {
    width: 180px;
    height: 220px;
    border-radius: 50% / 45%;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    border: 4px solid var(--border);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.board-card:hover .board-photo {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(26,107,60,0.2);
}

.board-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.4s;
}

.board-card:hover .board-photo img {
    transform: scale(1.05);
}

.board-card h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: var(--text-dark);
}

.board-card p {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

/* ---- Annual Report List ---- */
.report-list {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.report-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.2rem;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.report-item:last-child {
    border-bottom: none;
}

.report-item:hover {
    background: var(--bg-section);
    text-decoration: none;
}

.report-item > .bi-file-earmark-pdf {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.report-name {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
    flex: 1;
}

.report-item:hover .report-name {
    color: var(--primary);
}

.report-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.report-type {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #fce4ec;
    color: #c62828;
    padding: 2px 6px;
    border-radius: 3px;
}

.report-size {
    font-size: 0.78rem;
    color: var(--text-light);
    min-width: 55px;
    text-align: right;
}

.report-item > .bi-download {
    color: var(--text-light);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.report-item:hover > .bi-download {
    color: var(--primary);
}

@media (max-width: 575px) {
    .report-meta { display: none; }
}

/* ---- News/Article Cards ---- */
.article-card {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.2s;
}

.article-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.article-date {
    flex-shrink: 0;
    width: 65px;
    text-align: center;
    padding: 0.5rem;
    background: var(--bg-section);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.article-month {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.article-body h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.article-body h4 a {
    color: var(--text-dark);
    text-decoration: none;
}

.article-body h4 a:hover {
    color: var(--primary);
}

.article-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.article-read-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

/* ---- Accordion (FAQs) ---- */
.accordion-button:not(.collapsed) {
    background-color: var(--bg-section);
    color: var(--primary-dark);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(26,107,60,0.15);
}

/* ---- Property Listings ---- */
.property-map-section {
    padding: 2rem 0 0;
    background: var(--bg-light);
}

.property-filters {
    padding: 1.5rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.filter-form .form-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.property-listings {
    padding: 2.5rem 0 4rem;
}

.property-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
    cursor: pointer;
}

.property-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-section);
}

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

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

.property-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    font-size: 3rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
}

.property-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.badge-type {
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-auction {
    background: #dc3545;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-featured {
    background: var(--accent);
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.property-info {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.property-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.property-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.property-title a:hover {
    color: var(--primary);
}

.property-location {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.property-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    flex-grow: 1;
    line-height: 1.5;
}

.property-meta {
    display: flex;
    gap: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-light);
}

.property-meta span i {
    color: var(--primary);
    margin-right: 3px;
}

/* Property Detail */
.property-detail {
    padding: 3rem 0 4rem;
}

.detail-image-placeholder {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 4rem;
}

.detail-image-placeholder p {
    font-size: 1rem;
    margin-top: 0.5rem;
}

.detail-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-card {
    text-align: center;
    background: #e8f5e9;
    border-color: var(--primary);
}

.property-details-table th {
    width: 40%;
    color: var(--text-light);
    font-weight: 500;
}

/* ---- Login Page ---- */
.login-page {
    padding: 3rem 0 4rem;
}

.login-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 440px;
    margin: 0 auto;
}

.login-card-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.login-card-header h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
}

.login-card-header p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    text-align: center;
    margin: 0.3rem 0 0;
}

.login-card-body {
    padding: 2rem;
}
