/* =====================================================
   VIDEOMEDIA SVET — Main Stylesheet
   Cinematic Dark Theme | Black / White / Red
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700;900&display=swap');

/* ── CSS Variables ── */
:root {
    --bg:          #080808;
    --bg-2:        #0f0f0f;
    --bg-card:     #131313;
    --bg-card-2:   #1a1a1a;
    --text:        #ffffff;
    --text-muted:  #888888;
    --text-light:  #cccccc;
    --accent:      #c8102e;
    --accent-dim:  #8a0b20;
    --accent-glow: rgba(200, 16, 46, 0.25);
    --border:      #222222;
    --border-light:#2e2e2e;
    --nav-height:  72px;
    --radius:      4px;
    --transition:  0.3s ease;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'Montserrat', sans-serif;
    --shadow:       0 4px 24px rgba(0,0,0,0.6);
    --shadow-red:   0 4px 24px rgba(200, 16, 46, 0.2);
}

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
    line-height: 1.15;
    font-weight: 700;
}

.display {
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    line-height: 1;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    letter-spacing: 0.03em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

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

.section-pad {
    padding: 100px 0;
}

.section-pad-sm {
    padding: 64px 0;
}

.text-center { text-align: center; }
.text-accent  { color: var(--accent); }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    background: rgba(8, 8, 8, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--text);
    line-height: 1;
}

.nav-logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 100%;
    height: 1px;
    background: var(--accent);
    transition: right var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    right: 0;
}

.nav-cta {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.16em !important;
    color: var(--text) !important;
    background: var(--accent);
    padding: 8px 20px;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: #e61535 !important;
    transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.65) 60%, rgba(8,8,8,0.3) 100%),
        linear-gradient(180deg, rgba(8,8,8,0.3) 0%, transparent 40%, rgba(8,8,8,0.95) 100%);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200,16,46,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,16,46,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero-scanline {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: scanline 6s linear infinite;
    opacity: 0.4;
    z-index: 1;
}

