/* ===========================
   BOLD REDESIGN - Art/Tech 20s Audience
   Big, Emotional, Engaging
   =========================== */

/* HERO - MASSIVE LOGO & IMPACT */
.hero-logo {
    width: 600px !important;
    height: auto;
    max-width: 85vw;
    filter: drop-shadow(0 30px 60px rgba(34, 197, 94, 0.3));
}

/* Keep the spinning animation from fun-styles.css */
.hero-logo-spin {
    animation: heroSlowSpin 30s linear infinite !important;
    transition: transform 0.3s ease;
}

@media (max-width: 968px) {
    .hero-logo {
        width: 450px !important;
    }
}

@media (max-width: 640px) {
    .hero-logo {
        width: 350px !important;
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 30px 60px rgba(34, 197, 94, 0.3));
    }
    50% {
        filter: drop-shadow(0 30px 80px rgba(6, 182, 212, 0.5));
    }
}

@keyframes heroSlowSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Larger, Bolder Hero Text */
.hero-title {
    font-size: 4.5rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #22c55e 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.75rem !important;
    font-weight: 500 !important;
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem !important;
    }
    .hero-subtitle {
        font-size: 1.35rem !important;
    }
}

/* Enhanced Background Particles */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1) rotate(2deg);
        opacity: 1;
    }
}

/* HUGE IMAGES - Problem Section */
.problem-section {
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/collaboration.jpg') center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
    animation: slowZoom 20s ease-in-out infinite;
}

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

/* Solution Section - FULL WIDTH IMAGE */
.solution-section {
    position: relative;
    padding: 8rem 0 !important;
}

.solution-fun-image {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    width: 45% !important;
    height: 100% !important;
    z-index: 0;
    opacity: 0.25 !important;
    overflow: hidden;
}

.solution-fun-image .fun-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    animation: parallaxImage 30s ease-in-out infinite;
}

@keyframes parallaxImage {
    0%, 100% {
        transform: scale(1.1) translateY(0);
    }
    50% {
        transform: scale(1.2) translateY(-20px);
    }
}

@media (max-width: 968px) {
    .solution-fun-image {
        width: 100% !important;
        height: 300px !important;
        top: 0 !important;
        opacity: 0.15 !important;
    }
}

/* Services Section - MASSIVE HEADER IMAGE */
.services-fun-header {
    height: 600px !important;
    margin-bottom: 4rem;
}

.services-fun-header .fun-image-wide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) saturate(1.3) contrast(1.1);
    animation: imageFloat 20s ease-in-out infinite;
}

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

.fun-overlay {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 40%,
        rgba(255, 255, 255, 0.95) 100%) !important;
}

@media (max-width: 968px) {
    .services-fun-header {
        height: 400px !important;
    }
}

/* Process Section - LARGE SIDE IMAGE */
.process-fun-image {
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 400px !important;
    height: 500px !important;
    z-index: 0;
    opacity: 0.3 !important;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.process-fun-image .fun-image-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: none;
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg) scale(1.2);
    }
    to {
        transform: rotate(360deg) scale(1.2);
    }
}

@media (max-width: 968px) {
    .process-fun-image {
        width: 200px !important;
        height: 300px !important;
        opacity: 0.15 !important;
    }
}

/* Target Audience - HUGE IMAGE GRID */
.audience-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem !important;
    margin-bottom: 4rem;
}

.audience-img-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    aspect-ratio: 4/3;
}

.audience-img-container:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 70px rgba(34, 197, 94, 0.3);
}

.audience-img-container .fun-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.audience-img-container:hover .fun-image {
    transform: scale(1.15) rotate(2deg);
}

/* Add image overlay text effect */
.audience-img-container::after {
    content: '✨';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0;
    transform: translateY(20px) rotate(-15deg);
    transition: all 0.4s ease;
}

.audience-img-container:hover::after {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

@media (max-width: 768px) {
    .audience-images {
        grid-template-columns: 1fr;
        gap: 2rem !important;
    }
}

/* ENHANCED CARDS - More Depth */
.problem-card,
.solution-card,
.value-card {
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.problem-card:hover,
.solution-card:hover,
.value-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 25px 60px rgba(34, 197, 94, 0.2) !important;
}

/* Section Titles - More Dynamic */
.section-title {
    font-size: 4rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #22c55e 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    font-size: 0.6em !important;
    animation: sparkle 2s ease-in-out infinite, float 3s ease-in-out infinite;
}

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

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

@media (max-width: 968px) {
    .section-title {
        font-size: 2.5rem !important;
    }
}

/* Gradient Accents */
.solution-card::before,
.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #22c55e 0%, #06b6d4 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.solution-card:hover::before,
.service-block:hover::before {
    transform: scaleX(1);
}

/* Playful Service Icons */
.service-icon,
.value-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.service-feature:hover .service-icon,
.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg) !important;
}

/* Glassmorphism Effect on Pillars */
.pillar-icon {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.pillar-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--primary-gradient);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar:hover .pillar-icon::before {
    opacity: 1;
}

/* Enhanced Button Animations */
.btn-large {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-large:hover::before {
    width: 300px;
    height: 300px;
}

.btn-large:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.4) !important;
}

/* Add Parallax Scroll Effect */
@media (min-width: 969px) {
    .solution-fun-image,
    .process-fun-image {
        will-change: transform;
    }
}

/* Energy Burst on Hover */
@keyframes energyBurst {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.pillar-icon:hover {
    animation: energyBurst 0.8s ease-out;
}

/* Subtle Grid Pattern Overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

/* Visual Gallery Section */
.visual-gallery-section {
    padding: 4rem 0;
    background: var(--color-white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(34, 197, 94, 0.25);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

