/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f5a623;
    --primary-hover: #e6991e;
    --dark-bg: #121218;
    --dark-surface: #1a1a22;
    --dark-card: #22222c;
    --dark-border: #2e2e3a;
    --text-white: #ffffff;
    --text-gray: #b0b0b8;
    --text-muted: #707078;
    --accent-glow: rgba(245, 166, 35, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--dark-bg);
    overflow-x: hidden;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark-surface);
    border-bottom: 1px solid var(--dark-border);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible;
}

/* Logo background underlay */
.logo-bg-underlay {
    position: absolute;
    top: -10px;
    left: 0;
    /* Width controlled by JavaScript for perfect sync with logo */
    height: calc(100% + 20px);
    background:
        radial-gradient(circle, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
        linear-gradient(
            150deg,
            #ffffff 0%,
            #fafafa 60%,
            #f3f3f3 100%
        );
    background-size: 12px 12px, 100% 100%;
    border-radius: 0 2px 12px 0;
    z-index: 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        8px 4px 24px rgba(0, 0, 0, 0.2),
        16px 8px 48px rgba(0, 0, 0, 0.1);
    clip-path: polygon(
        0 0,
        calc(100% - 50px) 0,
        100% 100%,
        0 100%
    );
}

/* Scrolled state - height/top adjustments only, width handled by JS */
.navbar.scrolled .logo-bg-underlay {
    top: 0;
    height: 100%;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.logo img {
    height: 90px;
    width: auto;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: -15px 0;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar.scrolled .logo img {
    height: 55px;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.cta-button {
    background: transparent;
    color: var(--text-white);
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--text-white);
    color: var(--dark-bg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: 80px;
    min-height: 100vh;
    background:
        /* Grid pattern overlay */
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        /* Main gradient */
        radial-gradient(ellipse 120% 80% at 50% 0%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 0% 30%, rgba(245, 166, 35, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 100% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        var(--dark-bg);
    background-size: 60px 60px, 60px 60px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Floating orb - top left */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center,
        rgba(245, 166, 35, 0.2) 0%,
        rgba(245, 166, 35, 0.08) 30%,
        transparent 70%
    );
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

/* Floating orb - bottom right */
.hero::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: 0%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at center,
        rgba(59, 130, 246, 0.15) 0%,
        rgba(59, 130, 246, 0.05) 40%,
        transparent 70%
    );
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 2rem 0;
}

.hero-tag {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn {
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--dark-card);
    color: var(--text-white);
    border: 1px solid var(--dark-border);
}

.btn-primary:hover {
    background: var(--dark-border);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--dark-border);
}

.btn-secondary:hover {
    background: var(--dark-card);
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.hero-image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Video Player */
.hero-video {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
    background: var(--dark-card);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 80px rgba(245, 166, 35, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    pointer-events: none;
    z-index: 2;
}

.play-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    width: fit-content;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    position: relative;
}

.pulse-ring {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.4);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.live-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ef4444;
}

.hero-video-label {
    text-align: center;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--dark-card), var(--dark-surface));
    border: 1px solid var(--dark-border);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    display: none;
}

/* Metrics in Hero */
.hero-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.metric-badge {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Metrics Section - Hidden on dark theme, using hero metrics instead */
.metrics {
    display: none;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

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

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 600px;
}

.section-header.center .section-description {
    margin: 0 auto;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.view-all:hover {
    opacity: 0.8;
}

/* Services Section */
.services {
    background:
        radial-gradient(ellipse 80% 50% at 80% 20%, rgba(245, 166, 35, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        var(--dark-bg);
    padding: 4rem 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--dark-border);
    transform: translateY(-4px);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    color: var(--primary-color);
    stroke: var(--primary-color);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.service-card:hover .service-image svg {
    transform: scale(1.1);
    opacity: 1;
}

.service-content {
    padding: 1.5rem;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.learn-more:hover {
    gap: 0.75rem;
}

.learn-more::after {
    content: '→';
}

/* About Section */
.about {
    background:
        radial-gradient(ellipse 70% 50% at 0% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 100% 30%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        var(--dark-surface);
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-text strong {
    color: var(--text-white);
}

.mission {
    display: flex;
    gap: 1.5rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.mission-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #e6991e);
    border-radius: 14px;
    box-shadow: 0 8px 20px -8px rgba(245, 166, 35, 0.4);
}

.mission-icon svg {
    color: var(--dark-bg);
    stroke: var(--dark-bg);
}

.mission-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mission-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-video {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(245, 166, 35, 0.1);
}

.about-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.about-video::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10%;
    height: 7%;
    background: linear-gradient(135deg,
        rgba(245, 166, 35, 0.9) 0%,
        rgba(230, 153, 30, 0.95) 50%,
        rgba(245, 166, 35, 0.9) 100%
    );
    background-size: 200% 200%;
    animation: overlayShimmer 3s ease-in-out infinite;
    border-radius: 8px 0 16px 0;
    box-shadow:
        0 0 20px rgba(245, 166, 35, 0.5),
        0 0 40px rgba(245, 166, 35, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
    z-index: 2;
}

@keyframes overlayShimmer {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow:
            0 0 20px rgba(245, 166, 35, 0.5),
            0 0 40px rgba(245, 166, 35, 0.3),
            inset 0 0 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        background-position: 100% 50%;
        box-shadow:
            0 0 30px rgba(245, 166, 35, 0.7),
            0 0 60px rgba(245, 166, 35, 0.4),
            inset 0 0 15px rgba(255, 255, 255, 0.3);
    }
}

/* Why Choose Section */
.why-choose {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(245, 166, 35, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse 80% 40% at 90% 100%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        var(--dark-bg);
    padding: 5rem 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.05));
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 14px;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.feature-icon svg {
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), #e6991e);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px -8px rgba(245, 166, 35, 0.4);
}

.feature-card:hover .feature-icon svg {
    color: var(--dark-bg);
    stroke: var(--dark-bg);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Projects Section */
.projects {
    background:
        radial-gradient(ellipse 50% 60% at 100% 20%, rgba(245, 166, 35, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 0% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        var(--dark-surface);
    padding: 5rem 0;
}

.projects-table {
    margin-bottom: 2rem;
    overflow-x: auto;
}

table {
    width: 100%;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    overflow: hidden;
    border-collapse: collapse;
}

thead {
    background: var(--dark-surface);
}

th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--dark-border);
}

td {
    padding: 1rem 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

tbody tr {
    border-bottom: 1px solid var(--dark-border);
    transition: background 0.3s ease;
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:hover {
    background: rgba(245, 166, 35, 0.05);
}

.capacity {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}

.projects-gallery {
    border-radius: 16px;
    overflow: hidden;
}

.projects-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

/* Video Gallery */
.video-gallery {
    background: var(--dark-bg);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Animated gradient background for gallery */
.video-gallery::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        conic-gradient(
            from 0deg at 50% 50%,
            rgba(245, 166, 35, 0.08) 0deg,
            rgba(239, 68, 68, 0.06) 60deg,
            rgba(147, 51, 234, 0.08) 120deg,
            rgba(59, 130, 246, 0.06) 180deg,
            rgba(16, 185, 129, 0.08) 240deg,
            rgba(245, 166, 35, 0.06) 300deg,
            rgba(245, 166, 35, 0.08) 360deg
        );
    animation: galleryRotate 20s linear infinite;
    filter: blur(80px);
    z-index: 0;
}

.video-gallery::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(245, 166, 35, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.08) 0%, transparent 50%);
    animation: galleryPulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes galleryRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes galleryPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.video-gallery .container {
    position: relative;
    z-index: 1;
}

.video-gallery .section-header {
    position: relative;
    z-index: 1;
}

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

.video-card {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--dark-border);
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* YouTube Shorts Grid - Portrait Layout */
.shorts-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.shorts-card {
    position: relative;
    width: 200px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.shorts-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow:
        0 20px 40px -15px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(245, 166, 35, 0.15);
}

.shorts-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
}

.shorts-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Scale up landscape video to fill portrait container */
    width: 178%;
    height: 100%;
    transform: translate(-50%, -50%);
    border: none;
}

/* Partners Section */
.partners {
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 0% 0%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(147, 51, 234, 0.04) 0%, transparent 50%),
        var(--dark-surface);
    padding: 5rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.partner-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.partner-card:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background: var(--dark-bg);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Animated background element */
.contact-bg-element {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.contact-bg-element::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center,
        rgba(245, 166, 35, 0.12) 0%,
        rgba(245, 166, 35, 0.05) 30%,
        transparent 70%
    );
    filter: blur(80px);
    animation: contactGlow 8s ease-in-out infinite alternate;
}

.contact-bg-element::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center,
        rgba(59, 130, 246, 0.1) 0%,
        rgba(59, 130, 246, 0.03) 40%,
        transparent 70%
    );
    filter: blur(60px);
    animation: contactGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes contactGlow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 1;
    }
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Left Side */
.contact-left {
    padding-right: 2rem;
}

.contact-header {
    margin-bottom: 2.5rem;
}

.contact-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.05));
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.contact-header h2 .highlight {
    color: var(--primary-color);
    position: relative;
}

.contact-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Contact Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--dark-card), rgba(34, 34, 44, 0.5));
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-info-item:hover {
    border-color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 10px 30px -10px rgba(245, 166, 35, 0.2);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #e6991e);
    border-radius: 14px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px -8px rgba(245, 166, 35, 0.4);
}

