:root {
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --gold-dark: #A8892F;
    --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8D5A3 50%, #C9A84C 100%);
    --bg-dark: #0A0A0F;
    --bg-card: #12121E;
    --bg-card-hover: #1A1A2E;
    --text-light: #F5F0E8;
    --text-gray: #9A9590;
    --border-color: #2A2A3A;
    --shadow: 0 20px 60px rgba(0,0,0,0.6);
    --shadow-gold: 0 0 60px rgba(201,168,76,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    scroll-behavior: smooth;
    line-height: 1.7;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--bg-dark);
    padding: 80px 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(10,10,15,0.2) 0%, rgba(10,10,15,0.5) 60%, rgba(10,10,15,0.85) 100%),
        url('https://springfieldproperties.ae/wp-content/uploads/2025/10/Palm-Central-Private-Residences-by-Nakheel-01.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201,168,76,0.12);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-size: 2.4rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat .label {
    color: var(--text-gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--text-gray);
    animation: bounce 2s infinite;
    cursor: pointer;
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== NAV ===== */
.nav-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10,10,15,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.08);
    padding: 0 20px;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-light);
}

.nav-logo span {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-logo span strong {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 5px;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: var(--text-gray);
    text-decoration: none;
    padding: 8px 18px;
    font-size: 0.85rem;
    transition: 0.3s;
    border-radius: 8px;
    font-weight: 500;
}

.nav-links li a:hover {
    color: var(--text-light);
    background: rgba(201,168,76,0.08);
}

.nav-links li a.active {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold-gradient);
    color: var(--bg-dark) !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.3) !important;
    background: var(--gold-gradient) !important;
    color: var(--bg-dark) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== SECTIONS ===== */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-header h2 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.section-header p {
    color: var(--text-gray);
    max-width: 550px;
    margin: 15px auto 0;
    font-weight: 300;
}

/* ===== FILTER ===== */
.filter-container {
    background: var(--bg-card);
    padding: 25px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.filter-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    color: var(--text-gray);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group label i {
    color: var(--gold);
    margin-right: 6px;
}

.filter-group select,
.filter-group input {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
    width: 100%;
    outline: none;
}

.filter-group select:focus,
.filter-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.08);
}

.filter-group select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.filter-actions {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: flex-end;
}

.search-btn,
.reset-btn {
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    white-space: nowrap;
}

.search-btn {
    background: var(--gold-gradient);
    color: var(--bg-dark);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.25);
}

.reset-btn {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
}

.reset-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ===== ADVISOR ===== */
.advisor-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 50px 20px;
}

.advisor-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.advisor-image {
    flex: 0 0 180px;
}

.advisor-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    object-fit: cover;
    box-shadow: 0 0 40px rgba(201,168,76,0.15);
}

.advisor-info {
    flex: 1;
    min-width: 280px;
}

.advisor-info .badge {
    display: inline-block;
    background: rgba(201,168,76,0.12);
    color: var(--gold);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: 1px solid rgba(201,168,76,0.2);
}

.advisor-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 8px 0 4px;
}

.advisor-info .title {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.95rem;
}

.advisor-info p {
    color: var(--text-gray);
    margin: 12px 0 18px;
    max-width: 500px;
    font-weight: 300;
}

.advisor-contacts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.advisor-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.advisor-contacts .btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.advisor-contacts .btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

.advisor-contacts .btn-telegram {
    background: #0088cc;
    color: #fff;
}

.advisor-contacts .btn-telegram:hover {
    background: #006699;
    transform: translateY(-2px);
}

.advisor-contacts .btn-phone {
    background: var(--gold-gradient);
    color: var(--bg-dark);
}

.advisor-contacts .btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

