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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #00FF77 0%, #00BB77 50%, #0000ff 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header-left {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 250px;
    height: 50px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}

.logo-text p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.header-right {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    width: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Brands Section */
.brands-section {
    min-height: 100vh;
    padding: 6rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-10px);
}

.brand-link {
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.brand-logo {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.brand-logo-show,
.brand-logo-hover {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s ease;
    backface-visibility: hidden;
    border-radius: 20px;
}

.brand-logo-show {
    transform: rotateY(0deg);
}

.brand-logo-hover {
    transform: rotateY(180deg);
}

.brand-card:hover .brand-logo-show {
    transform: rotateY(-180deg);
}

.brand-card:hover .brand-logo-hover {
    transform: rotateY(0deg);
}


/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.footer-left {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-right {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background: white;
    color: #0000ff;
    transform: scale(1.1);
}

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

    .brand-logo {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1.5rem 2rem;
    }

    .logo-icon {
        width: 180px;
        height: 36px;
    }

    .video-container {
        width: 100%;
        height: 100vh;
        margin: 0;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .brands-section {
        padding: 4rem 2rem 12rem 2rem;
    }

    .brand-logo {
        width: 200px;
        height: 200px;
    }

    .footer {
        padding: 1.5rem 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-left {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 150px;
        height: 30px;
    }

    .header {
        padding: 1rem 1.5rem;
    }

    .brands-section {
        padding: 3rem 1.5rem 12rem 1.5rem;
    }

    .video-container {
        width: 100%;
        height: 100vh;
        margin: 0;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Contact Page Styles */
.contact-section {
    min-height: 100vh;
    padding: 10rem 4rem 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}

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

.info-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.info-label i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.info-value {
    padding-left: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.info-value p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.info-value a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.info-value a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.submit-btn {
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: white;
    color: #0000ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.nav-link.active {
    opacity: 1;
    font-weight: 700;
}

.logo-container a {
    display: inline-block;
    text-decoration: none;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 8rem 2rem 12rem;
    }

    .contact-container {
        gap: 2.5rem;
    }

    .contact-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

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

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

@media (max-width: 480px) {
    .contact-section {
        padding: 7rem 1.5rem 12rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .info-value {
        padding-left: 2rem;
        font-size: 1rem;
    }
}

