/* ============================================
   HERO SECTION: VIBRANT 3D DESIGN
   Energetic gradient with 3D floating shapes
   ============================================ */

/* Hero Base - Black Background with Orange Gradient */
.hero-vibrant-3d {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    overflow: hidden;
    /* background:
        radial-gradient(ellipse at top right, rgba(255, 107, 0, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(245, 130, 32, 0.22) 0%, transparent 60%),
        #0a0a0a; */
}

/* Platform Logos Container */
.platform-logos-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.platform-logo {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 180px;
    opacity: 0.85;
    filter: drop-shadow(0 10px 30px rgba(0, 174, 239, 0.4));
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transition: all 0.3s ease;
}

.platform-logo:hover {
    opacity: 1;
    filter: drop-shadow(0 15px 40px rgba(0, 174, 239, 0.6));
    transform: scale(1.1);
}

/* Google Ads Logo */
.logo-google {
    top: 15%;
    right: 10%;
    max-width: 150px;
    animation: floatLogo 18s ease-in-out infinite;
}

/* Meta Logo */
.logo-meta {
    bottom: 20%;
    left: 15%;
    max-width: 120px;
    animation: floatLogo 15s ease-in-out infinite 2s;
}

/* Facebook Logo */
.logo-facebook {
    top: 50%;
    right: 8%;
    max-width: 80px;
    animation: floatLogo 20s ease-in-out infinite 1s;
    opacity: 0.7;
}

/* Display Ads Logo */
.logo-display {
    bottom: 15%;
    right: 20%;
    max-width: 120px;
    animation: floatLogo 16s ease-in-out infinite 3s;
    opacity: 0.65;
}

/* Social Ads Logo */
.logo-social {
    top: 30%;
    left: 8%;
    max-width: 100px;
    animation: floatLogo 17s ease-in-out infinite 1.5s;
    opacity: 0.7;
}

/* Engagement Logo */
.logo-engagement {
    top: 15%;
    left: 40%;
    max-width: 80px;
    animation: floatLogo 19s ease-in-out infinite 2.5s;
    opacity: 0.6;
}

/* Search Ads Logo */
.logo-search {
    top: 20%;
    right: 30%;
    max-width: 140px;
    animation: floatLogo 14s ease-in-out infinite 0.5s;
    opacity: 0.75;
}

/* Logo Float Animation */
@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-25px) translateX(15px) rotate(3deg);
    }

    50% {
        transform: translateY(-10px) translateX(-10px) rotate(-2deg);
    }

    75% {
        transform: translateY(-35px) translateX(8px) rotate(4deg);
    }
}

/* Responsive Logo Sizes */
@media (max-width: 1200px) {
    .platform-logo {
        max-width: 140px;
    }

    .logo-google {
        max-width: 150px;
    }

    .logo-meta {
        max-width: 120px;
    }

    .logo-instagram {
        max-width: 110px;
    }

    .logo-youtube {
        max-width: 130px;
    }

    .logo-linkedin {
        max-width: 100px;
    }

    .logo-twitter {
        max-width: 95px;
    }

    .logo-tiktok {
        max-width: 90px;
    }
}

@media (max-width: 768px) {
    .platform-logo {
        max-width: 90px;
        opacity: 0.6;
    }

    .logo-google {
        max-width: 100px;
    }

    .logo-meta {
        max-width: 80px;
    }

    .logo-instagram {
        max-width: 70px;
    }

    .logo-youtube {
        max-width: 85px;
    }

    .logo-linkedin {
        max-width: 65px;
    }

    .logo-twitter {
        max-width: 60px;
    }

    .logo-tiktok {
        max-width: 58px;
    }
}

/* Text Stack */
.hero-text-stack {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.hero-text-line {
    font-family: 'Teko', sans-serif;
    font-weight: 900;
    font-size: 90px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 10px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    animation: textSlideIn 1s ease-out backwards;
    transform-origin: left center;
}

/* Add stroke effect for depth */
.hero-text-line::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px rgba(0, 174, 239, 0.3);
    transform: translate(2px, 2px);
}

.line-1 {
    animation-delay: 0.2s;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.line-2 {
    animation-delay: 0.4s;
    margin-left: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.line-3 {
    animation-delay: 0.6s;
    margin-left: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes textSlideIn {
    from {
        opacity: 0;
        transform: translateX(-100px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Responsive Text Sizes */
@media (min-width: 1680px) {
    .hero-text-line {
        font-size: 110px;
        letter-spacing: 5px;
    }
}

@media (min-width: 1920px) {
    .hero-text-line {
        font-size: 130px;
        letter-spacing: 6px;
    }
}

@media (max-width: 1400px) {
    .hero-text-line {
        font-size: 80px;
        letter-spacing: 3px;
    }
}

@media (max-width: 1200px) {
    .hero-text-line {
        font-size: 68px;
        letter-spacing: 2px;
    }

    .line-2 {
        margin-left: 30px;
    }

    .line-3 {
        margin-left: 15px;
    }
}

@media (max-width: 992px) {
    .hero-text-line {
        font-size: 52px;
        letter-spacing: 2px;
    }

    .line-2,
    .line-3 {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-text-line {
        font-size: 40px;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .hero-text-line::before {
        -webkit-text-stroke: 1px rgba(0, 174, 239, 0.3);
    }
}

@media (max-width: 576px) {
    .hero-text-line {
        font-size: 32px;
    }
}

/* CTA Section */
.hero-cta-section {
    margin-top: 60px;
    animation: ctaFadeIn 1s ease-out 0.8s backwards;
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-vibrant-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00 0%, #f58220 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 20px 55px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 30px rgba(255, 107, 0, 0.4),
        0 0 40px rgba(255, 107, 0, 0.2);
}

.hero-vibrant-cta:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ff9940 100%);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 50px rgba(255, 107, 0, 0.6),
        0 0 60px rgba(255, 107, 0, 0.4);
}

.hero-vibrant-cta:active {
    transform: translateY(-3px) scale(1.03);
}

@media (max-width: 768px) {
    .hero-cta-section {
        margin-top: 40px;
    }

    .hero-vibrant-cta {
        padding: 16px 40px;
        font-size: 16px;
    }
}

/* Responsive Shape Adjustments */
@media (max-width: 1200px) {
    .sphere-1 {
        width: 200px;
        height: 200px;
    }

    .sphere-2 {
        width: 150px;
        height: 150px;
    }

    .ring-1 {
        width: 160px;
        height: 160px;
        border-width: 28px;
    }

    .ring-2 {
        width: 120px;
        height: 120px;
        border-width: 20px;
    }

    .cube-1 {
        width: 100px;
        height: 100px;
    }

    .cube-2 {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 768px) {
    .sphere-1 {
        width: 120px;
        height: 120px;
    }

    .sphere-2 {
        width: 90px;
        height: 90px;
    }

    .ring-1 {
        width: 100px;
        height: 100px;
        border-width: 18px;
    }

    .ring-2 {
        width: 80px;
        height: 80px;
        border-width: 15px;
    }

    .cube-1 {
        width: 70px;
        height: 70px;
    }

    .cube-2 {
        width: 55px;
        height: 55px;
    }
}

/* Hero Section Padding */
@media (max-width: 768px) {
    .hero-vibrant-3d {
        padding: 60px 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    .hero-vibrant-3d,
    .shape-3d,
    .hero-text-line,
    .hero-cta-section,
    .hero-vibrant-cta {
        animation: none !important;
        transition: none !important;
    }
}