/* ═══════════════════════════════════════════
   BADRI FM — MAIN STYLESHEET
   Red + Black theme · Radio Station
   ═══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
::selection { background: var(--primary); color: #fff; }
.text-red { color: var(--primary); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }

/* ── CONTAINER ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── NAVBAR ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(5,5,5,0.95); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000; padding: 0; height: 70px;
    display: flex; align-items: center;
    transition: background 0.3s;
}
.nav-container {
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { line-height: 1; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem; font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-text .text-red { -webkit-text-fill-color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
    color: var(--text); font-size: 0.9rem; font-weight: 500;
    position: relative; padding: 4px 0;
    transition: color 0.3s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--primary); transform: scaleX(0);
    transition: transform 0.3s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span {
    display: block; width: 28px; height: 2px; background: #fff;
    transition: 0.3s; border-radius: 2px;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 28px; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem;
    cursor: pointer; transition: all 0.3s; border: none;
    text-decoration: none; white-space: nowrap;
}
.btn-primary {
    background: var(--primary); color: #fff;
    box-shadow: 0 4px 20px rgba(230,0,18,0.3);
}
.btn-primary:hover {
    background: var(--primary-dark); transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(230,0,18,0.5);
}
.btn-outline {
    background: transparent; color: var(--text);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-small { padding: 8px 20px; font-size: 0.85rem; }

/* ── PULSE ANIMATION ── */
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(230,0,18,0.6); }
    70% { box-shadow: 0 0 0 20px rgba(230,0,18,0); }
    100% { box-shadow: 0 0 0 0 rgba(230,0,18,0); }
}
.pulse-animation { animation: pulse-ring 2s infinite; }

/* ── HERO ── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #050505 0%, #1a0000 40%, #0a0a0a 100%);
    padding-top: 70px; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -30%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(230,0,18,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: ''; position: absolute; bottom: -30%; left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(230,0,18,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-overlay { display: none; }
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-badge {
    display: inline-block; padding: 8px 20px; border-radius: 50px;
    background: rgba(230,0,18,0.2); border: 1px solid rgba(230,0,18,0.4);
    color: var(--primary); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
    margin-bottom: 20px;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem); font-weight: 900;
    margin-bottom: 16px;
}
.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.4rem); color: var(--text-muted);
    margin-bottom: 10px; font-weight: 500;
}
.hero-desc {
    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    color: var(--text-muted); margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
    display: flex; justify-content: center; gap: 60px;
    padding: 30px 0; border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
    display: block; font-size: 1.8rem; font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ── NOW PLAYING BAR ── */
.now-playing-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(10,10,10,0.95); backdrop-filter: blur(15px);
    border-top: 2px solid var(--primary);
    z-index: 999; padding: 12px 0;
    transition: transform 0.3s;
}
.now-playing-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 15px;
}
.live-dot {
    display: inline-block; width: 8px; height: 8px;
    background: var(--primary); border-radius: 50%;
    animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }
