/* 
   Taiwan UAS Group - Official Brand Style Guide v2.0
   Theme: Aerospace, Industrial, Official, High-Trust
   Audience: International Military / Government / Enterprise
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Michroma&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* ═══════════════════════════════════════════════
       AEROSPACE PRIME CONTRACTOR BRAND COLOR SYSTEM
       All variables defined and audited — v2.0
       ═══════════════════════════════════════════════ */

    /* Background Layer System */
    --color-deep-navy: #071B2A;           /* Primary Background — deepest layer */
    --color-aerospace-navy: #0B2238;      /* Secondary Background — section alternator */
    --color-panel-navy: #0F2435;          /* Card / Panel Background */
    --color-footer-navy: #04121D;         /* Footer — darkest layer */
    
    /* Text Color Scale — all verified WCAG AA compliant on dark backgrounds */
    --color-silver-white: #E5E7EB;        /* Primary Headings — contrast 10.7:1 on deep-navy ✓ */
    --color-soft-white: #D1D5DB;          /* Body Text — contrast 9.0:1 on deep-navy ✓ */
    --color-cool-gray: #9CA3AF;           /* Secondary Text / Subheadings — 5.7:1 ✓ */
    --color-mist-gray: #6B7280;           /* Labels / Small Text — 4.6:1 ✓ (min WCAG AA) */
    
    /* Primary Accent — Matte Titanium Orange */
    --color-titanium-orange: #C98324;     /* Primary Accent — 4.8:1 on deep-navy ✓ */
    --color-orange-hover: #D98F32;        /* Hover / Active state */
    
    /* ═══ ALIAS VARIABLES (backward compatibility) ═══
       These were used in inline styles before this audit.
       Now properly defined to match the primary system. */
    --color-copper-orange: #C98324;       /* ALIAS → --color-titanium-orange */
    --color-cool-gray-blue: #94A3B8;      /* Slate-blue gray — 6.4:1 on deep-navy ✓ */
    
    /* Status / Badge Colors */
    --color-success: #22C55E;             /* Production status — verified green */
    --color-warning: #F59E0B;             /* Prototype status — verified amber */
    
    /* Structural Borders */
    --color-steel-blue: #1E293B;          /* Primary borders */
    --color-muted-border: #111E2F;        /* Low-contrast / subtle borders */
    
    /* Typography System */
    --font-brand: 'Eurostile Extended', 'EurostileExt-Bol', 'Michroma', 'Roboto', sans-serif;
    --font-heading: 'Eurostile Extended', 'Michroma', 'Roboto', sans-serif;
    --font-body: 'Inter', 'Roboto', 'DIN', sans-serif;
    --font-spec: 'Inter', 'Roboto', monospace;
    
    --container: 1400px;
}

/* Base Styles */
* { box-sizing: border-box; }
body { 
    margin: 0; 
    font-family: var(--font-body); 
    background: var(--color-deep-navy); 
    color: var(--color-soft-white); 
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(30, 41, 59, 0.15) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q 50 45 100 50' stroke='rgba(30, 41, 59, 0.05)' fill='transparent'/%3E%3C/svg%3E");
    background-attachment: fixed;
}

h1, h2, h3, h4 { 
    margin: 0; 
    color: var(--color-silver-white); 
    font-family: var(--font-brand); 
    text-transform: uppercase; 
    letter-spacing: 0.1em; /* Technical spacing */
    scroll-margin-top: 120px;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

a { color: inherit; text-decoration: none; transition: 0.2s; }

/* Typography Scale */
h1 { 
    font-size: clamp(40px, 6vw, 72px); 
    line-height: 1.1; 
    font-weight: 400; 
    letter-spacing: 0.15em;
}
h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.2; margin-bottom: 24px; letter-spacing: 0.12em; font-weight: 400; }
.eyebrow { 
    color: var(--color-titanium-orange); 
    font-weight: 700; 
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 0.2em; 
    margin-bottom: 12px; 
    display: block;
}
.lead { font-size: clamp(16px, 1.5vw, 20px); color: var(--color-cool-gray); line-height: 1.6; margin-bottom: 32px; }
/* On .dark / .hero sections, .lead gets a lighter tint for better readability */
.dark .lead, .hero .lead, [style*='color-deep-navy'] .lead { color: var(--color-soft-white); }

/* --- Header & Navigation --- */
.header {
    background: var(--color-deep-navy);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-steel-blue);
}
.header-container, .standard-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.standard-container {
    display: block;
}
.logo {
    font-family: var(--font-brand);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-silver-white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1;
}
.logo span { color: var(--color-titanium-orange); }

