/* ===== THE MARIS VIP - SHARED STYLES v2.0 ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --navy-dark: #0a1628;
    --navy: #132744;
    --navy-light: #1e3a5f;
    --navy-lighter: #2a4d7a;
    --gold: #c9a96e;
    --gold-light: #dfc08a;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-text: #8a9ab5;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--white);
    background: var(--navy-dark);
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 0 60px; height: 80px; display: flex; align-items: center;
    justify-content: space-between; transition: all 0.4s; background: transparent;
}
.navbar.scrolled {
    background: rgba(10,22,40,0.95); backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.nav-logo img { height: 50px; filter: brightness(1.1); }
.nav-links {
    display: flex; list-style: none; gap: 30px; align-items: center;
}
.nav-links a {
    color: var(--white); text-decoration: none; font-size: 0.75rem;
    font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
    position: relative; transition: color 0.3s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
    height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    border: 1px solid var(--gold) !important; padding: 10px 25px !important;
    font-size: 0.7rem !important; letter-spacing: 2px !important; transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background:none; border:none; }
.hamburger span { width: 25px; height: 2px; background: var(--white); transition: 0.3s; display:block; }

/* ===== SECTION BASE ===== */
.section { padding: 120px 80px; position: relative; }
.section-label {
    font-size: 0.7rem; letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 15px; display: flex; align-items: center; gap: 15px;
}
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.section-title {
    font-family: var(--font-display); font-size: 3rem; font-weight: 700;
    line-height: 1.2; margin-bottom: 20px;
}
.section-desc {
    font-size: 0.95rem; line-height: 1.8; color: var(--gray-text); max-width: 600px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block; background: var(--gold); color: var(--navy-dark);
    padding: 15px 45px; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; border: 2px solid var(--gold);
    transition: all 0.3s; cursor: pointer;
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-outline {
    display: inline-block; background: transparent; color: var(--white);
    padding: 15px 45px; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ===== SUB-PAGE HERO (Enhanced) ===== */
.sub-hero {
    position: relative; height: 80vh; min-height: 550px; display: flex;
    align-items: center; justify-content: center; text-align: center; overflow: hidden;
}
.sub-hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.sub-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.6) 50%, rgba(10,22,40,0.95) 100%);
}
.sub-hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 30px; }
.sub-hero-badge {
    display: inline-block; border: 1px solid var(--gold); padding: 10px 35px;
    font-size: 0.65rem; letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 30px;
    animation: fadeInDown 1s ease 0.3s both;
}
.sub-hero h1 {
    font-family: var(--font-display); font-size: 4.5rem; font-weight: 700;
    line-height: 1.1; margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.5s both;
}
.sub-hero h1 span { color: var(--gold); }
.sub-hero-sub {
    font-size: 1.05rem; font-weight: 300; letter-spacing: 3px;
    color: rgba(255,255,255,0.7); margin-bottom: 35px;
    animation: fadeInUp 1s ease 0.7s both;
}
.sub-hero .btn-row {
    display: flex; gap: 20px; justify-content: center; margin-top: 30px;
    animation: fadeInUp 1s ease 0.9s both;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 2; animation: bounce 2s infinite;
}
.scroll-indicator span {
    display: block; width: 20px; height: 30px; border: 2px solid rgba(255,255,255,0.4);
    border-radius: 10px; position: relative;
}
.scroll-indicator span::after {
    content: ''; width: 3px; height: 6px; background: var(--gold);
    border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes scrollDot { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 18px; } }

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-top: 1px solid rgba(201,169,110,0.2); border-bottom: 1px solid rgba(201,169,110,0.2);
}
.stat-item {
    padding: 45px 30px; text-align: center; position: relative;
    transition: all 0.4s;
}
.stat-item:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 20%; height: 60%;
    width: 1px; background: rgba(201,169,110,0.15);
}
.stat-item:hover { background: rgba(201,169,110,0.05); }
.stat-number {
    font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
    color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label {
    font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gray-text);
}

/* ===== OVERVIEW 2-COL ===== */
.overview-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.overview-img {
    overflow: hidden; border: 1px solid rgba(201,169,110,0.2);
    position: relative;
}
.overview-img img {
    width: 100%; display: block; transition: transform 0.6s;
}
.overview-img:hover img { transform: scale(1.05); }
.overview-img .img-badge {
    position: absolute; bottom: 20px; right: 20px;
    background: var(--gold); color: var(--navy-dark);
    padding: 10px 25px; font-size: 0.65rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
}

