/* ================================
   PRELOADER
   ================================ */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-logo {
    max-width: 180px;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.4));
}

.preloader-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    text-shadow: var(--glow-cyan);
    min-height: 1.5em;
}

.preloader-items {
    margin-top: 20px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.preloader-item {
    font-family: 'Pixelmax', monospace;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.preloader-item.active {
    opacity: 1;
    color: var(--neon-magenta);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

/* ================================
   NAVBAR
   ================================ */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 0, 20, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 0, 255, 0.08);
    padding: 12px 0;
}

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

.nav-logo img {
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.3));
    transition: filter var(--transition-normal);
}

.nav-logo:hover img {
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.6));
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-family: 'Pixelmax', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-magenta);
    transition: width var(--transition-normal);
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.5);
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--neon-cyan);
    transition: all var(--transition-normal);
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.4);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================
   HERO
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-family: 'Pixelmax', monospace;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    margin-bottom: 24px;
    text-shadow: var(--glow-cyan);
}

.hero-title-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(to bottom, #151C60, #C6CBF5 40%, #000000 40%, #E1A0CE 65%, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: white;
}

.hero-subtitle {
    font-family: 'Yellowtail', cursive;
    font-size: 56px;
    color: #d100b1;
    text-shadow: 0 0 1px #d100b1, 0 -3px 3px rgba(255, 255, 255, 0.8), 0 3px 3px rgba(0, 0, 0, 0.5), 0 0 15px #d100b1, 0 0 45px rgba(209, 0, 177, 0.8);
    transform: skew(-10deg) rotate(-6deg);
    text-decoration: underline;
    margin-bottom: 32px;
}

.hero-services-rendered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.services-rendered-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(255, 45, 146, 0.5);
    margin: 0;
}

.services-rendered-box {
    font-family: 'Pixelmax', monospace;
    font-size: 0.75rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 24px;
    border: 1px solid rgba(255, 45, 146, 0.4);
    border-radius: 4px;
    background: rgba(255, 45, 146, 0.1);
    box-shadow: 0 0 15px rgba(255, 45, 146, 0.2);
    text-align: center;
}

.services-rendered-box .sep {
    color: var(--neon-pink);
    margin: 0 8px;
    opacity: 0.8;
}

.hero-divider {
    width: 200px;
    height: 1px;
    margin: 32px auto;
    background: linear-gradient(90deg, transparent, var(--neon-magenta), transparent);
    opacity: 0.5;
}

.hero-cta {
    margin-top: 24px;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-family: 'Pixelmax', monospace;
    font-size: 0.6rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--neon-cyan);
    border-bottom: 2px solid var(--neon-cyan);
    transform: rotate(45deg);
    filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.4));
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================
   SECTION COMMON
   ================================ */

.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    font-family: 'Pixelmax', monospace;
    font-size: 0.7rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    margin-bottom: 12px;
    text-shadow: var(--glow-cyan);
}

.section-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-divider {
    width: 120px;
    height: 1px;
    margin: 20px auto 0;
    background: linear-gradient(90deg, transparent, var(--neon-magenta), transparent);
    opacity: 0.5;
}

/* ================================
   ABOUT
   ================================ */

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

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 2px;
    border: 1px solid rgba(255, 0, 255, 0.15);
    -webkit-filter: grayscale(100%) contrast(1.1) !important;
    filter: grayscale(100%) contrast(1.1) !important;
    transition: -webkit-filter var(--transition-slow), filter var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
    -webkit-filter: grayscale(0%) contrast(1.05) !important;
    filter: grayscale(0%) contrast(1.05) !important;
}

.about-image-wrapper::before,
.about-image-wrapper::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--neon-magenta);
    border-style: solid;
    opacity: 0.4;
}

.about-image-wrapper::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.about-image-wrapper::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

.about-text .about-greeting {
    font-family: 'Pixelmax', monospace;
    font-size: 0.7rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.about-text h2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.about-text p {
    font-family: 'Pixelmax', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
}

.stats-banner {
    display: flex;
    justify-content: center;
    gap: 48px;
    border: 1px solid rgba(0, 255, 255, 0.08);
    border-radius: 2px;
    padding: 24px 32px;
    position: relative;
    margin-top: 24px;
}

.stats-banner::before,
.stats-banner::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--neon-cyan);
    border-style: solid;
    opacity: 0.4;
}

.stats-banner::before {
    top: -1px;
    left: -1px;
    border-width: 1px 0 0 1px;
}

.stats-banner::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 1px 1px 0;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    line-height: 1;
}

.stat-value--accent {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.stat-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 8px;
}

/* ================================
   PHOTOGRAPHY / CAROUSEL
   ================================ */

