/* ============================================
   Honor Anar - Premium Real Estate Website
   Dark Theme with Gold & Silver Accents
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    /* Light Theme (Default) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8f8;
    --bg-tertiary: #f0f0f0;
    --charcoal: #2a2a2a;
    --charcoal-light: #3a3a3a;
    
    --gold: #d4af37;
    --gold-light: #e5c158;
    --gold-dark: #b8941f;
    --gold-glow: rgba(212, 175, 55, 0.3);
    
    --silver: #666666;
    --silver-light: #888888;
    --silver-dark: #444444;
    
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6a6a6a;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    
    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(212, 175, 55, 0.3);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
}

/* Dark Theme */
[data-theme="dark"] {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --charcoal: #1e1e1e;
    --charcoal-light: #2a2a2a;
    
    --gold: #d4af37;
    --gold-light: #e5c158;
    --gold-dark: #b8941f;
    --gold-glow: rgba(212, 175, 55, 0.3);
    
    --silver: #c0c0c0;
    --silver-light: #e0e0e0;
    --silver-dark: #808080;
    
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
    --text-muted: #888888;
    
    --glass-bg: rgba(30, 30, 30, 0.6);
    --glass-border: rgba(212, 175, 55, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
}

/* ===== Theme Toggle ===== */
.theme-toggle-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}

.theme-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    color: var(--gold);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.theme-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: scale(1.1);
}

.theme-icon-light,
.theme-icon-dark {
    position: absolute;
    transition: all 0.3s ease;
}

.theme-icon-dark {
    display: none;
}

[data-theme="dark"] .theme-icon-light {
    display: none;
}

[data-theme="dark"] .theme-icon-dark {
    display: block;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

/* ===== Navbar ===== */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

[data-theme="dark"] .navbar {
    background: rgba(10, 10, 10, 0.85);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    --bs-navbar-color: var(--text-primary);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-logo {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.navbar-brand:hover {
    color: var(--gold-light) !important;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 400;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link.lang-switch {
    color: var(--text-secondary) !important;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 0.3rem 0.8rem !important;
}

.nav-link.lang-switch:hover {
    color: var(--gold) !important;
    border-color: var(--gold);
}

.navbar-toggler {
    border: 1px solid var(--glass-border);
    color: var(--gold);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem var(--gold-glow);
}

/* ===== City Map Background (Right Corner) ===== */
.city-map-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(0.6);
    object-fit: cover;
    filter: brightness(1.15) contrast(1.2) saturate(1.1);
    opacity: 1;
    transition: filter 0.3s ease;
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 15%,
        rgba(0, 0, 0, 0.2) 25%,
        rgba(0, 0, 0, 0.4) 35%,
        rgba(0, 0, 0, 0.6) 45%,
        rgba(0, 0, 0, 0.8) 55%,
        rgba(0, 0, 0, 0.95) 65%,
        rgba(0, 0, 0, 1) 75%,
        rgba(0, 0, 0, 1) 100%
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 15%,
        rgba(0, 0, 0, 0.2) 25%,
        rgba(0, 0, 0, 0.4) 35%,
        rgba(0, 0, 0, 0.6) 45%,
        rgba(0, 0, 0, 0.8) 55%,
        rgba(0, 0, 0, 0.95) 65%,
        rgba(0, 0, 0, 1) 75%,
        rgba(0, 0, 0, 1) 100%
    );
}

[data-theme="dark"] .hero-background-video {
    filter: brightness(0.9) contrast(1.5) saturate(1.6);
}

/* ===== Frosted Glass Overlay Effect ===== */
.frosted-glass-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.8) 8%,
        rgba(255, 255, 255, 0.65) 15%,
        rgba(255, 255, 255, 0.45) 22%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.18) 38%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.05) 52%,
        rgba(255, 255, 255, 0.02) 58%,
        transparent 65%,
        transparent 100%
    );
    backdrop-filter: blur(1px) saturate(50%) brightness(1.05);
    -webkit-backdrop-filter: blur(1px) saturate(50%) brightness(1.05);
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

[data-theme="dark"] .frosted-glass-overlay {
    width: 60%;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.55) 8%,
        rgba(10, 10, 10, 0.4) 15%,
        rgba(10, 10, 10, 0.28) 22%,
        rgba(10, 10, 10, 0.18) 30%,
        rgba(10, 10, 10, 0.1) 38%,
        rgba(10, 10, 10, 0.05) 45%,
        rgba(10, 10, 10, 0.02) 52%,
        transparent 58%,
        transparent 100%
    );
    backdrop-filter: blur(1px) saturate(50%) brightness(0.92);
    -webkit-backdrop-filter: blur(1px) saturate(50%) brightness(0.92);
}

