:root {
    /* Futuristic Dark Theme Palette */
    --bg-primary: #050508;
    --bg-secondary: #0d0d14;
    --bg-glass: rgba(20, 20, 30, 0.4);
    --bg-glass-hover: rgba(40, 40, 60, 0.6);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;

    /* Brand Accents */
    --accent-gold: #c38435;
    --accent-gold-glow: rgba(195, 132, 53, 0.3);
    --accent-green: #2c442c;
    --accent-green-bright: #436643;
    --accent-green-glow: rgba(44, 68, 44, 0.3);
    --accent-neon: #00ffcc;

    --font-main: 'Outfit', sans-serif;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(circle at 15% 50%, var(--accent-green-glow), transparent 40%),
        radial-gradient(circle at 85% 30%, var(--accent-gold-glow), transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, #fff, var(--text-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--accent-gold), #ffd480);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px var(--accent-gold-glow);
}

/* Utilities */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #e0993d);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(195, 132, 53, 0.5);
    background: linear-gradient(135deg, #e0993d, var(--accent-gold));
}

.btn-outline {
    background: transparent;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold-glow);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px var(--accent-gold-glow);
}

/* Transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hidden {
    display: none !important;
}

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.w-full {
    width: 100%;
}

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

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content {
    width: 100%;
    max-width: 500px;
    position: relative;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: white;
}

.form-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-glass);
}

.error-message {
    background: rgba(255, 50, 50, 0.1);
    border: 1px solid rgba(255, 50, 50, 0.3);
    color: #ff8888;
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Property Cards */
.property-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-green-glow);
}

.property-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--accent-gold), #e0993d);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.property-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.property-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-glass);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.property-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Image slider controls */
.image-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.image-indicators {
    display: flex;
    gap: 6px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.indicator.active {
    background: var(--accent-gold);
    width: 20px;
    border-radius: 4px;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
}

.testimonial-card {
    padding: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #dfdfea;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--accent-gold);
}

/* Version Badge */
.version-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Section Headings */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Property */
.featured-property {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
}

@media (max-width: 1023px) {
    .featured-property {
        grid-template-columns: 1fr;
    }
}

.featured-property .property-image-container {
    height: 100%;
    min-height: 450px;
}

.featured-property .property-content {
    justify-content: center;
    padding: 3rem;
}

.featured-property .property-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-property .property-price {
    font-size: 2.2rem;
}

.featured-property .property-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Spotlight Section */
.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.spotlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 2rem;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.spotlight-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(195, 132, 53, 0.15);
}

.spotlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.spotlight-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spotlight-title::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.spotlight-content {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.spotlight-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active State */
.spotlight-card.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
}

.spotlight-card.active .spotlight-title::after {
    transform: rotate(45deg);
}

.spotlight-card.active .spotlight-content {
    max-height: 300px;
    opacity: 1;
    margin-top: 1rem;
}

/* Luxury Header & Mega-Dropdown Menu */
.navbar-custom {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-glass);
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Dropdown Menu Container */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.active .nav-dropdown-toggle {
    background: rgba(195, 132, 53, 0.15);
    border-color: var(--accent-gold);
    color: #ffd480;
    box-shadow: 0 0 15px var(--accent-gold-glow);
}

.dropdown-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mega-Dropdown Panel */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 680px;
    max-width: 95vw;
    background: rgba(10, 10, 18, 0.97);
    border: 1px solid var(--accent-gold);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(195, 132, 53, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .dropdown-grid {
        grid-template-columns: 1fr;
    }
    .nav-dropdown-menu {
        width: 100vw;
        right: -20px;
        border-radius: 0;
        max-height: 80vh;
        overflow-y: auto;
    }
}

.dropdown-col-header {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(195, 132, 53, 0.2);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dropdown-link-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.2s ease;
}

.dropdown-link-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transform: translateX(4px);
}

.dropdown-num-badge {
    background: rgba(195, 132, 53, 0.2);
    border: 1px solid var(--accent-gold);
    color: #ffd480;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 6px;
    flex-shrink: 0;
}

.dropdown-link-title {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
}

.dropdown-link-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
    line-height: 1.3;
}

/* ─── Floating WhatsApp Button ─────────────────────────────── */
.whatsapp-float-container {
    position: fixed !important;
    bottom: 28px;
    right: 28px;
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
}