/* ===== FEATURES GRID (Enhanced) ===== */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px;
}
.feature-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    padding: 45px 30px; text-align: center; transition: all 0.4s; position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: transform 0.4s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.feature-icon {
    width: 70px; height: 70px; border: 1px solid rgba(201,169,110,0.4); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    transition: all 0.4s;
}
.feature-card:hover .feature-icon { background: rgba(201,169,110,0.1); border-color: var(--gold); }
.feature-icon i { color: var(--gold); font-size: 1.4rem; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 12px; }
.feature-card p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.7; }

/* ===== IMAGE SHOWCASE (Enhanced) ===== */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 550px; }
.showcase.reverse { direction: rtl; }
.showcase.reverse > * { direction: ltr; }
.showcase-img { overflow: hidden; position: relative; }
.showcase-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.showcase-img:hover img { transform: scale(1.08); }
.showcase-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(45deg, rgba(10,22,40,0.3) 0%, transparent 100%);
    pointer-events: none;
}
.showcase-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 70px 80px; background: var(--navy);
    position: relative;
}
.showcase-content::before {
    content: ''; position: absolute; top: 50px; left: 80px; width: 40px; height: 2px;
    background: var(--gold);
}
.showcase-number {
    font-family: var(--font-display); font-size: 6rem;
    color: rgba(201,169,110,0.1); font-weight: 700; line-height: 1; margin-bottom: 10px;
}
.showcase-content h3 {
    font-family: var(--font-display); font-size: 2rem; margin-bottom: 20px; line-height: 1.3;
}
.showcase-content p { font-size: 0.92rem; line-height: 1.9; color: var(--gray-text); }

/* ===== SPECS TABLE (Enhanced) ===== */
.specs-table {
    width: 100%; border-collapse: collapse; margin-top: 40px;
}
.specs-table tr { border-bottom: 1px solid rgba(255,255,255,0.08); transition: background 0.3s; }
.specs-table tr:hover { background: rgba(201,169,110,0.03); }
.specs-table td {
    padding: 18px 20px; font-size: 0.9rem;
}
.specs-table td:first-child {
    color: var(--gold); font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; font-size: 0.8rem; width: 200px;
}
.specs-table td:last-child { color: var(--gray-text); }

/* ===== FLOOR PLANS / PRODUCT CARDS ===== */
.floor-plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
.floor-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    padding: 40px 30px; text-align: center; transition: all 0.4s; position: relative; overflow: hidden;
}
.floor-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0); transition: transform 0.5s;
}
.floor-card:hover::before { transform: scaleX(1); }
.floor-card:hover { border-color: rgba(201,169,110,0.3); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.floor-card .floor-icon {
    font-size: 2rem; color: var(--gold); margin-bottom: 15px; opacity: 0.6;
}
.floor-card h4 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 12px; }
.floor-card .price { color: var(--gold); font-size: 1.6rem; font-family: var(--font-display); font-weight: 700; }
.floor-card .area { color: var(--gray-text); font-size: 0.85rem; margin-top: 8px; line-height: 1.6; }
.floor-card .floor-tag {
    display: inline-block; background: rgba(201,169,110,0.15); color: var(--gold);
    padding: 4px 12px; font-size: 0.6rem; letter-spacing: 1px; text-transform: uppercase;
    margin-top: 12px;
}

/* ===== VILLA CARDS ===== */
.villa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.villa-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    padding: 40px; text-align: center; transition: all 0.4s; position: relative; overflow: hidden;
}
.villa-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: var(--gold); transform: scaleX(0); transition: transform 0.4s;
}
.villa-card:hover::before { transform: scaleX(1); }
.villa-card:hover { border-color: rgba(201,169,110,0.3); transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.villa-card h4 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 10px; }
.villa-card .price { color: var(--gold); font-size: 2rem; font-family: var(--font-display); font-weight: 700; margin-bottom: 12px; }
.villa-card .area { color: var(--gray-text); font-size: 0.85rem; line-height: 1.8; }
.villa-card .tag {
    display: inline-block; background: var(--gold); color: var(--navy-dark);
    padding: 5px 18px; font-size: 0.6rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 18px;
}

