/* ==========================================================
   GLOBAL THEME — FORTUNE 500 BLACK + GOLD CINEMATIC
=========================================================== */

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

body {
    margin: 0;
    background: #000;
    font-family: "Inter", sans-serif;
    color: white;
}

/* ==================== NAV ==================== */
.nav {
    position: fixed;
    top: 0;
    width: 95%;
    height: 75px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-logo { width: 42px; }

.nav-title {
    font-size: 20px;
    font-weight: 700;
    margin-left: 10px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right a {
    color: white;
    margin-left: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
}

.nav-right a:hover {
    color: #c8a848;
}

.nav-contact {
    padding: 8px 18px;
    border: 1px solid #c8a848;
    border-radius: 8px;
}

/* ==================== HERO ==================== */
.hero {
    height: 100vh;
    width: 100%;
    background: url("../images/hero/hero-bg-dark.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(200,168,72,0.22), rgba(0,0,0,0.9));
    z-index: 1;
}

.hero-center-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-emblem {
    width: 600px;
    margin-bottom: 0px;
    filter: drop-shadow(0 0 32px rgba(200,168,72,0.55));
}

.hero-title {
    font-size: 66px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 45px;
}

/* BUTTONS */
.btn-gold, .btn-outline, .btn-dark {
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.btn-gold {
    background: linear-gradient(180deg, #dabb69, #b08b32);
    color: black;
    box-shadow: 0 4px 22px rgba(200,168,72,0.35);
}

.btn-gold:hover { filter: brightness(1.05); }

.btn-outline {
    color: white;
    border: 1px solid #ffffff55;
    background: transparent;
}

.btn-outline:hover {
    border-color: #c8a848;
    color: #c8a848;
}

.btn-dark {
    background: black;
    color: white;
    border: 1px solid #fff;
}

.hero-buttons {
    display: inline-flex;
    gap: 20px;
}

/* ==================== INDUSTRIES SECTION ==================== */
.industries {
    padding: 120px 40px;
    text-align: center;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 50px auto 0 auto;
}

.industry-card {
    background: #0d0d0d;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 6px 18px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.05) inset;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 14px 36px rgba(0,0,0,0.9),
        0 0 0 1px rgba(200,168,72,0.4) inset;
    border-color: rgba(200,168,72,0.4);
}

.industry-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 18px 0 24px;
    color: white;
}

/* ==================== CAPABILITIES SECTION ==================== */
.capabilities {
    padding: 140px 40px;
    background: #000;
    color: white;
    text-align: center;
}

.capabilities h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.capabilities p {
    opacity: 0.8;
    font-size: 20px;
    margin-bottom: 60px;
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.cap-item {
    background: #0d0d0d;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
    transition: 0.3s ease;
}

.cap-item:hover {
    transform: translateY(-12px);
    border-color: rgba(200,168,72,0.4);
    box-shadow:
        0 14px 36px rgba(0,0,0,0.9),
        0 0 0 1px rgba(200,168,72,0.3) inset;
}

.cap-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.cap-item p {
    font-size: 16px;
    opacity: 0.75;
    line-height: 1.5;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    position: relative;
    padding: 160px 40px;
    text-align: center;
    color: white;
    background: linear-gradient(180deg, #0a0a0a 0%, #c8a848 35%, #b08b32 70%, #0a0a0a 100%);
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.6), 0 10px 40px rgba(0,0,0,0.8);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: -150%;
    width: 70%;
    height: 100%;
    background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: cta-sweep 6s ease-in-out infinite;
}

@keyframes cta-sweep {
    0% { left: -150%; }
    50% { left: 130%; }
    100% { left: 130%; }
}

.cta-section h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.32);
}

.cta-section p {
    font-size: 20px;
    opacity: 0.92;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    border: 1px solid #fff;
    background: black;
    color: white;
    box-shadow: 0 12px 32px rgba(0,0,0,0.8);
    transition: 0.3s ease;
}

.cta-button:hover {
    background: #111;
    transform: translateY(-6px);
}

/* ==================== FOOTER ==================== */

.new-footer {
    background: #000;
    padding: 110px 30px 60px;
    text-align: center;
    color: white;
    position: relative;
}

.new-footer::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 200px;
    background: radial-gradient(circle at center, rgba(200,168,72,0.16), transparent 70%);
    pointer-events: none;
}

.footer-top img {
    width: 90px;
    filter: drop-shadow(0 0 20px rgba(200,168,72,0.45));
    margin-bottom: 18px;
}

.footer-top h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 15px;
    opacity: 0.65;
    margin-bottom: 50px;
}

.footer-links {
    max-width: 900px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.footer-links div { text-align: left; }

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    opacity: 0.9;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 15px;
    margin: 8px 0;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: #c8a848;
    transform: translateX(4px);
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.45;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 26px;
}
