:root {
    --primary-hue: 280;
    --primary-color: hsl(var(--primary-hue), 80%, 60%);
    --primary-light: hsl(var(--primary-hue), 80%, 70%);
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #fff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

[data-theme="light"] {
    --bg-dark: #f0f2f5;
    --bg-card: rgba(0, 0, 0, 0.05);
    /* Darker card for contrast on light */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
}

/* Theme Toggle Switch */
.theme-switch {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 30px;
    margin-left: 1rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: .4s;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    overflow: hidden;
}

.slider:hover {
    border-color: var(--primary-color);
}

.slider-thumb {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transition: .4s;
    border-radius: 50%;
    z-index: 2;
}

input:checked+.slider .slider-thumb {
    transform: translateX(30px);
}

.sun-icon-slider,
.moon-icon-slider {
    width: 16px;
    height: 16px;
    z-index: 1;
    transition: all 0.4s ease;
}

.sun-icon-slider {
    color: var(--text-secondary);
    opacity: 0.5;
    transform: scale(0.8);
}

.moon-icon-slider {
    color: var(--text-primary);
    opacity: 1;
    transform: scale(1);
}

/* Light mode state (Checked = Light) */
input:checked+.slider .sun-icon-slider {
    color: var(--text-primary);
    opacity: 1;
    transform: scale(1);
}

input:checked+.slider .moon-icon-slider {
    color: var(--text-secondary);
    opacity: 0.5;
    transform: scale(0.8);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.gradient-bg {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 20% 20%, hsla(var(--primary-hue), 80%, 50%, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, hsla(calc(var(--primary-hue)+60), 80%, 50%, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    transition: background 0.5s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback */
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 2px;
    /* Slight padding to frame the logo inside the color */
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    color: var(--text-primary) !important;
}

.nav-link-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem;
}

@media(max-width:768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s 0.1s forwards;
    opacity: 0;
}

/* Pink x Purple x White Gradient */
.gradient-text {
    background: linear-gradient(135deg, #ff4dbf, var(--primary-color), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animation */
.text-pulse {
    animation: opacityPulse 3s infinite ease-in-out;
}

@keyframes opacityPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.3s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px var(--primary-color);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: 10%;
    left: -10%;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: hsl(calc(var(--primary-hue)+60), 80%, 60%);
    bottom: 10%;
    right: -5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: hsl(calc(var(--primary-hue)+120), 80%, 60%);
    top: 50%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -30px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: fadeInUp 0.8s 0.5s forwards;
    opacity: 0;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.3;
    }
}

.section {
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 20px 60px -20px var(--primary-color);
    position: relative;
}

.about-avatar::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-headline {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.about-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.skill-tag {
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.skill-tag:hover {
    background: var(--primary-color);
    color: var(--text-primary);
}

@media(max-width:900px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

/* Video Carousel */
.video-carousel {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    min-height: 650px;
    width: 100%;
}

.video-carousel-large .carousel-track {
    min-height: 420px;
}

.video-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.7);
    filter: blur(2px);
    pointer-events: none;
}

.video-card.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    filter: blur(0);
    z-index: 10;
    pointer-events: auto;
}

.video-card.prev {
    opacity: 0.5;
    transform: scale(0.75) translateX(-310px);
    filter: blur(1px);
    z-index: 5;
    pointer-events: auto;
}

.video-card.next {
    opacity: 0.5;
    transform: scale(0.75) translateX(310px);
    filter: blur(1px);
    z-index: 5;
    pointer-events: auto;
}

.video-card.far-prev {
    opacity: 0.2;
    transform: scale(0.5) translateX(-600px);
    filter: blur(3px);
    z-index: 1;
}

.video-card.far-next {
    opacity: 0.2;
    transform: scale(0.5) translateX(600px);
    filter: blur(3px);
    z-index: 1;
}

/* Long-form (16:9) positioning & visibility overrides */
.video-card-large {
    opacity: 0.6;
    filter: blur(0);
}

.video-card-large.prev {
    transform: scale(0.7) translateX(-540px);
    opacity: 0.8;
}

.video-card-large.next {
    transform: scale(0.7) translateX(540px);
    opacity: 0.8;
}

.video-card-large.far-prev {
    transform: scale(0.5) translateX(-850px);
    opacity: 0.5;
}

.video-card-large.far-next {
    transform: scale(0.5) translateX(850px);
    opacity: 0.5;
}

/* Navigation Controls Container - Below Video */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    z-index: 20;
}

.carousel-arrow {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: var(--glass-blur);
}

.carousel-arrow svg {
    width: 22px;
    height: 22px;
}

.carousel-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: var(--primary-light);
}

/* Short-form video frame - 9:16 vertical ratio */
.video-frame {
    width: 330px;
    height: 587px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5);
}

/* Long-form video frame - 16:9 horizontal ratio */
.video-frame-large {
    width: 600px;
    height: 340px;
    border-radius: var(--radius-lg);
}

/* Keep circle styles for backwards compatibility but they won't be circular */
.video-circle {
    width: 330px;
    height: 587px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5);
}

.video-circle-large {
    width: 600px;
    height: 340px;
    border-radius: var(--radius-lg);
}

.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-primary);
    transition: all 0.3s;
    border: 2px solid var(--glass-border);
}

.video-ring {
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--radius-lg) + 4px);
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light), hsl(calc(var(--primary-hue)+60), 80%, 60%)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ringPulse 3s infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
        opacity: 0.8;
    }
}