/* ===== AREAS ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.area-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.area-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.area-card .area-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 0;
}

.area-card:hover .area-bg {
    transform: scale(1.08);
}

.area-card .area-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10,10,15,0.2) 0%, rgba(10,10,15,0.85) 100%);
    z-index: 1;
}

.area-card .area-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
}

.area-card .area-content .area-icon {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 6px;
}

.area-card .area-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.area-card .area-content .area-count {
    color: var(--text-gray);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.area-card .area-content .area-count span {
    color: var(--gold);
    font-weight: 700;
}

.area-card .area-content .area-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    color: var(--gold);
    font-size: 1.1rem;
    opacity: 0.6;
    transition: 0.3s;
}

.area-card:hover .area-content .area-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* ===== PROJECTS GRID ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card .image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg-dark);
    flex-shrink: 0;
}

.project-card .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .image-wrap img {
    transform: scale(1.08);
}

.project-card .status-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.85);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.project-card .status-badge.offplan {
    background: rgba(0,0,0,0.85);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.project-card .status-badge.ready {
    background: rgba(0,0,0,0.85);
    color: #34d399;
    border: 1px solid #34d399;
}

.project-card .price-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    letter-spacing: 0.5px;
}

.project-card .content {
    padding: 20px 22px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-card .content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    transition: color 0.3s;
}

.project-card .content h3:hover {
    color: var(--gold);
}

.project-card .content .location {
    color: var(--text-gray);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.project-card .content .location i {
    color: var(--gold);
    font-size: 0.75rem;
}

.project-card .content .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.project-card .content .info-row .status-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card .content .info-row .status-text.offplan {
    color: var(--gold);
}

.project-card .content .info-row .status-text.ready {
    color: #34d399;
}

.project-card .content .info-row .handover {
    font-size: 0.75rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-card .content .info-row .handover i {
    color: var(--gold);
}

.project-card .content .info-row .handover strong {
    color: #fff;
    font-weight: 600;
}

.project-card .actions {
    margin-top: auto;
    text-align: center;
}

.project-card .actions .btn-details {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.project-card .actions .btn-details:hover {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

/* ===== LOAD MORE BUTTON ===== */
.load-more-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.25);
}

.load-more-btn i {
    font-size: 1.1rem;
}