.carousel-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Pixelmax', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 18px;
    border: 1px solid rgba(255, 0, 255, 0.1);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn:hover {
    border-color: rgba(255, 0, 255, 0.3);
    color: var(--text-primary);
}

.filter-btn.active {
    border-color: var(--neon-magenta);
    color: var(--neon-magenta);
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.4);
    background: rgba(255, 0, 255, 0.05);
}

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

.carousel::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 12px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 45, 146, 0.16), transparent 46%),
                radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.14), transparent 52%);
    filter: blur(12px);
    z-index: -1;
    pointer-events: none;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255, 130, 215, 0.35);
    position: relative;
    background: linear-gradient(135deg,
        rgba(10, 0, 20, 0.95) 0%,
        rgba(30, 0, 40, 0.9) 25%,
        rgba(20, 0, 30, 0.95) 50%,
        rgba(40, 0, 50, 0.85) 75%,
        rgba(15, 0, 25, 0.95) 100%
    );
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.carousel-viewport::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 16px;
    height: 16px;
    border-top: 1px solid var(--neon-magenta);
    border-left: 1px solid var(--neon-magenta);
    opacity: 0.25;
    z-index: 2;
}

.carousel-viewport::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 16px;
    height: 16px;
    border-bottom: 1px solid var(--neon-magenta);
    border-right: 1px solid var(--neon-magenta);
    opacity: 0.25;
    z-index: 2;
}

.carousel-track {
    display: flex;
    transition: transform 360ms ease-out;
    width: 100%;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}

.carousel-slide-inner {
    width: min(100%, 900px);
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide-inner::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 110, 204, 0.6), rgba(255, 0, 255, 0.35), rgba(255, 110, 204, 0.6));
    filter: blur(5px);
    opacity: 0.65;
    z-index: 0;
    animation: borderPulse 3.2s ease-in-out infinite;
}

.carousel-slide img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 76vh;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(255, 185, 232, 0.5);
    box-shadow: 0 0 24px rgba(255, 45, 146, 0.2), inset 0 0 12px rgba(255, 45, 146, 0.08);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 0, 20, 0.85);
    border: 1px solid rgba(255, 0, 255, 0.3);
    color: var(--neon-cyan);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition-normal);
    z-index: 5;
    padding: 0;
}

.carousel-nav svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carousel-nav:hover {
    border-color: var(--neon-magenta);
    color: var(--neon-magenta);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
    background: rgba(10, 0, 20, 0.95);
}

.carousel-prev {
    left: -22px;
}

.carousel-next {
    right: -22px;
}

.carousel-viewport::selection {
    background: transparent;
}

.carousel-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.carousel-category {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 999px;
    padding: 6px 14px;
    background: rgba(0, 255, 255, 0.06);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.carousel-counter {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #d9d0ee;
    letter-spacing: 0.1em;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.58; transform: scale(1); }
    50% { opacity: 0.82; transform: scale(1.004); }
}

/* ================================
   VIDEOGRAPHY
   ================================ */

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

.video-card {
    background: linear-gradient(135deg,
        rgba(10, 0, 20, 0.95) 0%,
        rgba(30, 0, 40, 0.9) 25%,
        rgba(20, 0, 30, 0.95) 50%,
        rgba(40, 0, 50, 0.85) 75%,
        rgba(15, 0, 25, 0.95) 100%
    );
    border: 1px solid rgba(255, 0, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    transition: all var(--transition-normal);
}

.video-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 16px;
    height: 16px;
    border-top: 1px solid var(--neon-magenta);
    border-left: 1px solid var(--neon-magenta);
    opacity: 0.25;
    transition: opacity var(--transition-normal);
    z-index: 2;
}

.video-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 16px;
    height: 16px;
    border-bottom: 1px solid var(--neon-magenta);
    border-right: 1px solid var(--neon-magenta);
    opacity: 0.25;
    transition: opacity var(--transition-normal);
    z-index: 2;
}

.video-card:hover {
    border-color: rgba(255, 0, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: var(--glow-pink);
}

.video-card:hover::before,
.video-card:hover::after {
    opacity: 0.7;
}

.video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(10, 0, 20, 0.85);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.video-play-btn::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--neon-cyan);
    margin-left: 4px;
}

.video-play-btn:hover {
    background: rgba(255, 0, 255, 0.3);
    border-color: var(--neon-magenta);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn.playing {
    opacity: 0;
    pointer-events: none;
}

.video-card-info {
    padding: 20px 24px;
}

.video-card-category {
    font-family: 'Pixelmax', monospace;
    font-size: 0.65rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
    margin-bottom: 6px;
}

.video-card-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1rem;
    color: #FFFFFF;
    letter-spacing: 0.03em;
}

.video-card-desc {
    font-family: 'Pixelmax', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.6;
}

