/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* Global Color Variables */
:root {
    --purple: #7D3FFF;
    --green: #00FFB2;
    --background: #121212;
    --white: #FFFFFF;
    --light-gray: #CCCCCC;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--white);
    background-color: var(--background);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(125, 63, 255, 0.2);
}

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

.nav-logo h2 {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.02em;
}

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

.nav-link {
    text-decoration: none;
    color: var(--light-gray);
    font-family: var(--font-body);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--green);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--background);
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
    transition: all 0.3s ease;
}



/* Animated Particle Background */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, var(--purple) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--green) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, #4F46E5 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    opacity: 0.4;
    z-index: 1;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Removed oval glow effect */

.hero-agency {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--white) !important;
    cursor: pointer;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: all 0.3s ease-out;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-agency:hover {
    background: linear-gradient(135deg, var(--purple) 0%, var(--green) 100%);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale3d(1.02, 1.02, 1) translateZ(0);
    animation: brandGlowOptimized 4s ease-in-out infinite;
}

@keyframes brandGlowOptimized {
    0% {
        filter: drop-shadow(0 0 20px rgba(125, 63, 255, 0.6));
    }
    25% {
        filter: drop-shadow(0 0 25px rgba(125, 63, 255, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0, 255, 178, 0.8));
    }
    75% {
        filter: drop-shadow(0 0 25px rgba(0, 255, 178, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(125, 63, 255, 0.6));
    }
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--light-gray);
    letter-spacing: 0.02em;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--purple);
    border-color: var(--purple);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(125, 63, 255, 0.3);
}

.btn-secondary {
    background: var(--green);
    color: var(--background);
    border-color: var(--green);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 178, 0.3);
}

.btn i {
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--background);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    position: relative;
}

.flame-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: hue-rotate(120deg) brightness(1.2);
    animation: flameFlicker 2s ease-in-out infinite alternate;
}

@keyframes flameFlicker {
    0% {
        transform: scale(1) rotate(-2deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1) rotate(2deg);
        opacity: 1;
    }
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--green);
    letter-spacing: -0.01em;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 350px;
    background: radial-gradient(circle, rgba(125, 63, 255, 0) 0%, rgba(125, 63, 255, 0) 70%, rgba(125, 63, 255, 0.1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.about-image:hover::before {
    opacity: 1;
}

.flame-graphic {
    animation: flameFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 178, 0.5));
    transition: all 0.4s ease;
    cursor: pointer;
}

.flame-graphic:hover {
    filter: drop-shadow(0 0 30px rgba(125, 63, 255, 0.8)) drop-shadow(0 0 60px rgba(125, 63, 255, 0.4));
    transform: scale(1.05);
}

@keyframes flameFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Enhanced flame animations */
.flame-layer-1 {
    animation: flameFlicker1 2s ease-in-out infinite alternate;
}

.flame-layer-2 {
    animation: flameFlicker2 2.5s ease-in-out infinite alternate;
}

.flame-layer-3 {
    animation: flameFlicker3 1.8s ease-in-out infinite alternate;
}

.flame-tip {
    animation: flameTipDance 1.5s ease-in-out infinite;
}

.side-flame-left {
    animation: sideFlameLeft 2.2s ease-in-out infinite;
}

.side-flame-right {
    animation: sideFlameRight 2.4s ease-in-out infinite;
}

@keyframes flameFlicker1 {
    0% { transform: scale(1) rotate(-1deg); opacity: 0.9; }
    100% { transform: scale(1.05) rotate(1deg); opacity: 1; }
}

@keyframes flameFlicker2 {
    0% { transform: scale(1) rotate(1deg); opacity: 0.8; }
    100% { transform: scale(1.08) rotate(-1deg); opacity: 1; }
}

@keyframes flameFlicker3 {
    0% { transform: scale(1) rotate(-0.5deg); opacity: 0.9; }
    100% { transform: scale(1.1) rotate(0.5deg); opacity: 1; }
}

@keyframes flameTipDance {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-2deg); }
    75% { transform: scale(1.1) rotate(2deg); }
}

@keyframes sideFlameLeft {
    0%, 100% { transform: translateX(0) scale(1); opacity: 0.6; }
    50% { transform: translateX(-3px) scale(1.2); opacity: 0.9; }
}