.nav-main { display: flex; gap: clamp(10px, 1.2vw, 25px); align-items: center; }
.nav-item { position: relative; padding: 10px 0; }
.nav-item > a {
    color: var(--color-soft-white);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.nav-item:hover > a { color: var(--color-titanium-orange); }

/* --- Header Tools & Language Selector --- */
.header-tools { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; }

.lang-selector { position: relative; }
.lang-current { 
    background: rgba(15, 36, 53, 0.4); 
    border: 1px solid var(--color-steel-blue); 
    color: var(--color-silver-white); 
    padding: 6px 14px; 
    font-size: 11px; 
    font-weight: 700; 
    text-transform: uppercase; 
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.lang-selector:hover .lang-current { 
    border-color: var(--color-titanium-orange); 
    color: var(--color-titanium-orange); 
    box-shadow: 0 0 15px rgba(201,131,36,0.15);
    background: rgba(15, 36, 53, 0.7);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(15, 36, 53, 0.9);
    min-width: 150px;
    padding: 8px 0;
    border: 1px solid var(--color-steel-blue);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1100;
    border-radius: 6px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.lang-selector:hover .lang-dropdown { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}
.lang-dropdown a {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    color: var(--color-soft-white);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.lang-dropdown a:hover { 
    background: rgba(255,255,255,0.03); 
    color: var(--color-titanium-orange); 
    border-left-color: var(--color-titanium-orange);
    padding-left: 22px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--color-aerospace-navy);
    min-width: 240px;
    padding: 15px 0;
    border: 1px solid var(--color-steel-blue);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 1001;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
    display: block;
    padding: 12px 25px;
    color: var(--color-silver-white);
    font-size: 13px;
    font-weight: 500;
}
.dropdown a:hover { background: var(--color-panel-navy); color: var(--color-copper-orange); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.06em;
    border-radius: 0;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}
.btn.primary { 
    background: var(--color-titanium-orange); 
    color: var(--color-deep-navy); 
    border: 1px solid var(--color-titanium-orange); 
}
.btn.primary:hover { 
    background: var(--color-orange-hover); 
    color: var(--color-silver-white);
    transform: translateY(-1px); 
    box-shadow: 0 4px 12px rgba(201,131,36,0.2); 
}
.btn.ghost { 
    background: transparent; 
    color: var(--color-silver-white); 
    border: 1px solid var(--color-steel-blue); 
}
.btn.ghost:hover { 
    background: rgba(255,255,255,0.02); 
    border-color: var(--color-titanium-orange); 
}
.btn-sm { padding: 10px 20px; font-size: 11px; }

/* --- Components --- */
.product-card {
    background: linear-gradient(135deg, var(--color-panel-navy) 0%, #0a1622 100%);
    border: 1px solid var(--color-steel-blue);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-titanium-orange), transparent);
    transition: 0.5s;
    opacity: 0;
}
.product-card:hover::before {
    left: 100%;
    opacity: 1;
}
.product-card:hover {
    background: var(--color-panel-navy);
    border-color: var(--color-titanium-orange);
    transform: translateY(-4px);
}
.product-card h3 { color: var(--color-silver-white); margin-bottom: 12px; font-size: 16px; letter-spacing: 0.08em; }
.product-card p { color: var(--color-cool-gray); font-size: 13px; }
.spec-number { color: var(--color-titanium-orange); font-size: 32px; font-weight: 700; font-family: var(--font-spec); }

/* Status Labels */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid var(--color-steel-blue);
}
.status-production { color: var(--color-success); border-color: var(--color-success); }
.status-prototype { color: var(--color-warning); border-color: var(--color-warning); }
.status-concept { color: var(--color-mist-gray); border-color: var(--color-steel-blue); }

/* --- Forms --- */
form input, form textarea, form select {
    background: var(--color-deep-navy);
    border: 1px solid var(--color-steel-blue);
    color: var(--color-soft-white);
    padding: 15px;
    width: 100%;
    font-family: inherit;
    margin-bottom: 20px;
}
form input:focus { border-color: var(--color-copper-orange); outline: none; }
form label { display: block; margin-bottom: 8px; color: var(--color-mist-gray); font-size: 12px; text-transform: uppercase; }

/* --- Sections --- */
.subhero { padding: 120px 40px; text-align: center; background: radial-gradient(circle at 50% 0%, #102B43 0%, var(--color-deep-navy) 80%); }
.subhero h1 {
    font-size: clamp(28px, 4.5vw, 56px);
    line-height: 1.15;
    letter-spacing: 0.06em;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.light { background: var(--color-aerospace-navy); padding: 100px 40px; }
.dark { background: var(--color-deep-navy); padding: 100px 40px; }

/* --- Footer --- */
.footer {
    background: var(--color-footer-navy);
    padding: 100px 40px 60px;
    border-top: 1px solid var(--color-steel-blue);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
}
.footer h4 { color: var(--color-silver-white); font-size: 13px; margin-bottom: 30px; opacity: 0.7; }
.footer a { color: var(--color-cool-gray-blue); display: block; margin-bottom: 15px; font-size: 14px; }
.footer a:hover { color: var(--color-copper-orange); padding-left: 5px; }
.footer .small { grid-column: 1/-1; border-top: 1px solid var(--color-steel-blue); padding-top: 40px; font-size: 12px; color: var(--color-mist-gray); }

/* --- Hero Section --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background: radial-gradient(circle at 80% 20%, rgba(217,130,43,0.1) 0%, var(--color-deep-navy) 60%);
}
.hero-copy { max-width: 800px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 40px; opacity: 0.5; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* --- Grid Systems --- */
.product-grid, .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.product-media {
    height: 120px;
    background: var(--color-aerospace-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    border: 1px solid var(--color-steel-blue);
    font-family: var(--font-brand);
    padding: 0 20px;
    text-align: center;
}

.section-intro { margin-bottom: 60px; max-width: 800px; }
.section-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }

/* Video Cards */
.video-card { background: var(--color-panel-navy); border: 1px solid var(--color-steel-blue); padding: 20px; }
.video-frame { position: relative; padding-bottom: 56.25%; height: 0; margin-bottom: 20px; background: #000; }
.video-frame iframe, .video-frame video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* Applications Strip */
.app-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.app-strip a { 
    background: var(--color-panel-navy); 
    border: 1px solid var(--color-steel-blue); 
    padding: 12px 24px; 
    font-size: 13px; 
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}
.app-strip a:hover { border-color: var(--color-copper-orange); color: var(--color-copper-orange); transform: translateY(-3px); }

/* Metrics */
.metrics { padding: 120px 40px; background: var(--color-footer-navy); }
.metric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 60px; }
.metric-grid strong { display: block; font-size: 48px; color: var(--color-copper-orange); font-family: var(--font-brand); margin-bottom: 10px; }
.metric-grid span { font-size: 12px; color: var(--color-mist-gray); text-transform: uppercase; letter-spacing: 0.1em; }

/* Made Section */
.made { padding: 140px 40px; text-align: center; max-width: 1000px; margin: 0 auto; }
.made p { font-size: 22px; color: var(--color-cool-gray-blue); line-height: 1.6; }

/* Contact Section */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
@media (max-width: 1024px) { 
    .contact { grid-template-columns: 1fr; gap: 60px; } 
    .section-row { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* Page Spacing */
main { min-height: 80vh; }
.product-detail {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 80px;
    scroll-margin-top: 120px;
}
@media (max-width: 1100px) {
    .product-detail { grid-template-columns: 1fr; }
}

/* Animation - Simplified to reduce CLS and improve Core Web Vitals */
.reveal { opacity: 0; transform: translateY(10px); transition: 0.6s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1024px) {
    .nav-main { 
        display: block; 
        position: fixed;
        top: 0;
        right: -300px; /* Hidden by default */
        width: 280px;
        height: 100vh;
        background: var(--color-aerospace-navy);
        z-index: 1050;
        padding: 80px 30px 40px;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border-left: 1px solid var(--color-steel-blue);
        overflow-y: auto;
    }
    .nav-main.active { right: 0; box-shadow: -20px 0 50px rgba(0,0,0,0.5); }
    
    .nav-main .nav-item { margin-bottom: 25px; border-bottom: 1px solid var(--color-muted-border); padding-bottom: 15px; }
    .nav-main .nav-item:last-child { border-bottom: none; }
    
    .nav-main .nav-item > a { 
        font-size: 16px; 
        font-weight: 800; 
        color: var(--color-silver-white);
        display: block;
        margin-bottom: 10px;
    }
    
    .nav-main .dropdown { 
        position: static; 
        opacity: 1; 
        visibility: visible; 
        transform: none; 
        background: transparent; 
        box-shadow: none; 
        padding: 0 0 0 15px;
        border: none;
        min-width: auto;
    }
    .nav-main .dropdown a { 
        font-size: 13px; 
        padding: 8px 0; 
        color: var(--color-cool-gray-blue);
        border-bottom: none;
    }
    .nav-main .dropdown a:hover { color: var(--color-copper-orange); }

    .menu-toggle { 
        display: block; 
        z-index: 1100;
        background: transparent;
        border: none;
        width: 30px;
        height: 20px;
        position: relative;
    }
    .menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--color-silver-white);
        border-radius: 2px;
        transition: 0.3s;
    }
    .menu-toggle span { top: 50%; transform: translateY(-50%); }
    .menu-toggle span::before { top: -8px; left: 0; }
    .menu-toggle span::after { top: 8px; left: 0; }

    /* X Animation */
    .menu-toggle.active span { background: transparent; }
    .menu-toggle.active span::before { transform: rotate(45deg); top: 0; background: var(--color-copper-orange); }
    .menu-toggle.active span::after { transform: rotate(-45deg); top: 0; background: var(--color-copper-orange); }
}


/* --- Manufacturing Grid & Columns --- */
.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.mfg-col {
    padding-top: 20px;
}
.mfg-col h4 {
    font-size: 14px;
    color: var(--color-silver-white);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--color-titanium-orange);
    padding-bottom: 10px;
    display: inline-block;
}
.mfg-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}
.mfg-col ul li {
    font-size: 14px;
    color: var(--color-soft-white);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}
.mfg-col ul li::before {
    content: '•';
    color: var(--color-titanium-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.view-specs {
    font-size: 11px;
    color: var(--color-titanium-orange);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: 0.2s;
}
.view-specs:hover {
    color: var(--color-silver-white);
    letter-spacing: 0.15em;
}

/* ═══════════════════════════════════════════════
   MISSING COMPONENTS — Added in v2.0 Audit
   Previously used in templates but never defined
   ═══════════════════════════════════════════════ */

/* CONOPS Mission Profile Cards (index.php Section 5) */
.feature-card-top {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-steel-blue);
    border-top: 3px solid var(--color-titanium-orange);
    padding: 32px;
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.feature-card-top:hover {
    background: rgba(201, 131, 36, 0.05);
    border-color: var(--color-titanium-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Manufacturing Capability Blocks (index.php Section 6) */
.capability-block {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-steel-blue);
    transition: 0.3s;
}
.capability-block:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 131, 36, 0.4);
}

/* OEM Sensor Integration Bubbles (index.php Section 7.5) */
.sensor-bubble {
    background: rgba(201, 131, 36, 0.12);
    border: 1px solid var(--color-titanium-orange);
    color: var(--color-titanium-orange);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    font-family: var(--font-brand);
}

/* Domain / Portal Lightweight Cards (domain.php) */
.lightcard {
    background: var(--color-panel-navy);
    border: 1px solid var(--color-steel-blue);
    padding: 28px;
    transition: 0.3s;
    text-decoration: none;
    display: block;
}
.lightcard h3 { color: var(--color-silver-white); margin-bottom: 10px; font-size: 16px; }
.lightcard p { color: var(--color-cool-gray); font-size: 13px; line-height: 1.6; }
.lightcard:hover {
    border-color: var(--color-titanium-orange);
    background: rgba(201, 131, 36, 0.04);
    transform: translateY(-2px);
}

/* Product Detail Inner Layout */
.product-main { min-width: 0; }
@media (max-width: 1100px) {
    .product-main { width: 100%; }
}

/* AI Summary Block (product.php) */
.ai-summary {
    margin-top: 20px;
    border-left: 3px solid var(--color-titanium-orange);
    padding-left: 20px;
    color: var(--color-cool-gray-blue);
    font-size: 14px;
    font-style: italic;
    line-height: 1.7;
}

/* Eyebrow — increase minimum font-size for readability at scale */
/* NOTE: 11px can be hard to read at arm's length on large displays.
   For military/government clients on large monitors, we enforce 12px min. */
.eyebrow {
    font-size: clamp(12px, 0.85vw, 13px) !important;
}

/* About Page — Card Block Effects */
.about-card {
    background: linear-gradient(135deg, var(--color-panel-navy) 0%, #0a1622 100%);
    padding: 40px;
    text-align: left;
    border-radius: 4px;
    border: 1px solid var(--color-steel-blue);
    box-shadow: 0 4px 30px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-titanium-orange), transparent);
    transition: 0.5s ease;
    opacity: 0;
}
.about-card:hover::before {
    left: 100%;
    opacity: 1;
}
/* accent-orange / accent-blue: no visible static color, only used internally */
.about-card.accent-orange {}
.about-card.accent-blue {}
.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(201,131,36,0.08);
    border-color: rgba(201,131,36,0.35);
}
.about-card h3 {
    color: var(--color-silver-white);
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.about-card p {
    color: var(--color-soft-white);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}
.about-card p:last-child { margin-bottom: 0; }