/* ================================
   SERVICES
   ================================ */

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

.service-card {
    background: linear-gradient(135deg,
        rgba(10, 0, 20, 0.95) 0%,
        rgba(30, 0, 40, 0.9) 25%,
        rgba(20, 0, 30, 0.95) 50%,
        rgba(40, 0, 50, 0.85) 75%,
        rgba(15, 0, 25, 0.95) 100%
    );
    border: 1px solid rgba(255, 0, 255, 0.08);
    border-radius: 2px;
    padding: 28px;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all var(--transition-normal);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 16px;
    height: 16px;
    border-top: 1px solid var(--neon-magenta);
    border-left: 1px solid var(--neon-magenta);
    opacity: 0.25;
    transition: opacity var(--transition-normal);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 16px;
    height: 16px;
    border-bottom: 1px solid var(--neon-magenta);
    border-right: 1px solid var(--neon-magenta);
    opacity: 0.25;
    transition: opacity var(--transition-normal);
}

.service-card:hover {
    border-color: rgba(255, 0, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: var(--glow-pink);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 0.7;
}

.service-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.service-card__category {
    font-family: 'Pixelmax', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.service-card__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 2px;
    font-size: 1rem;
}

.service-card__title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.service-card__description {
    font-family: 'Pixelmax', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.service-card__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    margin-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.service-card__stat {
    font-family: 'Pixelmax', monospace;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.service-card__stat-value {
    color: var(--neon-yellow);
    text-shadow: 0 0 6px rgba(255, 230, 0, 0.25);
}

/* ================================
   CONTACT
   ================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    position: relative;
}

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

.form-group label {
    display: block;
    font-family: 'Pixelmax', monospace;
    font-size: 0.7rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.2);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10, 0, 20, 0.6);
    border: 1px solid rgba(255, 0, 255, 0.12);
    border-radius: 2px;
    color: var(--text-primary);
    font-family: 'Pixelmax', sans-serif;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.15);
}

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

.form-submit {
    font-family: 'Pixelmax', monospace;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 14px 36px;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.form-submit:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

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

.contact-info-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.2rem;
    color: #FFFFFF;
    letter-spacing: 0.05em;
}

.contact-info-text {
    font-family: 'Pixelmax', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Pixelmax', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 16px;
    border: 1px solid rgba(255, 0, 255, 0.08);
    border-radius: 2px;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.social-link:hover {
    border-color: var(--neon-magenta);
    color: var(--neon-magenta);
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.15);
    background: rgba(255, 0, 255, 0.05);
}

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

.footer {
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 0, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-width: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.3));
}

.footer-text {
    font-family: 'Pixelmax', monospace;
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.heart-neon {
    display: inline-block;
    animation: heart-pulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(255, 20, 147, 0.6));
}

@keyframes heart-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 6px rgba(255, 20, 147, 0.6)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 12px rgba(255, 20, 147, 0.9)); }
}

/* ================================
   REVEAL ANIMATIONS
   ================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ================================
   BUTTON
   ================================ */

.btn-neon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Pixelmax', monospace;
    font-size: 0.7rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 12px 28px;
    border: 1px solid var(--neon-cyan);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-normal);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.btn-neon:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    color: var(--neon-cyan);
}

.btn-neon--magenta {
    color: var(--neon-magenta);
    border-color: var(--neon-magenta);
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.3);
}

.btn-neon--magenta:hover {
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    color: var(--neon-magenta);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 768px) {
    .hero {
        padding: 100px 16px 60px;
    }

    .hero-title {
        font-size: 42px;
        -webkit-text-stroke-width: 1px;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 0, 20, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

    #nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-banner {
        gap: 24px;
        padding: 16px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }
    .carousel-nav { width: 36px; height: 36px; font-size: 0.85rem; }
    .carousel-viewport { min-height: 50vh; }
    .carousel-slide { padding: 12px; }
    .carousel-slide img { max-height: 60vh; }

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

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

    .section {
        padding: 60px 0;
    }

    #mainCanvas {
        opacity: 0.6;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .hero-service-tag {
        font-size: 0.55rem;
        padding: 4px 10px;
    }

    .carousel-prev { left: 4px; }
    .carousel-next { right: 4px; }
    .carousel-nav { width: 32px; height: 32px; font-size: 0.75rem; }
    .carousel-slide img { max-height: 50vh; }

    .container {
        padding: 0 16px;
    }
}

/* ================================
   VIDEO MODAL
   ================================ */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    z-index: 10000;
    width: 90vw;
    max-width: 1200px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 8px;
    background: #000;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 0, 255, 0.15);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--neon-cyan);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.video-modal-close:hover {
    color: var(--neon-magenta);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
}

#modal-video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    outline: none;
}