.video-card.active:hover .video-circle {
    transform: scale(1.05);
}

.video-card.active:hover .video-preview {
    transform: scale(1.1);
}

.video-card.active:hover .video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.video-card.active:hover .play-btn {
    background: var(--primary-color);
    transform: scale(1.1);
}

.video-info {
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card.active .video-info {
    opacity: 1;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.video-card.active:hover .video-title {
    color: var(--primary-color);
}

.video-duration {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--glass-bg);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.video-duration {
    font-size: 0.75rem;
    padding: 2px 8px;
}

@media(max-width:900px) {

    .video-card.prev,
    .video-card.next {
        transform: scale(0.6) translateX(-180px);
    }

    .video-card.next {
        transform: scale(0.6) translateX(180px);
    }

    .video-card.far-prev,
    .video-card.far-next {
        display: none;
    }

    .video-circle,
    .video-frame {
        width: 180px;
        height: 320px;
    }

    .video-circle-large,
    .video-frame-large {
        width: 320px;
        height: 180px;
    }

    .video-carousel-large .carousel-track {
        min-height: 250px;
    }

    .video-carousel .carousel-track {
        min-height: 400px;
    }

    .carousel-arrow {
        width: 44px;
        height: 44px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media(max-width:600px) {
    .container {
        padding: 0 1rem;
    }

    .header {
        padding: 1rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    /* Carousel Mobile Optimization */
    .video-card.prev,
    .video-card.next {
        opacity: 0.3;
        transform: scale(0.6) translateX(-110px);
        filter: blur(2px);
        /* Add blur back for mobile to reduce clutter focus */
    }

    .video-card.next {
        transform: scale(0.6) translateX(110px);
    }

    .video-card-large.prev {
        transform: scale(0.6) translateX(-180px);
    }

    .video-card-large.next {
        transform: scale(0.6) translateX(180px);
    }

    .video-circle,
    .video-frame {
        width: 160px;
        height: 284px;
        /* 9:16 aspect ratio correctly maintained */
    }

    .video-circle-large,
    .video-frame-large {
        width: 280px;
        height: 158px;
        /* 16:9 aspect ratio */
    }

    /* Fix centering of scroll indicator */
    .scroll-indicator {
        bottom: 2rem;
        width: 100%;
        left: 0;
        transform: none;
        display: flex;
        /* Reinforce flex */
        align-items: center;
        justify-content: center;
    }

    /* Move arrows closer to video */
    .video-carousel {
        gap: 1rem;
        padding: 0.5rem 0;
    }

    /* Reduce track height specifically for mobile long-form to reduce gap */
    .video-carousel-large .carousel-track {
        min-height: 200px;
    }

    .carousel-controls {
        margin-top: 0;
        gap: 1.5rem;
    }

    /* Hide play button on mobile when active to not block view */
    .video-card.active .play-btn {
        opacity: 0;
        pointer-events: none;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateX(10px);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-value {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-value:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.5rem 1rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-group select {
    cursor: pointer;
    appearance: none;
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.2s;
}

.form-group textarea~label {
    top: 1.5rem;
    transform: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px hsla(var(--primary-hue), 80%, 60%, 0.2);
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label,
.form-group select:focus~label,
.form-group select:valid~label {
    top: 8px;
    font-size: 0.75rem;
    color: var(--primary-color);
}

.btn-submit {
    align-self: flex-start;
}

.btn-submit svg {
    width: 18px;
    height: 18px;
}

@media(max-width:900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.video-modal.active .modal-content {
    transform: scale(1);
}

/* Custom Controls */
.modal-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Fix vertical centering */
    background: #000;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/* Fullscreen overrides */
.modal-video-container:fullscreen {
    border-radius: 0;
}

.modal-video-container:fullscreen .modal-video {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
}

.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 20;
}

.modal-video-container:hover .custom-controls {
    opacity: 1;
}

/* Modal Zoom Animation Styles */
.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
    transform: scale(0.5);
    /* Start smaller */
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
    /* Smooth pop effect */
}

.modal-content.zoom-in {
    transform: scale(1);
    opacity: 1;
}

/* Card Zoom Animation */
.card-zoom-animation {
    animation: zoomForward 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    z-index: 100;
    pointer-events: none;
}

@keyframes zoomForward {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Card Zoom Animation */
.card-zoom-animation {
    animation: zoomForward 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    z-index: 100;
    pointer-events: none;
}

@keyframes zoomForward {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.progress-bar-container {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    border-radius: var(--radius-full);
    position: relative;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

.progress-bar-container:hover .progress-bar::after {
    opacity: 1;
}

.controls-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.control-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.control-btn:hover {
    opacity: 1;
}

.control-btn svg {
    width: 100%;
    height: 100%;
}

.time-display {
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
    opacity: 0.8;
}

.spacer {
    flex: 1;
}

.volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--primary-color);
}

.modal-video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.seek-feedback {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    pointer-events: none;
    opacity: 0;
    z-index: 20;
    transition: opacity 0.2s;
}

.seek-left {
    left: 10%;
}

.seek-right {
    right: 10%;
}

.seek-feedback.animate-seek {
    animation: fadeOutScale 0.6s ease-out forwards;
}

@keyframes fadeOutScale {
    0% {
        opacity: 1;
        transform: translateY(-50%) scale(0.8);
    }

    50% {
        transform: translateY(-50%) scale(1.1);
    }

    100% {
        opacity: 0;
        transform: translateY(-50%) scale(1.5);
    }
}