:root {
    --gold: #d4a437;
    --gold-light: #f0c75e;
    --gold-dark: #b8860b;
    --dark-bg: #0a0a0a;
    --dark-card: #111111;
    --dark-surface: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;
    --gradient-gold: linear-gradient(135deg, #d4a437, #f0c75e, #b8860b);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--dark-bg);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    line-height: 1.6;
    position: relative;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 5%;
    box-shadow: 0 2px 30px rgba(212, 164, 55, 0.1);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
}

.nav-links { display: flex; list-style: none; gap: 2.5rem; }

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 28px; height: 2px; background: var(--gold); transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Particle Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 5% 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(212, 164, 55, 0.05) 0%, transparent 70%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-text { flex: 1; }

.hero-text .greeting {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-text h1 .gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-container {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    min-height: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.typing-text {
    border-right: 2px solid var(--gold);
    padding-right: 5px;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 100% { border-color: var(--gold); }
    50% { border-color: transparent; }
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 164, 55, 0.3);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212, 164, 55, 0.5); }

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover { background: rgba(212, 164, 55, 0.1); transform: translateY(-3px); }

.hero-image {
    flex: 0 0 420px;
    width: 420px;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: 0 0 60px rgba(212, 164, 55, 0.2), 0 0 120px rgba(212, 164, 55, 0.1);
    opacity: 0;
    animation: fadeInRight 1s ease 0.6s forwards;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 72%;
    border-radius: 50%;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px dashed var(--gold-dark);
    animation: rotate 20s linear infinite;
    opacity: 0.4;
}

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(30px); } }
@keyframes fadeInRight { to { opacity: 1; transform: translateX(0); } from { opacity: 0; transform: translateX(50px); } }

/* Section Styles */
section { padding: 6rem 5%; position: relative; z-index: 1; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-header h2 .gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.gold-line { width: 60px; height: 3px; background: var(--gradient-gold); margin: 1rem auto; border-radius: 2px; }

/* About Section */
.about { background: var(--dark-card); }

.about-content { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 4rem; }

.about-image { flex: 0 0 350px; position: relative; }

.about-image img {
    width: 350px;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid rgba(212, 164, 55, 0.3);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.4;
}

.about-text { flex: 1; }

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}

.about-text p { color: var(--text-secondary); margin-bottom: 1.2rem; font-size: 1.05rem; }

.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }

.highlight-item { display: flex; align-items: center; gap: 0.8rem; }
.highlight-item i { color: var(--gold); font-size: 1.1rem; }
.highlight-item span { color: var(--text-secondary); font-size: 0.95rem; }

/* Stats Section */
.stats { padding: 5rem 5%; }

.stats-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--dark-surface);
    border-radius: 20px;
    border: 1px solid rgba(212, 164, 55, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 164, 55, 0.4);
    box-shadow: 0 15px 40px rgba(212, 164, 55, 0.1);
}

.stat-card:hover::before { transform: scaleX(1); }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label { color: var(--text-secondary); margin-top: 0.5rem; font-size: 0.9rem; font-weight: 500; }

/* Services Section */
.services { background: var(--dark-card); }

.services-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }

.service-card {
    padding: 2.5rem;
    background: var(--dark-surface);
    border-radius: 20px;
    border: 1px solid rgba(212, 164, 55, 0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 164, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 164, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon { background: var(--gradient-gold); color: var(--dark-bg); transform: scale(1.1); }

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* Method / Process Timeline */
.method { background: var(--dark-bg); }

.timeline { max-width: 900px; margin: 0 auto; position: relative; }

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform: translateX(-50%);
}

.timeline-item { position: relative; width: 50%; padding: 1rem 2.8rem; margin-bottom: 1.5rem; }
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }

.timeline-item .step-num {
    position: absolute;
    top: 1.6rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--dark-surface);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    z-index: 2;
}

.timeline-item:nth-child(odd) .step-num { right: -23px; }
.timeline-item:nth-child(even) .step-num { left: -23px; }

.timeline-content {
    background: var(--dark-surface);
    border: 1px solid rgba(212, 164, 55, 0.12);
    border-radius: 16px;
    padding: 1.6rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: rgba(212, 164, 55, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

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

/* Testimonials */
.testimonials { background: var(--dark-card); }

.testimonials-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }

.testimonial-card {
    background: var(--dark-surface);
    border: 1px solid rgba(212, 164, 55, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 164, 55, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.testimonial-card .stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; }

.testimonial-card p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

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

.testimonial-author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

.testimonial-author h4 { color: var(--text-primary); font-size: 0.95rem; margin-bottom: 0.15rem; }
.testimonial-author span { color: var(--text-muted); font-size: 0.82rem; }

/* FAQ Accordion */
.faq { background: var(--dark-bg); }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--dark-surface);
    border: 1px solid rgba(212, 164, 55, 0.12);
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active { border-color: rgba(212, 164, 55, 0.4); }

.faq-question {
    padding: 1.3rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.faq-question i { color: var(--gold); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 1.5rem 1.3rem; color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem; }

/* Recognition / Featured In */
.recognition {
    padding: 4rem 5%;
    background: var(--dark-bg);
    border-top: 1px solid rgba(212, 164, 55, 0.08);
    border-bottom: 1px solid rgba(212, 164, 55, 0.08);
}

.recognition-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.recognition-strip {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 3.5rem;
}

.recognition-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-secondary);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    opacity: 0.65;
    transition: all 0.3s ease;
}