@keyframes sideFlameRight {
    0%, 100% { transform: translateX(0) scale(1); opacity: 0.6; }
    50% { transform: translateX(3px) scale(1.2); opacity: 0.9; }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--background);
}

.services-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--green);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

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

.service-card {
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 255, 178, 0.4);
}

.service-icon i {
    font-size: 2rem;
    color: var(--background);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    position: relative;
    z-index: 2;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--background);
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.portfolio-item {
    aspect-ratio: 1.2;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(125, 63, 255, 0.2);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(125, 63, 255, 0.1), rgba(0, 255, 178, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Video Timeline Animation */
.video-timeline {
    flex-direction: column;
    gap: 10px;
}

.timeline-bars {
    display: flex;
    gap: 5px;
    align-items: end;
}

.bar {
    width: 40px;
    background: var(--green);
    border-radius: 2px;
    animation: timelinePulse 2s ease-in-out infinite;
}

.bar-1 { height: 30px; animation-delay: 0s; }
.bar-2 { height: 50px; animation-delay: 0.2s; }
.bar-3 { height: 40px; animation-delay: 0.4s; }
.bar-4 { height: 35px; animation-delay: 0.6s; }

@keyframes timelinePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.timeline-cursor {
    width: 2px;
    height: 60px;
    background: var(--purple);
    animation: cursorMove 3s linear infinite;
}

@keyframes cursorMove {
    0% { transform: translateX(-80px); }
    100% { transform: translateX(80px); }
}

/* Motion Design Animation */
.motion-design {
    position: relative;
}

.light-trails {
    position: absolute;
    width: 100%;
    height: 100%;
}

.trail {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    animation: trailMove 2s ease-in-out infinite;
}

.trail-1 {
    top: 30%;
    animation-delay: 0s;
}

.trail-2 {
    top: 50%;
    animation-delay: 0.5s;
}

.trail-3 {
    top: 70%;
    animation-delay: 1s;
}

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

.motion-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--purple);
    text-align: center;
    line-height: 1.2;
}

/* Code Interface Animation */
.code-interface {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}

.code-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.code-line {
    height: 4px;
    background: var(--green);
    border-radius: 2px;
    width: 80%;
    animation: codeBlink 3s ease-in-out infinite;
}

.code-line.short { width: 60%; animation-delay: 0.5s; }
.code-line.medium { width: 70%; animation-delay: 1s; }

@keyframes codeBlink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.code-cursor {
    width: 2px;
    height: 20px;
    background: var(--purple);
    margin-top: 10px;
    animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Social Feed Animation */
.social-feed {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.feed-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.feed-item {
    height: 20px;
    background: var(--green);
    border-radius: 10px;
    width: 100%;
    animation: feedPulse 2s ease-in-out infinite;
}

.feed-item:nth-child(2) { animation-delay: 0.3s; }
.feed-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes feedPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 15px;
    height: 15px;
    background: var(--purple);
    border-radius: 50%;
    animation: iconBounce 1.5s ease-in-out infinite;
}

.social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-icon:nth-child(3) { animation-delay: 0.4s; }

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Portfolio Labels */
.portfolio-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 255, 178, 0.9);
    color: var(--background);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 178, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.portfolio-item:hover .portfolio-label {
    background: var(--green);
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 178, 0.4);
}

.portfolio-view-all {
    text-align: center;
    margin-top: 2rem;
}

.view-all-link {
    color: var(--green);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.view-all-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--green);
    transition: width 0.3s ease;
}

.view-all-link:hover::after {
    width: 100%;
}

.view-all-link:hover {
    transform: translateX(5px);
}

.view-all-link i {
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(3px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--background);
    position: relative;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.testimonial-item {
    display: none;
    padding: 2rem;
}

.testimonial-item.active {
    display: block;
    animation: fadeInTestimonial 0.5s ease-in-out;
}

@keyframes fadeInTestimonial {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-quote {
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--purple);
    position: absolute;
    top: -20px;
    left: -30px;
    font-family: serif;
}

.testimonial-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--purple);
    position: absolute;
    bottom: -40px;
    right: -30px;
    font-family: serif;
}

