/* Custom Styles for 72seconds Website */

body {
    font-family: 'Inter', sans-serif;
    background-color: #111111;
    color: #F3F4F6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #FFB66C 0%, #E35C41 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, #FFB66C 0%, #E35C41 100%);
}

.gradient-border {
    border-image: linear-gradient(135deg, #FFB66C 0%, #E35C41 100%) 1;
}

/* Animated Background Grid */
.hero-bg {
    background-image: 
        linear-gradient(rgba(255, 182, 108, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 182, 108, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Fade in on scroll animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Waveform animation */
.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 60px;
}

.waveform-bar {
    width: 4px;
    background: linear-gradient(135deg, #FFB66C 0%, #E35C41 100%);
    border-radius: 2px;
    animation: wave 1.5s ease-in-out infinite;
}

.waveform-bar:nth-child(1) { animation-delay: 0s; }
.waveform-bar:nth-child(2) { animation-delay: 0.1s; }
.waveform-bar:nth-child(3) { animation-delay: 0.2s; }
.waveform-bar:nth-child(4) { animation-delay: 0.3s; }
.waveform-bar:nth-child(5) { animation-delay: 0.4s; }
.waveform-bar:nth-child(6) { animation-delay: 0.5s; }
.waveform-bar:nth-child(7) { animation-delay: 0.6s; }

@keyframes wave {
    0%, 100% { height: 20px; }
    50% { height: 60px; }
}

/* Mobile menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-menu.active {
    max-height: 500px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Button hover effects */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 182, 108, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 182, 108, 0.2);
}

/* Service card hover */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 182, 108, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 182, 108, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Form input styles */
input, textarea, select {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #F3F4F6;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #FFB66C;
}

input::placeholder, textarea::placeholder {
    color: #9CA3AF;
}

/* Timeline styles */
.timeline-item {
    position: relative;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFB66C 0%, #E35C41 100%);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 20px;
    width: 2px;
    height: calc(100% + 20px);
    background: rgba(255, 182, 108, 0.2);
}

.timeline-item:last-child::after {
    display: none;
}

/* Stats counter */
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFB66C 0%, #E35C41 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Quote styles */
.quote-box {
    border-left: 4px solid;
    border-image: linear-gradient(135deg, #FFB66C 0%, #E35C41 100%) 1;
    padding-left: 1.5rem;
    font-style: italic;
}

/* Logo inversion for dark background */
.logo-inverted {
    filter: brightness(0) invert(1);
}

/* Wow! Signal animation */
.wow-signal-animation {
    animation: pulse-signal 3s ease-in-out infinite;
}

@keyframes pulse-signal {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .waveform {
        height: 40px;
    }
    
    .waveform-bar {
        width: 3px;
    }
    
    @keyframes wave {
        0%, 100% { height: 15px; }
        50% { height: 40px; }
    }
}

