@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

.font-display {
    font-family: 'Space Grotesk', sans-serif;
}

.text-gradient {
    background: linear-gradient(to right, #EF5A22, #FF8C5A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-futuristic-dark {
    background-color: var(--brand-dark);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-pulse-glow {
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.5;
    }
}

/* New animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section Animations */
.hero-headline {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-headline.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-subheadline {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.1s, transform 0.8s ease-out 0.1s;
}

.hero-subheadline.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-ctas {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.hero-ctas.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-trust {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.hero-trust.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero background visual is now always visible, no animation needed */

/* Hero Background Shapes */
.hero-shape {
    background: linear-gradient(135deg, #EF5A22 0%, rgba(239, 90, 34, 0.3) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float-shape 20s ease-in-out infinite;
}

.hero-shape-1 {
    animation-delay: 0s;
}

.hero-shape-2 {
    animation-delay: 5s;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.hero-shape-3 {
    animation-delay: 10s;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(2%, -2%) rotate(2deg);
    }
    50% {
        transform: translate(-2%, -4%) rotate(-2deg);
    }
    75% {
        transform: translate(2%, -2%) rotate(1deg);
    }
}

/* Slow float animation for decorative elements */
.animate-float-slow {
    animation: float-slow 8s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-15px) translateX(10px);
    }
}

/* Hero W Shape Animation */
.hero-w-shape {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: draw-w 2.5s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-w-shape-2 {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: draw-w 2s ease-out forwards;
    animation-delay: 1s;
}

.hero-w-shape-3 {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: draw-w 2s ease-out forwards;
    animation-delay: 1.5s;
}

@keyframes draw-w {
    to {
        stroke-dashoffset: 0;
    }
}



/* Background animations */
.animated-bg {
    position: relative;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(239, 90, 34, 0.08) 0%, transparent 50%);
    animation: rotate-bg 20s linear infinite;
}

.animated-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(239, 90, 34, 0.03) 0%, rgba(255, 140, 90, 0.03) 100%);
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes rotate-bg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-bg {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.5;
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(239, 90, 34, 0.1);
    border-radius: 50%;
    animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}



/* Mobile menu styles are now in base.css */

.bg-gunmetal {
    background-color: #0a5a53;
}

.border-gunmetal {
    border-color: #3A4449;
}

.text-gunmetal {
    color: #4A5459;
}

.hover\:bg-gunmetal:hover {
    background-color: #3A4449;
}

.hover\:border-gunmetal:hover {
    border-color: #4A5459;
}


/* Service Card Styles */
.service-card {
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-icon {
    transition: all 0.3s ease;
}

.service-icon-svg {
    transition: color 0.3s ease;
    color: #EF5A22 !important;
    stroke: #EF5A22 !important;
}

.service-card.group:hover .service-icon-svg {
    color: #EF5A22 !important;
    stroke: #EF5A22 !important;
}

.service-button {
    transition: all 0.3s ease;
    color: #EF5A22 !important;
    background-color: transparent !important;
    border: 1px solid rgba(239, 90, 34, 0.2) !important;
}

.service-button:hover {
    color: #FFFFFF !important;
    background-color: #EF5A22 !important;
    border-color: #EF5A22 !important;
    box-shadow: 0 10px 25px -5px rgba(239, 90, 34, 0.2), 0 10px 10px -5px rgba(239, 90, 34, 0.04) !important;
}

.contact-input {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.contact-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(239, 90, 34, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.submit-button {
    position: relative;
    overflow: hidden;
}

.submit-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-button:hover::after {
    width: 300px;
    height: 300px;
}

/* Testimonials Section */
.testimonial-slide {
    position: relative;
    min-height: 200px;
}

.testimonial-item {
    transition: opacity 0.5s ease-in-out;
    display: none;
    opacity: 0;
}

.testimonial-item.active {
    display: block !important;
    opacity: 1 !important;
}

.testimonial-dot {
    cursor: pointer;
    transition: all 0.3s ease;
    height: 0.5rem;
    border-radius: 9999px;
    border: none;
    padding: 0;
    background-color: rgba(15, 42, 45, 0.3);
}

.testimonial-dot:hover {
    background-color: rgba(15, 42, 45, 0.5) !important;
}