.recognition-item i { color: var(--gold); font-size: 1.1rem; }
.recognition-item:hover { opacity: 1; transform: translateY(-3px); }

/* Articles / Insights */
.articles { background: var(--dark-card); }

.articles-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }

.article-card {
    background: var(--dark-surface);
    border: 1px solid rgba(212, 164, 55, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 164, 55, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.article-banner {
    height: 70px;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.8rem;
}

.article-body { padding: 1.8rem; display: flex; flex-direction: column; flex: 1; }

.article-meta { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; font-size: 0.78rem; }

.article-tag {
    background: rgba(212, 164, 55, 0.12);
    color: var(--gold);
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.article-meta .read-time { color: var(--text-muted); }

.article-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.article-card p { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.7; flex: 1; margin-bottom: 1.3rem; }

.article-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.article-link:hover { gap: 0.9rem; }

/* Mission Section */
.mission { text-align: center; position: relative; overflow: hidden; }

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 164, 55, 0.03) 0%, transparent 70%);
}

.mission-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }

.quote-icon { font-size: 4rem; color: var(--gold); opacity: 0.3; margin-bottom: 2rem; }

.mission blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mission .attribution { color: var(--gold); font-weight: 600; font-size: 1.1rem; }

.vision-text {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 164, 55, 0.2);
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact { background: var(--dark-card); }

.contact-content { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 3rem; }

.contact-cards { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }

.contact-card {
    padding: 2rem 3rem;
    background: var(--dark-surface);
    border-radius: 15px;
    border: 1px solid rgba(212, 164, 55, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(212, 164, 55, 0.15); }

.contact-card i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.contact-card h4 { color: var(--text-primary); margin-bottom: 0.5rem; font-size: 1rem; }
.contact-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* Footer */
footer {
    text-align: center;
    padding: 2.5rem 5%;
    border-top: 1px solid rgba(212, 164, 55, 0.1);
    position: relative;
    z-index: 1;
}

footer p { color: var(--text-muted); font-size: 0.9rem; }
footer .gold { color: var(--gold); }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Article Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
    background: var(--dark-card);
    border: 1px solid rgba(212, 164, 55, 0.25);
    border-radius: 22px;
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.5, 0, 0, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-banner {
    height: 130px;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 3rem;
    border-radius: 22px 22px 0 0;
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(212, 164, 55, 0.3);
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover { background: var(--gold); color: var(--dark-bg); transform: rotate(90deg); }

.modal-body { padding: 2.5rem; }

.modal-meta { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; font-size: 0.78rem; }

.modal-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.modal-body p { color: var(--text-secondary); line-height: 1.85; margin-bottom: 1.2rem; font-size: 1rem; }

.modal-body h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    font-size: 1.2rem;
    margin: 1.8rem 0 0.8rem;
}

.modal-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 164, 55, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-footer .avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.modal-footer h4 { margin: 0; color: var(--text-primary); font-size: 0.95rem; font-family: 'Inter', sans-serif; }
.modal-footer span { color: var(--text-muted); font-size: 0.82rem; }

body.modal-open { overflow: hidden; }

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content { flex-direction: column-reverse; text-align: center; gap: 2.5rem; }
    .hero-image { flex: 0 0 auto; width: 280px; height: 280px; }
    .hero-image img { width: 280px; height: 280px; }
    .hero-cta { justify-content: center; }
    .about-content { flex-direction: column; text-align: center; }
    .about-image { flex: 0 0 auto; }
    .about-image img { width: 280px; height: 340px; }
    .about-image::after { display: none; }
    .about-highlights { justify-items: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: right 0.4s ease;
        backdrop-filter: blur(20px);
    }
    .nav-links.active { right: 0; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 22px; }
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 1rem 1rem 1rem 3.5rem;
    }
    .timeline-item:nth-child(odd) .step-num,
    .timeline-item:nth-child(even) .step-num { left: 0; right: auto; }
    .hero-text h1 { font-size: 2.2rem; }
    .stat-number { font-size: 2.2rem; }
    section { padding: 4rem 5%; }
    .modal-body { padding: 1.8rem; }
    .modal-banner { height: 100px; font-size: 2.4rem; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-card { padding: 1.8rem 1rem; }
    .hero-image { width: 220px; height: 220px; }
    .hero-image img { width: 220px; height: 220px; }
    .contact-cards { flex-direction: column; width: 100%; }
    .contact-card { width: 100%; }
    .about-highlights { grid-template-columns: 1fr; }
}