@keyframes scanline {
    0%   { top: 0%; opacity: 0; }
    5%   { opacity: 0.4; }
    95%  { opacity: 0.4; }
    100% { top: 100%; opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 0 24px;
    margin: 0 auto;
    padding-top: var(--nav-height);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent-dim);
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 32px;
    background: rgba(200,16,46,0.06);
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.8rem, 11vw, 9rem);
    letter-spacing: 0.04em;
    line-height: 0.95;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slogan {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.85;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-tags {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.hero-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    opacity: 0.5;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: #e61535;
    border-color: #e61535;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,16,46,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--text);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

.btn-sm {
    font-size: 0.72rem;
    padding: 10px 22px;
}

/* =====================================================
   SECTION HEADER
   ===================================================== */
.section-header {
    margin-bottom: 64px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

.red-line {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin-top: 20px;
}

.section-header.centered .red-line {
    margin: 20px auto 0;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    background: var(--bg-2);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    padding: 36px 28px;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: linear-gradient(to top, var(--accent-glow), transparent);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-red);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(200,16,46,0.12);
    border: 1px solid rgba(200,16,46,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #fff;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* =====================================================
   FEATURES / HIGHLIGHTS STRIP
   ===================================================== */
.features-strip {
    background: var(--bg);
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    color: var(--accent);
}

.feature-icon svg {
    width: 28px; height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* =====================================================
   ABOUT PREVIEW (Homepage)
   ===================================================== */
.about-preview {
    background: var(--bg);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-preview-visual {
    position: relative;
}

.about-frame {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-frame-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
}

.about-frame-placeholder svg {
    width: 48px; height: 48px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.2;
    opacity: 0.3;
}

.about-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 60%;
    background: var(--accent);
    z-index: 1;
}

.about-frame::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 60%; height: 3px;
    background: var(--accent);
    z-index: 1;
}

.about-corner-label {
    position: absolute;
    bottom: 20px; left: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 2;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.85;
}

.about-stat-row {
    display: flex;
    gap: 40px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--accent);
    line-height: 1;
    letter-spacing: 0.02em;
}

.about-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* =====================================================
   COLLABORATION / PARTNERS
   ===================================================== */
.collab {
    background: var(--bg-2);
    position: relative;
}

.collab::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.collab-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.collab-card:hover {
    border-color: var(--accent-dim);
    transform: translateY(-2px);
    background: var(--bg-card-2);
}

.collab-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    color: var(--text);
    line-height: 1;
}

.collab-type {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* =====================================================
   GALLERY / VIDEO SECTION
   ===================================================== */
.gallery {
    background: var(--bg);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.video-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}

.video-card:hover {
    border-color: var(--accent-dim);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #0a0a0a;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    transition: background var(--transition);
}

.video-card:hover .video-play {
    background: rgba(0,0,0,0.15);
}

.video-play-btn {
    width: 56px; height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: 0 0 0 0 rgba(200,16,46,0.4);
}

.video-card:hover .video-play-btn {
    transform: scale(1.12);
    box-shadow: 0 0 0 12px rgba(200,16,46,0);
    animation: pulse-red 1.2s ease-in-out;
}

@keyframes pulse-red {
    0%   { box-shadow: 0 0 0 0 rgba(200,16,46,0.5); }
    70%  { box-shadow: 0 0 0 16px rgba(200,16,46,0); }
    100% { box-shadow: 0 0 0 0 rgba(200,16,46,0); }
}

.video-play-btn svg {
    width: 20px; height: 20px;
    fill: #fff;
    margin-left: 3px;
}

.video-info {
    padding: 16px 18px;
}

.video-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Video lightbox / embed overlay */
.video-embed-wrap {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 10;
}

.video-embed-wrap.active {
    display: block;
}

.video-embed-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-full .section-content p {
    color: var(--text-light);
    font-size: 0.96rem;
    line-height: 1.9;
    margin-bottom: 18px;
    max-width: 800px;
}

.about-full .section-content p strong {
    color: var(--text);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.equipment-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    padding: 18px 20px;
    border-radius: var(--radius);
}

.equipment-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.equipment-item span {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* =====================================================
   PAGE BANNER (inner pages)
   ===================================================== */
.page-banner {
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 80px;
    background: var(--bg-2);
    background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center 20%;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.6) 100%),
        linear-gradient(180deg, rgba(8,8,8,0.4) 0%, rgba(8,8,8,0.7) 100%);
}

.page-banner-inner {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border-light); }
.breadcrumb .current { color: var(--accent); }

.page-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.04em;
    line-height: 1;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    background: var(--bg-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.contact-info-block {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    background: rgba(200,16,46,0.1);
    border: 1px solid rgba(200,16,46,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-icon svg {
    width: 16px; height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.contact-info-value a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.social-link {
    width: 40px; height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px; height: 16px;
    fill: currentColor;
}

/* ── Contact Form ── */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: var(--radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: var(--bg-2);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.92rem;
    padding: 12px 16px;
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-control::placeholder { color: var(--text-muted); opacity: 0.6; }

.form-control:focus {
    border-color: var(--accent-dim);
    box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: 16px; height: 16px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
    cursor: pointer;
}

.form-check-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Alert messages */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    margin-bottom: 20px;
    border: 1px solid;
}

.alert-success {
    background: rgba(34,197,94,0.08);
    border-color: rgba(34,197,94,0.25);
    color: #4ade80;
}

.alert-error {
    background: rgba(200,16,46,0.08);
    border-color: rgba(200,16,46,0.25);
    color: #ff6b6b;
}

/* =====================================================
   NEWS / MEDIA LINKS
   ===================================================== */
.media-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.media-link-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px 22px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all var(--transition);
    text-decoration: none;
}

.media-link-card:hover {
    border-color: var(--accent-dim);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.media-link-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.4;
}

.media-link-body {}

.media-link-source {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.media-link-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.45;
}

.media-link-card:hover .media-link-title {
    color: var(--text);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    background: var(--bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 70% at 50% 50%, rgba(200,16,46,0.07) 0%, transparent 70%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.cta-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 36px;
    width: auto;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.06em;
}

.footer-logo-text span { color: var(--accent); }

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
    letter-spacing: 0.04em;
}

.footer-col-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--text); }

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-info a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-contact-info a:hover { color: var(--accent); }

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-copy span { color: var(--accent); }

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-bottom-links a:hover { color: var(--text); }

/* =====================================================
   PAGE LOADER
   ===================================================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.08em;
    color: var(--text);
}

.loader-logo span { color: var(--accent); }

.loader-bar {
    width: 160px;
    height: 2px;
    background: var(--border);
    border-radius: 1px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    animation: loader 0.8s ease-out forwards;
}

@keyframes loader {
    to { width: 100%; }
}

/* =====================================================
   ANIMATIONS (triggered by scroll via JS)
   ===================================================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .about-preview-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-info-block { position: static; }
    .hero-tags { display: none; }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }

    .section-pad { padding: 72px 0; }

    .nav-links { display: none; flex-direction: column; gap: 0; }
    .nav-toggle { display: flex; }

    .nav-links.mobile-open {
        display: flex;
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0; bottom: 0;
        background: rgba(8,8,8,0.98);
        padding: 40px 24px;
        backdrop-filter: blur(12px);
        z-index: 999;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
    }

    .nav-links.mobile-open a {
        display: block;
        font-size: 1.6rem;
        font-family: var(--font-display);
        letter-spacing: 0.06em;
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
        color: var(--text-muted);
        width: 100%;
    }

    .nav-links.mobile-open a::after { display: none; }
    .nav-links.mobile-open .nav-cta { 
        background: none !important; 
        padding: 16px 0 !important;
        color: var(--accent) !important;
    }

    .hero-content { text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-text { margin: 0 auto 40px; }

    .about-stat-row { flex-wrap: wrap; gap: 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .contact-form-wrap { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; }

    .video-grid { grid-template-columns: 1fr; }

    .service-visual-grid { grid-template-columns: 1fr !important; }
    .service-visual-grid img { height: 240px !important; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .btn { padding: 12px 24px; font-size: 0.72rem; }
    .services-grid { grid-template-columns: 1fr; }
    .collab-grid { grid-template-columns: repeat(2, 1fr); }
}