[data-theme="dark"] .city-map-background {
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 10%,
        rgba(0, 0, 0, 0.2) 20%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.95) 60%,
        rgba(0, 0, 0, 1) 70%,
        rgba(0, 0, 0, 1) 100%
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 10%,
        rgba(0, 0, 0, 0.2) 20%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.95) 60%,
        rgba(0, 0, 0, 1) 70%,
        rgba(0, 0, 0, 1) 100%
    );
}

.frosted-glass-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(212, 175, 55, 0.015) 20%,
        transparent 60%,
        transparent 80%,
        transparent 100%
    );
    pointer-events: none;
}

.frosted-glass-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(192, 192, 192, 0.015) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0.5;
}

/* ===== Particles Container ===== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: auto;
    overflow: hidden;
}

#particles-js {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 auto;
    display: block;
}

#particles-js canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 80px;
    z-index: 1;
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text-column {
    display: flex;
    align-items: center;
    padding-right: 3rem;
    position: relative;
    z-index: 2;
}

.hero-text-content {
    width: 100%;
    text-align: left;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 100%;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    border: 2px solid #d4af37;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

[data-theme="dark"] .btn-gold {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    border-color: #f4d03f;
    color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

[data-theme="dark"] .btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.btn-outline.btn-silver {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--gold);
    font-weight: 600;
}

[data-theme="dark"] .btn-outline.btn-silver {
    background: transparent;
    color: var(--silver);
    border-color: var(--glass-border);
}

.btn-outline.btn-silver:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
    color: var(--text-primary);
    transform: translateY(-2px);
}

[data-theme="dark"] .btn-outline.btn-silver:hover {
    background: rgba(192, 192, 192, 0.1);
    border-color: var(--silver);
    color: var(--silver-light);
}

/* Integrity Badges */
.integrity-badges {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 1.2rem;
    margin-top: 2.5rem;
    margin-bottom: 0;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.badge-item:hover {
    border-color: var(--gold);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Market Insights Slogan Box */
.market-slogan-wrapper {
    display: flex;
    justify-content: center;
}

.market-slogan-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(244, 208, 63, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.7);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

[data-theme="dark"] .market-slogan-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(244, 208, 63, 0.28));
    color: var(--bg-primary);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.35);
}

/* ===== Hero Footer Text ===== */
.hero-footer-text {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-footer-main {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 0.5rem;
}

.hero-footer-license {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 500;
    display: block;
}

[data-theme="dark"] .hero-footer-main {
    color: var(--text-primary);
}

[data-theme="dark"] .hero-footer-license {
    color: var(--gold);
}

/* ===== What I Do Section ===== */
.what-i-do-section {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== Market Section ===== */
.market-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.featured-article {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.featured-article:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.article-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.article-excerpt {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.article-cards-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.article-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.article-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.article-card-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
}

.article-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.article-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.article-card-link {
    color: var(--gold);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.article-card-link:hover {
    color: var(--gold-light);
    gap: 0.75rem;
}

/* ===== Philosophy Section ===== */
.philosophy-section {
    background: var(--bg-secondary);
    padding: var(--section-padding);
    position: relative;
    z-index: 2;
}

.philosophy-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    isolation: isolate;
}

.philosophy-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.philosophy-points {
    margin-bottom: 3rem;
}

.philosophy-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.philosophy-point i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.philosophy-point strong {
    color: var(--text-primary);
}

.philosophy-quote {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    isolation: isolate;
}

.philosophy-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.6;
}

.philosophy-quote blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--gold);
    line-height: 0;
    vertical-align: -0.3em;
    margin-right: 0.2em;
}

/* ===== Q&A Section (Accordion) ===== */
.qa-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.accordion-qa {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--glass-border);
    --bs-accordion-border-radius: 12px;
    --bs-accordion-inner-border-radius: 12px;
}

.accordion-qa .accordion-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-qa .accordion-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.accordion-qa .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-qa .accordion-button {
    background: transparent;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1.5rem 2rem;
    border: none;
    box-shadow: none;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-qa .accordion-button:not(.collapsed) {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    box-shadow: none;
}

.accordion-qa .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-qa .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-qa .accordion-button:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem var(--gold-glow);
    z-index: 3;
}

.accordion-qa .accordion-collapse {
    border-top: 1px solid var(--glass-border);
}