.whatsapp-float-tooltip {
    background: rgba(12, 12, 22, 0.97);
    border: 1px solid var(--accent-gold);
    color: #ffffff;
    padding: 0.6rem 1.1rem;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 12px rgba(195, 132, 53, 0.3);
    backdrop-filter: blur(12px);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Hidden by default, shown on hover of the container */
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-float-container:hover .whatsapp-float-tooltip {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.whatsapp-float-tooltip .online-dot {
    width: 9px;
    height: 9px;
    background: #25d366;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 8px #25d366;
    animation: blink-dot 2s infinite;
}

@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5), 0 0 18px rgba(37, 211, 102, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none;
    flex-shrink: 0;
}

.whatsapp-float-btn:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.7), 0 0 22px rgba(37, 211, 102, 0.4);
}

.whatsapp-float-btn svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    display: block;
    flex-shrink: 0;
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: pulseRing 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 640px) {
    .whatsapp-float-tooltip {
        display: none;
    }
    .whatsapp-float-container {
        bottom: 18px;
        right: 18px;
    }
    .whatsapp-float-btn {
        width: 54px;
        height: 54px;
    }
    .whatsapp-float-btn svg {
        width: 28px;
        height: 28px;
    }
}


/* Guides & Real Estate Advice Section */
.guides-section {
    padding: 4rem 0;
}

.guide-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(195, 132, 53, 0.15);
    border: 1px solid var(--accent-gold);
    color: #ffd480 !important;
    margin-bottom: 0.75rem;
}

.guide-card, 
.guide-card:visited, 
.guide-card:link, 
.guide-card:hover, 
.guide-card:active {
    text-decoration: none !important;
    color: #ffffff !important;
}

.guide-card * {
    text-decoration: none !important;
}

.guide-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.2rem 2rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(22, 22, 35, 0.75), rgba(12, 12, 20, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.guide-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px var(--accent-gold-glow);
    background: linear-gradient(145deg, rgba(32, 30, 48, 0.85), rgba(18, 16, 28, 0.98));
}

.guide-card:hover::before {
    opacity: 1;
}

.guide-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.guide-card-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.guide-card-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    font-family: var(--font-main);
    transition: color 0.3s ease;
}

.guide-card:hover .guide-card-number {
    color: var(--accent-gold);
}

.guide-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0.6rem 0;
    color: #ffffff !important;
}

.guide-card p {
    font-size: 0.95rem;
    color: #a5a5bb !important;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.guide-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffd480 !important;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-card-footer .arrow {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.guide-card:hover .guide-card-footer .arrow {
    transform: translateX(6px);
}

/* Article Page Luxury Magazine Design */
.article-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.article-hero {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.article-body {
    font-size: 1.12rem;
    line-height: 1.85;
    color: #d8d8ea;
}

.article-body h2 {
    font-size: 1.85rem;
    color: #ffffff;
    margin: 3rem 0 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article-body h3 {
    font-size: 1.4rem;
    color: #ffd480;
    margin: 2rem 0 0.85rem;
}

.article-body p {
    margin-bottom: 1.4rem;
}

.article-body ul, .article-body ol {
    margin-bottom: 1.75rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.6rem;
}

.article-highlight-box {
    background: linear-gradient(135deg, rgba(195, 132, 53, 0.1), rgba(20, 20, 30, 0.6));
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 14px 14px 0;
    padding: 1.75rem;
    margin: 2.5rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.article-highlight-box h4 {
    color: #ffd480;
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
}

/* Executive Summary Box */
.executive-summary-card {
    background: rgba(15, 15, 25, 0.7);
    border: 1px solid var(--accent-gold);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.executive-summary-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffd480;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

/* Plot Feature Spotlight Banner inside Articles */
.plot-spotlight-banner {
    background: linear-gradient(135deg, rgba(22, 22, 38, 0.95), rgba(35, 28, 20, 0.95));
    border: 2px solid var(--accent-gold);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 3.5rem 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px var(--accent-gold-glow);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (max-width: 820px) {
    .plot-spotlight-banner {
        grid-template-columns: 1fr;
        padding: 1.75rem;
        gap: 1.5rem;
    }
}

.plot-banner-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.plot-specs-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 500;
    margin: 0.3rem 0.3rem 0.3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f0f0f5;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-glass);
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.98rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.table-custom th, .table-custom td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-custom th {
    background: rgba(30, 30, 45, 0.8);
    color: #ffd480;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.table-custom tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* All Guides Grid inside Articles */
.all-guides-module {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-glass);
}

.all-guides-header {
    text-align: center;
    margin-bottom: 2rem;
}

.all-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.mini-guide-card {
    padding: 1.25rem;
    border-radius: 12px;
    background: rgba(15, 15, 25, 0.6);
    border: 1px solid var(--border-glass);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mini-guide-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    background: rgba(25, 25, 40, 0.8);
}

.mini-guide-card .mini-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.4rem;
}

.mini-guide-card h4 {
    font-size: 0.95rem;
    line-height: 1.35;
    color: #ffffff;
}