/* ===== MARKET ===== */
.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.stat-card {
    background: var(--bg-card);
    padding: 24px 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.stat-card .value {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card .label {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 28px 24px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.testimonial-card .quote {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 14px;
    flex: 1;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.testimonial-card .author .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.testimonial-card .author .info .name {
    font-weight: 600;
    color: #fff;
}

.testimonial-card .author .info .country {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.testimonial-card .project-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 12px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    align-self: flex-start;
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    align-items: start;
}

.faq-item {
    background: var(--bg-card);
    padding: 24px 28px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    height: fit-content;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    gap: 12px;
}

.faq-item .faq-question i {
    color: var(--gold);
    transition: 0.3s;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-item .faq-answer {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.8;
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 50px 20px 30px;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.footer-col p,
.footer-col a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    padding: 4px 0;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .filter-row {
        gap: 15px;
    }
    .filter-group {
        min-width: 140px;
    }
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .filter-row {
        flex-wrap: wrap;
    }
    .filter-group {
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
    }
    .filter-actions {
        flex: 1 1 100%;
        flex-direction: row;
    }
    .search-btn,
    .reset-btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-stats {
        gap: 25px;
    }
    .hero-stat .number {
        font-size: 1.8rem;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        gap: 5px;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    
    .advisor-inner {
        flex-direction: column;
        text-align: center;
    }
    .advisor-info p {
        margin-left: auto;
        margin-right: auto;
    }
    .advisor-contacts {
        justify-content: center;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .filter-group {
        flex: 1 1 100%;
    }
    .filter-actions {
        flex-direction: column;
    }
    .search-btn,
    .reset-btn {
        width: 100%;
        justify-content: center;
    }
    .filter-container {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-stats {
        gap: 15px;
    }
    .hero-stat .number {
        font-size: 1.4rem;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .project-card .content .info-row {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .project-card .image-wrap {
        height: 180px;
    }
}





/* ===== PROJECT.PHP PAGE ===== */
/* ===== PROJECT.PHP PAGE ===== */
/* ===== PROJECT PAGE ===== */
.project-page {
    background: var(--bg-dark);
    min-height: 100vh;
    padding: 30px 20px 60px;
}

.project-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.breadcrumb span {
    color: var(--text-light);
}

/* Project Header */
.project-header {
    margin-bottom: 40px;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--text-light);
}

.project-location {
    color: var(--text-gray);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.project-location i {
    color: var(--gold);
}

.project-price {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.project-price span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 400;
    -webkit-text-fill-color: var(--text-gray);
    display: inline-block;
    margin-left: 8px;
}

.project-status {
    display: inline-block;
    padding: 6px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.status-offplan {
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.status-ready {
    background: rgba(16,185,129,0.15);
    color: #34d399;
    border: 1px solid #34d399;
}

/* Project Main Layout */
.project-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Left Column */
.project-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Gallery */
.gallery-section {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 16px;
}

.gallery-main {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 12px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-main img:hover {
    transform: scale(1.02);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-thumbs img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
    border-color: var(--gold);
}

/* Download Section */
.download-section {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 24px 28px;
}

.download-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-section h3 i {
    color: var(--gold);
}

.download-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 10px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
}

.download-btn:hover {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.25);
}

/* Right Column */
.project-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Specs */
.specs-section {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 24px 28px;
}

.specs-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.specs-section h3 i {
    color: var(--gold);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.spec-item {
    background: var(--bg-dark);
    padding: 14px 10px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.spec-item:hover {
    border-color: var(--gold);
}

.spec-item .value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.spec-item .label {
    display: block;
    color: var(--text-gray);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Description */
.description-section {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 24px 28px;
}

.description-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.description-section h3 i {
    color: var(--gold);
}

.description-section p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Map */
.map-section {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 24px 28px;
}

.map-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-section h3 i {
    color: var(--gold);
}

.map-container {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Actions */
.contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

.contact-actions .btn {
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.contact-actions .btn-phone {
    background: var(--gold-gradient);
    color: var(--bg-dark);
}

.contact-actions .btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

.contact-actions .btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.contact-actions .btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

.contact-actions .btn-primary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.contact-actions .btn-primary:hover {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.25);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 40px;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.3s;
    padding: 20px 15px;
    background: rgba(0,0,0,0.4);
    border-radius: 8px;
    z-index: 2001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(201,168,76,0.3);
    color: var(--gold);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-gray);
    font-size: 0.9rem;
    background: rgba(0,0,0,0.6);
    padding: 8px 20px;
    border-radius: 50px;
    z-index: 2001;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--bg-card);
    padding: 40px 45px;
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    position: relative;
    border: 1px solid var(--gold);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1.6rem;
    transition: 0.3s;
    z-index: 1;
}

.modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-icon {
    text-align: center;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.modal-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text-light);
}

.modal-box p {
    color: var(--text-gray);
    text-align: center;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.modal-box p strong {
    color: var(--text-light);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
    color: #fff;
    box-sizing: border-box;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
}

.modal-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.08);
}

.modal-input::placeholder {
    color: var(--text-gray);
}

.modal-btn {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

.modal-success {
    text-align: center;
    padding: 20px 0;
}

.modal-success i {
    font-size: 3.5rem;
    color: #34d399;
    display: block;
    margin-bottom: 12px;
}

.modal-success p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.modal-error {
    background: rgba(239,68,68,0.15);
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    text-align: center;
}

/* ===== RESPONSIVE PROJECT PAGE ===== */
@media (max-width: 1024px) {
    .project-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-main {
        height: 380px;
    }
    
    .contact-actions {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .project-title {
        font-size: 2rem;
    }
    
    .project-price {
        font-size: 2rem;
    }
    
    .gallery-main {
        height: 280px;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-thumbs img {
        height: 65px;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .download-btn {
        justify-content: center;
    }
    
    .contact-actions {
        grid-template-columns: 1fr;
    }
    
    .modal-box {
        padding: 30px 25px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.8rem;
        padding: 12px 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .project-page {
        padding: 15px 12px 40px;
    }
    
    .project-title {
        font-size: 1.6rem;
    }
    
    .project-price {
        font-size: 1.6rem;
    }
    
    .gallery-main {
        height: 200px;
    }
    
    .gallery-thumbs img {
        height: 55px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .spec-item {
        padding: 10px 8px;
    }
    
    .spec-item .value {
        font-size: 0.95rem;
    }
    
    .spec-item .label {
        font-size: 0.6rem;
    }
    
    .modal-box {
        padding: 24px 18px;
    }
    
    .modal-box h3 {
        font-size: 1.3rem;
    }
}



/* ===== AREA PAGE ===== */
.area-page {
    background: var(--bg-dark);
    min-height: 100vh;
    padding: 30px 20px 60px;
}

.area-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.breadcrumb span {
    color: var(--text-light);
}

/* Area Header */
.area-header {
    text-align: center;
    padding: 30px 0 40px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.area-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text-light);
}

.area-header h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.area-header p {
    color: var(--text-gray);
    font-weight: 300;
    font-size: 1.05rem;
    margin-top: 8px;
}

/* Filters - same as index */
.area-page .filter-container {
    background: var(--bg-card);
    padding: 25px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.area-page .filter-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.area-page .filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 150px;
}

.area-page .filter-group label {
    color: var(--text-gray);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.area-page .filter-group label i {
    color: var(--gold);
    margin-right: 6px;
}

.area-page .filter-group select,
.area-page .filter-group input {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
    width: 100%;
    outline: none;
}

.area-page .filter-group select:focus,
.area-page .filter-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.08);
}

.area-page .filter-group select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.area-page .filter-actions {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: flex-end;
}

.area-page .search-btn {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border: none;
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-page .search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.25);
}

.area-page .reset-btn {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.area-page .reset-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 0;
    color: var(--text-gray);
    grid-column: 1/-1;
}

.no-results i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.no-results h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.no-results p {
    font-size: 1rem;
    font-weight: 300;
}

/* Project Cards - same as index */
.area-page .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.area-page .project-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.area-page .project-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.area-page .project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.area-page .project-card .image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg-dark);
    flex-shrink: 0;
}

.area-page .project-card .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.area-page .project-card:hover .image-wrap img {
    transform: scale(1.08);
}

.area-page .project-card .status-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.85);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.area-page .project-card .status-badge.offplan {
    background: rgba(0,0,0,0.85);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.area-page .project-card .status-badge.ready {
    background: rgba(0,0,0,0.85);
    color: #34d399;
    border: 1px solid #34d399;
}

.area-page .project-card .price-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    letter-spacing: 0.5px;
}

.area-page .project-card .content {
    padding: 20px 22px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.area-page .project-card .content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    transition: color 0.3s;
}

.area-page .project-card .content h3:hover {
    color: var(--gold);
}

.area-page .project-card .content .location {
    color: var(--text-gray);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.area-page .project-card .content .location i {
    color: var(--gold);
    font-size: 0.75rem;
}

.area-page .project-card .content .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.area-page .project-card .content .info-row .status-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.area-page .project-card .content .info-row .status-text.offplan {
    color: var(--gold);
}

.area-page .project-card .content .info-row .status-text.ready {
    color: #34d399;
}

.area-page .project-card .content .info-row .handover {
    font-size: 0.75rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.area-page .project-card .content .info-row .handover i {
    color: var(--gold);
}

.area-page .project-card .content .info-row .handover strong {
    color: #fff;
    font-weight: 600;
}

.area-page .project-card .actions {
    margin-top: auto;
    text-align: center;
}

.area-page .project-card .actions .btn-details {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.area-page .project-card .actions .btn-details:hover {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

/* ===== RESPONSIVE AREA PAGE ===== */
@media (max-width: 1024px) {
    .area-page .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .area-page .filter-row {
        flex-wrap: wrap;
    }
    .area-page .filter-group {
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
    }
    .area-page .filter-actions {
        flex: 1 1 100%;
        flex-direction: row;
    }
    .area-page .search-btn,
    .area-page .reset-btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .area-header h1 {
        font-size: 2rem;
    }
    
    .area-page .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .area-page .filter-group {
        flex: 1 1 100%;
    }
    
    .area-page .filter-actions {
        flex-direction: column;
    }
    
    .area-page .filter-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .area-header h1 {
        font-size: 1.6rem;
    }
    
    .area-page .project-card .image-wrap {
        height: 180px;
    }
    
    .area-page .project-card .content .info-row {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}