/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d31717;
    --secondary-color: #1f2831;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color), #dd2020);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    padding: 1.2rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    padding: 0.8rem 5%;
    background: rgba(255, 255, 255, 0.98);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 80%;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(226, 4, 4, 0.1), rgba(175, 30, 30, 0.1)), url('./assets/17.00_00_00_00.Still001.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.5);
}

/* About Section */
.about {
    padding: 8rem 10%;
    background: var(--light-bg);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item h3 {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* Work Section */
.work {
    padding: 8rem 10%;
    text-align: center;
    background: var(--white);
}

.work h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.work h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.channels {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.channel {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 3rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 4rem;
}

.channel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.channel-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 2rem;
    border-right: 2px solid rgba(0, 0, 0, 0.1);
}

.channel-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.channel-content {
    width: 100%;
}

.channel-image {
    width: 200px;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.channel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.channel:hover .channel-image img {
    transform: scale(1.1);
}

.channel h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0;
    text-align: center;
}

.channel-stats {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.channel-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* What We Do Section */
.what-we-do {
    padding: 8rem 10%;
    background: var(--light-bg);
    position: relative;
}

.what-we-do-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.what-we-do-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    position: relative;
}

.what-we-do-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.what-we-do-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.what-we-do-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 8rem 10%;
    text-align: center;
    background: var(--white);
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-form-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2rem;
    text-align: left;
}

.form-header h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-header p {
    font-size: 0.95rem;
    color: #666;
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(211, 23, 23, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-submit-btn {
    width: 100%;
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.6);
}

.form-submit-btn i {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover i {
    transform: translateX(3px);
}

.email-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 2px solid transparent;
}

.email-section:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(211, 23, 23, 0.1);
}

.email-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(211, 23, 23, 0.3);
}

.email-details {
    text-align: left;
}

.email-label {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.email-link {
    font-size: 1.3rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.email-link:hover {
    text-decoration: underline;
    color: #b91c1c;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 10% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
}

.social-links a {
    color: var(--white);
    font-size: 1.8rem;
    margin-left: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .about-content,
    .what-we-do-content {
        gap: 4rem;
    }
    
    .channels {
        gap: 2rem;
    }
    
    .about,
    .work,
    .what-we-do,
    .contact {
        padding: 6rem 8%;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile - Hamburger Menu */
    nav {
        padding: 1rem 5%;
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li a {
        padding: 1rem 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-color);
        text-decoration: none;
        transition: var(--transition);
    }

    nav ul li a:hover {
        color: var(--primary-color);
        transform: scale(1.1);
    }

    .logo span {
        font-size: 1.3rem;
    }

    .logo-img {
        height: 35px;
    }

    .logo span {
        font-size: 1.3rem;
    }

    .logo-img {
        height: 35px;
    }

    /* Hero Mobile */
    .hero {
        min-height: 500px;
        background-attachment: scroll;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Sections Mobile - Center all content */
    .about,
    .work,
    .what-we-do,
    .contact {
        padding: 4rem 5%;
        text-align: center;
    }

    .about-content,
    .what-we-do-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-text,
    .what-we-do-text {
        text-align: center;
    }

    .about-text h2,
    .work h2,
    .what-we-do-text h2,
    .contact h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .about-text h2::after,
    .what-we-do-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text p,
    .what-we-do-text p {
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    /* Channels Mobile */
    .channel {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }
    
    .channel-left {
        width: 100%;
        padding-right: 0;
        padding-bottom: 1.5rem;
        border-right: none;
        border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    }
    
    .channel-right {
        width: 100%;
    }
    
    .channel-image {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .channel h3 {
        font-size: 1.5rem;
    }
    
    .channel-stats {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .channel-description {
        text-align: center;
        font-size: 1rem;
    }

    /* Features Mobile */
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    /* Contact Mobile - Center everything */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 2.5rem 2rem;
        text-align: center;
    }

    .contact-info-card h3 {
        font-size: 1.8rem;
        text-align: center;
    }

    .contact-info-card p {
        text-align: center;
    }

    .form-header {
        text-align: center;
    }
    
    .email-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .email-details {
        text-align: center;
    }

    .email-link {
        font-size: 1.1rem;
        word-break: break-all;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .social-links {
        margin-top: 0;
    }

    .social-links a {
        margin: 0 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile */
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .about,
    .work,
    .what-we-do,
    .contact {
        padding: 3rem 4%;
    }
    
    .about-text h2,
    .work h2,
    .what-we-do-text h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }

    .channel {
        padding: 1.5rem;
    }

    .channel-image {
        width: 120px;
        height: 120px;
    }

    .channel h3 {
        font-size: 1.3rem;
    }

    .channel-stats {
        font-size: 1rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .contact-info-card h3 {
        font-size: 1.5rem;
    }
    
    .email-section {
        padding: 1.2rem;
    }
    
    .email-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .form-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    nav ul li a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 30px;
    }
}