.contact-info-icon svg {
    color: var(--dark-bg);
    stroke: var(--dark-bg);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-text .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Service Areas */
.service-areas {
    background: linear-gradient(135deg, rgba(34, 34, 44, 0.8), rgba(26, 26, 34, 0.8));
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 1.5rem;
}

.service-areas-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.service-areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.area-tag {
    background: linear-gradient(135deg, var(--dark-surface), var(--dark-card));
    border: 1px solid var(--dark-border);
    color: var(--text-gray);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Contact Right Side - Form Card */
.contact-right {
    position: relative;
}

.contact-form-card {
    background: linear-gradient(145deg, var(--dark-card), rgba(26, 26, 34, 0.9));
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6, var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Form Success Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 18, 24, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: fadeIn 0.3s ease;
    border-radius: 24px;
}

.form-success-message {
    text-align: center;
    padding: 2rem;
}

.form-success-message svg {
    color: #10b981;
    stroke: #10b981;
    margin-bottom: 1rem;
}

.form-success-message h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.form-success-message p {
    color: var(--text-gray);
    font-size: 0.95rem;
    max-width: 280px;
}

/* Form Loading Spinner */
.form-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(245, 166, 35, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    color: var(--text-muted);
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-surface);
    color: var(--text-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

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

.btn-full {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), #e6991e);
    color: var(--dark-bg);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px -8px rgba(245, 166, 35, 0.4);
}

.btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(245, 166, 35, 0.5);
}

.btn-full svg {
    transition: transform 0.3s ease;
}

.btn-full:hover svg {
    transform: translate(4px, -4px);
}

/* Footer */
.footer {
    background:
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(245, 166, 35, 0.04) 0%, transparent 50%),
        var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-col > p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

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

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -8px rgba(245, 166, 35, 0.4);
}

.social-link svg {
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-video {
        max-width: 300px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shorts-card {
        width: 180px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background: var(--dark-surface);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-bottom: 1px solid var(--dark-border);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-metrics {
        flex-wrap: wrap;
    }

    .hero-video {
        max-width: 280px;
    }

    .video-wrapper {
        border-radius: 20px;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .shorts-grid {
        gap: 1rem;
    }

    .shorts-card {
        width: 150px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-left {
        padding-right: 0;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

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

    .metric-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}