/* Custom Styles for Strategic Signs */

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0f0d;
}

::-webkit-scrollbar-thumb {
    background: #1e2a26;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

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

.hero-badge {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-headline {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-subheadline {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-trust {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
}

/* Service Card Hover Effects */
.service-card {
    backdrop-filter: blur(10px);
}

.service-card:hover {
    box-shadow: 0 20px 60px -15px rgba(5, 150, 105, 0.15);
}

/* Portfolio Item Hover */
.portfolio-item {
    cursor: pointer;
}

/* Process Step Hover */
.process-step:hover .w-20 {
    box-shadow: 0 20px 40px -10px rgba(5, 150, 105, 0.3);
}

/* Navigation Scroll Effect */
.nav-scrolled {
    background: rgba(10, 15, 13, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 42, 38, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Section Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

.section-label {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.1s;
}

.section-label.visible,
.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section Animations */
.about-image {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.about-content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out 0.2s;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-content.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Service Cards Animation */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Portfolio Items Animation */
.portfolio-item {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease-out;
}

.portfolio-item.visible {
    opacity: 1;
    transform: scale(1);
}

/* Process Steps Animation */
.process-step {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Button Pulse */
.cta-btn {
    position: relative;
    overflow: hidden;
}

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

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

/* Gold Gradient Text Effect */
.gold-gradient {
    background: linear-gradient(135deg, #d4a853 0%, #f4c430 50%, #d4a853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Emerald Gradient Text Effect */
.emerald-gradient {
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Menu Animations */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Form Input Focus Effects */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    nav,
    #contact,
    .cta-btn,
    button {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
