/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --accent-blue: #4a9eff;
    --accent-blue-light: #6bb0ff;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-inter);
    background: var(--primary-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-inter);
    border-radius: 8px;
}

.btn-primary {
    background: white;
    color: black;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* ===== NAVIGATION ===== */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.logo-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 100px;
    height: 100px;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-nav-link:hover .logo-icon {
    transform: scale(1.1);
}

.logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: var(--font-inter);
}

.nav-list {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: var(--font-inter);
}

.nav-link:hover {
    color: var(--text-primary);
}

/* ===== HEADER ===== */
.header {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-black);
    padding-top: 80px;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.05);
    object-fit: cover;
    object-position: center center;
    filter: brightness(1) contrast(1.15) saturate(1.1);
    transition: opacity 0.8s ease, transform 0.3s ease;
    will-change: transform, opacity;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.2) 0%,
        rgba(10, 10, 10, 0.4) 40%,
        rgba(10, 10, 10, 0.7) 70%,
        rgba(10, 10, 10, 0.95) 90%,
        var(--primary-black) 100%
    );
    z-index: 2;
    transition: opacity 0.8s ease;
}

.video-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(10, 10, 10, 0.2) 20%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.8) 80%,
        var(--primary-black) 100%
    );
    z-index: 3;
    pointer-events: none;
}

.header.scrolled .hero-video {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
}

.header.scrolled .video-overlay {
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
    text-align: center;
}

.hero-copy {
    max-width: 800px;
    margin: 0 auto;
}

.hero-heading {
    font-family: var(--font-inter);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem;
    position: relative;
    z-index: 10;
    background: var(--primary-black);
    margin-top: -200px;
    padding-top: 18rem;
    transition: margin-top 0.3s ease;
}

.section {
    margin-bottom: 10rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-inter);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--secondary-black);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 500;
}

.stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-inter);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--secondary-black);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 40px rgba(74, 158, 255, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--primary-black);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-family: var(--font-inter);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== SOUNDCLOUD SECTION ===== */
.soundcloud-section {
    margin-bottom: 10rem;
}

.soundcloud-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--secondary-black);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
}

.soundcloud-player {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.soundcloud-link {
    text-align: center;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    margin-bottom: 10rem;
}

.testimonial-card {
    background: var(--secondary-black);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: var(--secondary-black);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto 10rem;
    text-align: center;
}

.newsletter-title {
    font-family: var(--font-inter);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.newsletter-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    padding: 1rem 1.5rem;
    background: var(--primary-black);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-inter);
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    margin-bottom: 10rem;
}

/* ===== TAPNI SECTION ===== */
.tapni-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.tapni-container {
    text-align: center;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

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

.contact-item h3 {
    font-family: var(--font-inter);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0.5rem 0;
}

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

.form-input,
.form-textarea {
    padding: 1rem 1.5rem;
    background: var(--secondary-black);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-inter);
    transition: border-color 0.3s ease;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-black);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    text-align: center;
}

.footer-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 400;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
    
    .nav-list {
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image {
        height: 400px;
    }

    .about-text .section-title {
        text-align: center;
    }
    
    .stats {
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        padding: 3rem;
    }

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

@media (max-width: 768px) {
    .main-content {
        padding: 4rem 2rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-list {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    
    .header-content {
        padding: 0 1.5rem;
    }

    .section {
        margin-bottom: 6rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .soundcloud-container {
        padding: 2rem;
    }

    .soundcloud-player {
        height: 300px;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-image {
        height: 300px;
    }

    .newsletter-section {
        padding: 3rem 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .main-content {
        margin-top: -120px;
        padding-top: 12rem;
    }

    .video-fade-bottom {
        height: 200px;
    }

}

/* ===== SCROLL ANIMATION ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue-light);
}