.np-indicator { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); white-space: nowrap; }
.np-song { flex: 1; text-align: center; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.np-controls { display: flex; gap: 10px; }
.np-btn {
    background: none; border: none; color: var(--primary);
    font-size: 1.8rem; cursor: pointer; line-height: 1;
    transition: all 0.3s;
}
.np-btn:hover { transform: scale(1.15); color: var(--primary-light); }

/* ── SECTION COMMON ── */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-darker); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block; padding: 6px 18px; border-radius: 50px;
    background: rgba(230,0,18,0.15); color: var(--primary);
    font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
    margin-bottom: 12px;
}
.section-sub { color: var(--text-muted); max-width: 600px; margin: 12px auto 0; font-size: 1.05rem; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.about-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 35px 25px; text-align: center;
    transition: all 0.4s;
}
.about-card:hover {
    transform: translateY(-8px); border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(230,0,18,0.1);
}
.about-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(230,0,18,0.15); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.5rem; color: var(--primary);
}
.about-card h3 { margin-bottom: 12px; }
.about-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ── SCHEDULE ── */
.schedule-tabs {
    display: flex; justify-content: center; gap: 16px; margin-bottom: 40px;
}
.tab-btn {
    padding: 10px 32px; border-radius: 50px; border: 2px solid var(--border);
    background: transparent; color: var(--text-muted); font-weight: 600; font-size: 0.9rem;
    cursor: pointer; transition: all 0.3s;
}
.tab-btn.active { border-color: var(--primary); color: #fff; background: rgba(230,0,18,0.15); }
.tab-btn:hover { border-color: var(--primary); color: #fff; }
.schedule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.schedule-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 22px; display: flex; gap: 16px;
    align-items: center; transition: all 0.3s;
}
.schedule-card:hover { border-color: var(--primary); }
.schedule-time {
    font-size: 0.75rem; font-weight: 700; color: var(--primary);
    background: rgba(230,0,18,0.1); padding: 6px 14px; border-radius: 20px;
    white-space: nowrap;
}
.schedule-info h4 { font-size: 1.05rem; margin-bottom: 4px; }
.schedule-info p { font-size: 0.85rem; color: var(--text-muted); }

/* ── RJs ── */
.rjs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.rj-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; text-align: center; padding: 30px 20px;
    transition: all 0.4s;
}
.rj-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.rj-avatar {
    width: 90px; height: 90px; border-radius: 50%; 
    background: rgba(230,0,18,0.1); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 2.2rem; color: var(--primary);
    border: 3px solid transparent; transition: border-color 0.3s;
    overflow: hidden;
}
.rj-avatar img {
    width: 100%; height: 100%; object-fit: cover;
}
.rj-card:hover .rj-avatar { border-color: var(--primary); }
.rj-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.rj-title { display: block; font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.rj-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── NEWS ── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.news-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden; transition: all 0.4s;
}
.news-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.news-image {
    height: 180px; background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 2rem;
    overflow: hidden;
}
.news-image img {
    width: 100%; height: 100%; object-fit: cover;
}
.news-body { padding: 20px; }
.news-badge {
    display: inline-block; padding: 4px 12px; border-radius: 20px;
    background: rgba(230,0,18,0.15); color: var(--primary);
    font-size: 0.72rem; font-weight: 600; margin-bottom: 8px;
}
.news-body h4 { margin-bottom: 8px; font-size: 1.05rem; }
.news-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.news-meta { display: flex; justify-content: space-between; margin-top: 12px; font-size: 0.78rem; color: #555; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.gallery-item {
    height: 220px; border-radius: 16px; overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--border);
    position: relative; cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
}
.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
.gallery-item .gallery-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px; background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff; font-size: 0.85rem;
}
.gallery-placeholder i { font-size: 2rem; }
.gallery-placeholder {
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 12px; color: var(--text-muted);
}

/* ── CONTACT ── */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    max-width: 1000px; margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 25px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item i { color: var(--primary); font-size: 1.2rem; margin-top: 4px; width: 24px; }
.contact-item strong { display: block; margin-bottom: 4px; }
.contact-item .fa-map-marker-alt { font-size: 1.3rem; }
.contact-form {
    display: flex; flex-direction: column; gap: 16px;
    background: var(--bg-card); padding: 30px; border-radius: 16px;
    border: 1px solid var(--border);
}
.contact-form input, .contact-form select, .contact-form textarea {
    padding: 14px 18px; border-radius: 10px; border: 1px solid var(--border);
    background: var(--bg-darker); color: var(--text);
    font-family: inherit; font-size: 0.95rem; transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--primary);
}
.contact-form textarea { resize: vertical; }
.contact-social { display: flex; gap: 12px; margin-top: 10px; }
.social-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--bg-card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text); font-size: 1.1rem; transition: all 0.3s;
}
.social-icon:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── FOOTER ── */
.footer {
    background: var(--bg-darker); border-top: 1px solid var(--border);
    padding: 60px 0 30px; margin-bottom: 65px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--bg-card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); transition: all 0.3s;
}
.footer-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.footer-links h4 { margin-bottom: 16px; font-size: 1rem; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary); }
.footer-contact h4 { margin-bottom: 16px; }
.footer-contact p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--primary); width: 16px; }
.footer-bottom {
    border-top: 1px solid var(--border); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    color: #555; font-size: 0.85rem;
}
.footer-tagline { color: var(--text-muted); font-style: italic; }

