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

:root {
    --primary-color: #000000;
    --accent-color: #ff0000;
    --bg-color: #ffffff;
    --text-color: #000000;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,0,0,0.03) 0%, transparent 70%);
    animation: rotateBackground 20s linear infinite;
}

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

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #000000, #333333);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 30s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0000, #990000);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #333333, #000000);
    top: 30%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 28s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #cc0000, #ff0000);
    bottom: 40%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 22s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(40px, 10px) rotate(270deg) scale(1.2);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-logo-container {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.12s ease forwards;
}

.hero-main-logo {
    max-width: 490px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
}

.hero-main-logo:hover {
    filter: drop-shadow(0 15px 50px rgba(255, 0, 0, 0.3));
    transform: scale(1.02);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 48px;
    font-weight: 400;
}

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

.btn {
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary::before {
    background-color: var(--accent-color);
}

.btn-primary:hover::before {
    width: 300%;
    height: 300%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary::before {
    background-color: var(--primary-color);
}

.btn-secondary:hover::before {
    width: 300%;
    height: 300%;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background-color: var(--text-light);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% {
        width: 60px;
        opacity: 1;
    }
    50% {
        width: 100px;
        opacity: 0.7;
    }
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

/* Showreel Section */
.showreel {
    background-color: #000000;
    padding: 100px 0;
    position: relative;
}

.showreel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #ffffff 0%, #000000 10%, #000000 90%, #ffffff 100%);
    opacity: 1;
}

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

.showreel .section-title,
.showreel .section-subtitle {
    color: #ffffff;
}

.showreel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-container {
    position: relative;
    width: 100%;
    background-color: #000000;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3);
    border: 2px solid rgba(255, 0, 0, 0.2);
    transition: var(--transition);
}

.video-container:hover {
    box-shadow: 0 25px 80px rgba(255, 0, 0, 0.5);
    border-color: rgba(255, 0, 0, 0.4);
    transform: scale(1.02);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    outline: none;
}

.video-container video::-webkit-media-controls {
    display: none !important;
}

.video-container video::-webkit-media-controls-enclosure {
    display: none !important;
}

.video-unmute-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 31px;
    height: 31px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.video-unmute-btn:hover {
    background-color: var(--accent-color);
    border-color: white;
    transform: scale(1.1);
}

.video-unmute-btn:active {
    transform: scale(0.95);
}

.video-unmute-btn svg {
    pointer-events: none;
}

/* Services Section */
.services {
    background-color: #fafafa;
}

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

.category {
    background-color: white;
    padding: 40px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.category:hover::before {
    left: 100%;
}

.category:hover {
    box-shadow: 0 12px 32px rgba(255, 0, 0, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-8px);
}

.category-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--primary-color);
    padding-bottom: 16px;
    border-bottom: 2px solid var(--accent-color);
    position: relative;
    transition: var(--transition);
}

.category:hover .category-title {
    color: var(--accent-color);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 12px 0;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Brands Section */
.brands {
    background-color: #ffffff;
}

.brands-categories {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-category {
    border: 2px solid var(--border-color);
    padding: 32px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.brand-category::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,0,0,0.1) 0%, transparent 70%);
    transition: var(--transition);
    opacity: 0;
}

.brand-category:hover::after {
    opacity: 1;
    top: 0;
    right: 0;
}

.brand-category:hover {
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.brand-category-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.brand-name {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    border: 2px solid var(--border-color);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: default;
}

/* Contact Section */
.contact {
    background-color: #fafafa;
}

.contact-grid {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(135deg, white 0%, #fafafa 100%);
    padding: 48px;
    border: 2px solid var(--border-color);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.05), transparent);
    transition: left 0.8s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-8px);
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background-color: white;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--accent-color);
    transition: height 0.3s ease;
    z-index: -1;
}

.contact-link:hover::before {
    height: 100%;
}

.contact-link:hover {
    color: white;
    border-color: var(--accent-color);
    transform: translateX(8px);
}

.contact-link:hover svg {
    stroke: white;
    transform: scale(1.2) rotate(5deg);
}

.contact-link svg {
    flex-shrink: 0;
    stroke: var(--text-color);
    transition: var(--transition);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    padding: 60px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: slideRight 3s infinite;
}

@keyframes slideRight {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-text {
    color: white;
    font-size: 18px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-main-logo {
        max-width: 315px;
    }

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

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

    .category {
        padding: 24px;
    }

    .brand-category {
        padding: 24px;
    }

    .brand-list {
        gap: 12px;
    }

    .brand-name {
        font-size: 13px;
        padding: 8px 16px;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    section {
        padding: 80px 0;
    }

    .showreel {
        padding: 60px 0;
    }

    .showreel-wrapper {
        padding: 0 16px;
    }

    .video-container {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .video-unmute-btn {
        width: 28px;
        height: 28px;
        top: 10px;
        right: 10px;
    }

    .video-unmute-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    .category,
    .brand-category,
    .btn {
        will-change: transform;
    }
}