.accordion-qa .accordion-body {
    padding: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.accordion-qa .accordion-body p {
    margin-bottom: 1.25rem;
}

.qa-subheading {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.qa-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.qa-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.qa-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.qa-list li strong {
    color: var(--text-primary);
}

.qa-question-inline {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.snapshot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.snapshot-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.snapshot-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.snapshot-metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.snapshot-metric:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.metric-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.contact-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3rem;
}

.contact-note {
    color: var(--text-secondary);
    font-style: italic;
}

.contact-form .form-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .contact-form .form-control {
    background: rgba(20, 20, 20, 0.8);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--gold);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem var(--gold-glow);
    outline: none;
}

[data-theme="dark"] .contact-form .form-control:focus {
    background: rgba(20, 20, 20, 0.9);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.form-check {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-check:hover {
    border-color: var(--gold);
    background: rgba(20, 20, 20, 0.7);
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    margin-top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

[data-theme="dark"] .form-check-input {
    background-color: rgba(20, 20, 20, 0.8);
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.form-check-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem var(--gold-glow);
    outline: none;
}

.form-check-label {
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

.form-check-input:checked ~ .form-check-label {
    color: var(--text-primary);
}

.form-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--silver);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-company-name {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-address {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.footer-phone {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-link i {
    font-size: 1rem;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 auto 0.75rem;
    font-style: italic;
}

.footer-license {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .philosophy-quote blockquote {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .integrity-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .badge-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .brand-logo {
        height: 30px;
    }
    
    .frosted-glass-overlay {
        backdrop-filter: blur(15px) saturate(150%);
        -webkit-backdrop-filter: blur(15px) saturate(150%);
    }
    
    .city-map-background {
        filter: brightness(0.5) contrast(1.0) saturate(1.1);
    }
    
    .hero-text-column {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .city-map-background {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        right: 0;
    }
    
    .frosted-glass-overlay {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        right: 0;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(255, 255, 255, 0.05) 60%,
            transparent 100%
        );
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .integrity-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .badge-item {
        font-size: 0.75rem;
        padding: 0.5rem 0.9rem;
    }
    
    .hero-footer-text {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }
    
    .hero-footer-main {
        font-size: 1.2rem;
    }
    
    .hero-footer-license {
        font-size: 0.9rem;
    }
    
    .theme-toggle-container {
        top: 15px;
        right: 15px;
    }
    
    .theme-toggle {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .service-card,
    .featured-article,
    .philosophy-content,
    .contact-content {
        padding: 2rem;
    }
    
    .snapshot-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .philosophy-quote blockquote {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: auto;
        min-width: 200px;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .footer-company-name {
        font-size: 1.1rem;
    }
    
    .footer-address,
    .footer-phone {
        font-size: 0.9rem;
    }
    
    .footer-text,
    .footer-disclaimer,
    .footer-license {
        font-size: 0.85rem;
    }
}

/* ===== Futuristic Enhancements ===== */
.service-card,
.featured-article,
.article-card,
.philosophy-content,
.contact-content,
.snapshot-widget {
    position: relative;
    overflow: hidden;
}

.service-card::after,
.featured-article::after,
.article-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::after,
.featured-article:hover::after,
.article-card:hover::after {
    opacity: 1;
}

/* Glowing border effect */
.service-card,
.featured-article,
.article-card {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    transition: box-shadow 0.3s ease;
}

.service-card:hover,
.featured-article:hover,
.article-card:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), 0 0 60px rgba(212, 175, 55, 0.1);
}

/* ===== Utility Classes ===== */
.text-gold {
    color: var(--gold);
}

.text-silver {
    color: var(--silver);
}

.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.border-gold {
    border-color: var(--gold) !important;
}

/* ===== Article Page Styles ===== */
.article-header-section {
    padding: 120px 0 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--glass-border);
}

.article-header-content {
    position: relative;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.back-link:hover {
    color: var(--gold);
    gap: 0.75rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0;
}

.article-content-section {
    background: var(--bg-primary);
    min-height: 60vh;
}

.article-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 4rem 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.article-body {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body .lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 2rem;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold);
    text-align: center;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    font-family: var(--font-heading);
}

.article-section-title {
    font-size: 2rem;
    color: var(--gold);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--glass-border);
}

.article-section-title:first-of-type {
    margin-top: 0;
}

.article-disclaimer {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.article-disclaimer p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.article-disclaimer strong {
    color: var(--text-primary);
}

.article-footer-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.article-footer-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-content {
        padding: 2.5rem 2rem;
    }
    
    .article-section-title {
        font-size: 1.5rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
}

/* ===== Smooth Animations ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