/* ── SCROLL TO TOP ── */
.scroll-top {
    position: fixed; bottom: 85px; right: 25px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: #fff; border: none;
    font-size: 1.2rem; cursor: pointer;
    box-shadow: 0 4px 15px rgba(230,0,18,0.3);
    opacity: 0; transform: translateY(20px);
    transition: all 0.3s; z-index: 99;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 70px; left: 0; right: 0;
        background: rgba(5,5,5,0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 30px; gap: 20px;
        transform: translateY(-100%); opacity: 0; pointer-events: none;
        transition: all 0.4s; border-bottom: 1px solid var(--border);
    }
    .nav-links.active { transform: translateY(0); opacity: 1; pointer-events: all; }
    .hero-stats { gap: 30px; flex-wrap: wrap; }
    .hero-actions { flex-direction: column; align-items: center; }
    .section { padding: 60px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .schedule-tabs { flex-direction: column; align-items: center; }
    .now-playing-inner { flex-wrap: wrap; justify-content: center; }
    .np-song { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
    .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 1.3rem; }
}

/* ── DIRECTORS (FOOTER) ── */
.footer-directors {
    border-top: 1px solid var(--border);
    margin-top: 40px;
    padding-top: 40px;
}
.footer-directors-header {
    text-align: center;
    margin-bottom: 24px;
}
.footer-directors-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 0 4px;
}
.footer-directors-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}
.footer-directors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.footer-director-card {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    transition: border-color 0.3s;
}
.footer-director-card:hover {
    border-color: var(--primary);
}
.fd-img {
    width: 70px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-darker);
}
.fd-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fd-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-muted);
}
.fd-info h5 {
    font-size: 0.95rem;
    color: #fff;
    margin: 0 0 2px;
}
.fd-role {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.fd-bio {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 6px 0 0;
}
.fd-empty {
    font-style: italic;
    opacity: 0.6;
}
.fd-mv {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.fd-mv-item {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 6px;
    line-height: 1.4;
    flex: 1;
    min-width: 100px;
}
.fd-mission {
    background: rgba(230,0,18,0.08);
    border: 1px solid rgba(230,0,18,0.2);
    color: var(--text-muted);
}
.fd-vision {
    background: rgba(255,215,0,0.08);
    border: 1px solid rgba(255,215,0,0.2);
    color: var(--text-muted);
}
.fd-mv-item strong {
    color: #fff;
}
@media (max-width: 600px) {
    .footer-directors-grid {
        grid-template-columns: 1fr;
    }
    .footer-director-card {
        flex-direction: column;
        text-align: center;
    }
    .fd-img {
        margin: 0 auto;
    }
}

/* ═══════════════════════════════════════════
   DIRECTORS PAGE
   ═══════════════════════════════════════════ */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(230,0,18,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 16px 0 8px;
    color: #fff;
}
.page-hero-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}
.directors-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0d0000 100%);
}

/* Directors Grid */
.directors-section {
    padding: 60px 0 80px;
}
.directors-grid-full {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.director-card-full {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.director-card-full:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}
.director-card-inner {
    display: flex;
    gap: 28px;
    padding: 32px;
}
.dc-image {
    width: 200px;
    min-height: 240px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-darker);
    position: relative;
}
.dc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dc-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-darker), #1a0a0a);
}
.dc-ph-icon {
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.5;
}
.dc-info {
    flex: 1;
}
.dc-badge {
    display: inline-block;
    background: rgba(230,0,18,0.12);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.dc-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 0 12px;
}
.dc-about {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.dc-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.dc-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.dc-detail-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
    width: 18px;
    text-align: center;
}
.dc-detail-item strong {
    display: block;
    color: #ddd;
    font-size: 0.82rem;
}
.dc-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.dc-mv-item {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    line-height: 1.5;
}
.dc-mv-item strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
    font-size: 0.88rem;
}
.dc-mv-item p {
    color: var(--text-muted);
    margin: 0;
}
.dc-mission {
    background: rgba(230,0,18,0.06);
    border: 1px solid rgba(230,0,18,0.15);
}
.dc-vision {
    background: rgba(255,215,0,0.06);
    border: 1px solid rgba(255,215,0,0.15);
}

/* Company Info Box */
.company-info-box {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 28px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.ci-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.ci-header i {
    font-size: 1.5rem;
    color: var(--primary);
}
.ci-header h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.2rem;
}
.company-info-box > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
.ci-meta {
    display: flex;
    gap: 24px;
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.ci-meta i {
    color: var(--primary);
    margin-right: 6px;
}

@media (max-width: 768px) {
    .director-card-inner {
        flex-direction: column;
        padding: 20px;
    }
    .dc-image {
        width: 140px;
        min-height: 160px;
        margin: 0 auto;
    }
    .dc-mv {
        grid-template-columns: 1fr;
    }
    .ci-meta {
        flex-direction: column;
        gap: 8px;
    }
}