/* ===== GALLERY GRID (Enhanced) ===== */
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 50px;
}
.gallery-grid img {
    width: 100%; height: 280px; object-fit: cover; transition: all 0.5s; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05); filter: brightness(0.9);
}
.gallery-grid img:hover { transform: scale(1.03); border-color: var(--gold); filter: brightness(1.1); }

/* Gallery with captions */
.gallery-item { position: relative; overflow: hidden; }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: all 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(10,22,40,0.9));
    padding: 40px 20px 15px; transform: translateY(100%);
    transition: transform 0.4s;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-caption span { font-size: 0.8rem; color: var(--gold); letter-spacing: 1px; }

/* ===== CONTACT BAR (Enhanced) ===== */
.contact-bar {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 50px 80px; display: flex;
    align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.contact-bar h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy-dark); }
.contact-bar p { color: var(--navy-dark); font-size: 0.85rem; opacity: 0.8; margin-top: 5px; }
.contact-bar .btn-dark {
    background: var(--navy-dark); color: var(--white); padding: 16px 45px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; border: 2px solid var(--navy-dark);
    transition: all 0.3s;
}
.contact-bar .btn-dark:hover { background: transparent; color: var(--navy-dark); }

/* ===== CONTACT FORM (Sub-page) ===== */
.sub-contact {
    padding: 100px 80px;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.sub-contact-inner {
    max-width: 700px; margin: 0 auto; text-align: center;
}
.sub-contact h2 {
    font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 15px;
}
.sub-contact p { color: var(--gray-text); margin-bottom: 40px; font-size: 0.95rem; }
.sub-contact-form {
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
}
.sub-contact-form .full-width { grid-column: 1 / -1; }
.sub-contact-form input,
.sub-contact-form textarea,
.sub-contact-form select {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 20px; color: var(--white); font-family: var(--font-body);
    font-size: 0.9rem; outline: none; transition: border-color 0.3s;
    width: 100%;
}
.sub-contact-form input:focus,
.sub-contact-form textarea:focus,
.sub-contact-form select:focus {
    border-color: var(--gold);
}
.sub-contact-form input::placeholder,
.sub-contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.sub-contact-form textarea { min-height: 120px; resize: vertical; }
.sub-contact-form button {
    grid-column: 1 / -1; background: var(--gold); color: var(--navy-dark);
    padding: 16px 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; border: 2px solid var(--gold); cursor: pointer;
    transition: all 0.3s; font-family: var(--font-body);
}
.sub-contact-form button:hover { background: transparent; color: var(--gold); }

/* ===== INVESTMENT HIGHLIGHTS ===== */
.invest-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 60px;
    border: 1px solid rgba(255,255,255,0.08);
}
.invest-item {
    padding: 50px 35px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08); transition: all 0.4s;
}
.invest-item:hover { background: rgba(201,169,110,0.05); }
.invest-item:nth-child(3n) { border-right: none; }
.invest-item:nth-child(n+4) { border-bottom: none; }
.invest-number {
    font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
    color: var(--gold); margin-bottom: 8px;
}
.invest-item h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 8px; }
.invest-item p { font-size: 0.82rem; color: var(--gray-text); line-height: 1.6; }

/* ===== PARALLAX SECTION ===== */
.parallax-section {
    position: relative; padding: 150px 80px; text-align: center; overflow: hidden;
}
.parallax-bg {
    position: absolute; inset: -50px; background-size: cover; background-position: center;
    background-attachment: fixed; z-index: 0;
}
.parallax-bg::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(10,22,40,0.85);
}
.parallax-content {
    position: relative; z-index: 2; max-width: 800px; margin: 0 auto;
}
.parallax-content blockquote {
    font-family: var(--font-display); font-size: 2rem; font-style: italic;
    line-height: 1.5; margin-bottom: 20px; color: var(--white);
}
.parallax-content cite {
    color: var(--gold); font-size: 0.8rem; letter-spacing: 3px;
    text-transform: uppercase; font-style: normal;
}

/* ===== TIMELINE ===== */
.timeline { position: relative; max-width: 800px; margin: 60px auto 0; padding-left: 40px; }
.timeline::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, var(--gold), rgba(201,169,110,0.2));
}
.timeline-item { padding: 0 0 50px 40px; position: relative; }
.timeline-item::before {
    content: ''; position: absolute; left: -7px; top: 5px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--navy-dark); border: 2px solid var(--gold);
}
.timeline-item h4 {
    font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 5px;
    color: var(--gold);
}
.timeline-item p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.7; }