.testimonial-author {
    color: var(--green);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-company {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--purple);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-arrow:hover {
    background: var(--green);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(125, 63, 255, 0.3);
}

.testimonial-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--background);
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--green);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 178, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 178, 0.1);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--green);
    margin-top: 0.2rem;
    min-width: 30px;
}

.contact-item-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-item-content p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(125, 63, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-gray);
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 255, 178, 0.1);
}

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

.btn-submit {
    background: var(--green);
    color: var(--background);
    border: 2px solid var(--green);
    padding: 15px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    background: transparent;
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 178, 0.3);
}

.btn-submit i {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--background);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(125, 63, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--green);
    letter-spacing: -0.01em;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--green);
    padding-left: 1.5rem;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(125, 63, 255, 0.1);
    border: 1px solid rgba(125, 63, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(125, 63, 255, 0.3);
    border-color: var(--purple);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(125, 63, 255, 0.2);
        padding: 2rem 0;
        border-top: 1px solid rgba(125, 63, 255, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-agency {
        font-size: 3.5rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 250px;
        justify-content: center;
    }
    
    .services-title,
    .portfolio-title,
    .testimonials-title,
    .contact-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .testimonials-carousel {
        padding: 0 1rem;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
    }
    
    .testimonial-quote::before,
    .testimonial-quote::after {
        font-size: 2.5rem;
    }
    
    .testimonial-quote::before {
        top: -10px;
        left: -15px;
    }
    
    .testimonial-quote::after {
        bottom: -25px;
        right: -15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-agency {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .services-title,
    .portfolio-title,
    .testimonials-title,
    .contact-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        width: 220px;
        padding: 12px 25px;
    }
    
    .about-title {
        font-size: 1.6rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-green {
    color: var(--green);
}

.text-purple {
    color: var(--purple);
}

.bg-transparent {
    background: transparent;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    .service-card,
    .portfolio-item,
    .contact-item {
        transition: all 0.3s ease;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --purple: #9D5FFF;
        --green: #20FFD2;
        --light-gray: #E0E0E0;
    }
}

/* Video Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(125, 63, 255, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(125, 63, 255, 0);
    }
}

/* Enhanced hover effects for video modal close button */
.video-modal-close:hover {
    color: #FFFFFF !important;
    transform: scale(1.1);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particles-bg {
        animation: none;
    }
    
    .flame-icon {
        animation: none;
    }
    
    .flame-layer-1,
    .flame-layer-2,
    .flame-layer-3,
    .flame-tip,
    .side-flame-left,
    .side-flame-right {
        animation: none;
    }
}/
* Font Awesome icon fixes */
.fas, .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

/* Fallback icon styles */
.fallback-icon {
    font-family: inherit !important;
    font-weight: normal !important;
}

/* Ensure service icons are visible */
.service-icon i {
    display: inline-block;
    width: auto;
    height: auto;
    text-align: center;
}

/* Fix for missing icons - add background color to make them visible */
.service-icon i::before {
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
}

/* If icons still don't show, show a default symbol */
.service-icon i:empty::after {
    content: "⚡";
    font-size: 2rem;
    color: var(--background);
}/* Creat
ive Process Section */
.creative-process {
    padding: 100px 0;
    background: var(--background);
    position: relative;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.process-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-card {
    background: rgba(125, 63, 255, 0.1);
    border: 2px dashed rgba(125, 63, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(125, 63, 255, 0.05) 0%, rgba(0, 255, 178, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: 0 20px 40px rgba(125, 63, 255, 0.2);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple) 0%, #9D5FFF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(125, 63, 255, 0.4);
}

.process-icon i {
    font-size: 2rem;
    color: var(--white);
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.process-card p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Process card animations */
.process-card:nth-child(1) {
    animation-delay: 0.1s;
}

.process-card:nth-child(2) {
    animation-delay: 0.2s;
}

.process-card:nth-child(3) {
    animation-delay: 0.3s;
}

.process-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive design for process section */
@media (max-width: 768px) {
    .process-title {
        font-size: 2.2rem;
    }
    
    .process-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-title {
        font-size: 1.8rem;
    }
}