/* ===== FOOTER (Enhanced) ===== */
.footer {
    background: var(--navy-dark); padding: 80px 60px 40px; text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 5px; letter-spacing: 3px; }
.footer-logo-sub { font-size: 0.65rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 35px; }
.footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 35px; flex-wrap: wrap; }
.footer-links a {
    color: var(--gray-text); text-decoration: none; font-size: 0.75rem;
    letter-spacing: 2px; text-transform: uppercase; transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
.footer-social a {
    width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--gray-text); text-decoration: none; transition: all 0.3s;
    font-size: 0.85rem;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-divider { width: 60px; height: 1px; background: var(--gold); margin: 30px auto; }
.footer-copy { font-size: 0.8rem; color: var(--gray-text); }

/* ===== FLOATING BUTTONS ===== */
.floating-contact {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
    width: 55px; height: 55px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; text-decoration: none;
    color: var(--white); font-size: 1.3rem; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s; animation: pulse 2s infinite;
}
.float-btn:hover { transform: scale(1.15); }
.float-phone { background: var(--gold); animation-delay: 0s; }
.float-zalo { background: #0068ff; animation-delay: 1s; }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 20px rgba(0,0,0,0.3); } 50% { box-shadow: 0 4px 30px rgba(201,169,110,0.4); } }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none; position: fixed; inset: 0; background: rgba(10,22,40,0.98);
    z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    color: var(--white); text-decoration: none; font-size: 1.2rem;
    letter-spacing: 3px; text-transform: uppercase; font-weight: 300;
    transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .close-menu {
    position: absolute; top: 30px; right: 30px; font-size: 2rem;
    color: var(--white); cursor: pointer; background: none; border: none;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex; align-items: center; gap: 10px; padding: 15px 80px;
    background: rgba(19,39,68,0.5); font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.breadcrumb a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gray-text); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.fade-in { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: all 0.8s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: all 0.8s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95);
    z-index: 9999; align-items: center; justify-content: center; cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw; max-height: 90vh; object-fit: contain;
    animation: fadeInUp 0.3s ease;
}
.lightbox-close {
    position: absolute; top: 20px; right: 30px; color: white;
    font-size: 2rem; cursor: pointer; background: none; border: none;
    z-index: 10000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .section { padding: 80px 30px; }
    .navbar { padding: 0 30px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .showcase { grid-template-columns: 1fr; min-height: auto; }
    .showcase.reverse { direction: ltr; }
    .showcase-content { padding: 50px 30px; }
    .showcase-content::before { left: 30px; top: 30px; }
    .showcase-img img { height: 400px; }
    .sub-hero h1 { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .contact-bar { padding: 35px 30px; text-align: center; justify-content: center; }
    .breadcrumb { padding: 15px 30px; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .invest-grid { grid-template-columns: 1fr 1fr; }
    .invest-item:nth-child(2n) { border-right: none; }
    .overview-grid { grid-template-columns: 1fr; gap: 40px; }
    .sub-contact { padding: 80px 30px; }
    .villa-grid { grid-template-columns: 1fr; gap: 20px; }
    .parallax-section { padding: 100px 30px; }
    .parallax-bg { background-attachment: scroll; }
    .floor-plan-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 60px 20px; }
    .sub-hero { height: 70vh; }
    .sub-hero h1 { font-size: 2.2rem; }
    .sub-hero-sub { font-size: 0.85rem; letter-spacing: 1px; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid img { height: 220px; }
    .specs-table td:first-child { width: 120px; font-size: 0.7rem; }
    .breadcrumb { padding: 15px 20px; flex-wrap: wrap; }
    .stats-bar { grid-template-columns: 1fr; }
    .stat-item:not(:last-child)::after { display: none; }
    .stat-item { padding: 30px 20px; border-bottom: 1px solid rgba(201,169,110,0.1); }
    .sub-contact-form { grid-template-columns: 1fr; }
    .floor-plan-grid { grid-template-columns: 1fr; }
    .invest-grid { grid-template-columns: 1fr; }
    .invest-item { border-right: none !important; }
    .parallax-content blockquote { font-size: 1.4rem; }
    .contact-bar { padding: 30px 20px; }
    .contact-bar h3 { font-size: 1.2rem; }
    .timeline { padding-left: 30px; }
    .timeline-item { padding-left: 30px; }
}
