 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

 #benefits {
    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
 }

#contact {
    .contact-form-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.5);
    }
    .contact-form-textarea {
        min-height: 150px;
    }
    .map-container {
        position: relative;
        overflow: hidden;
        padding-top: 56.25%;
    }
    .map-iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    .success-message {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    .success-message.show {
        opacity: 1;
        transform: translateY(0);
    }
}

#faq {
    .faq-item {
        transition: all 0.3s ease;
    }
    .faq-answer {
        display: none;
        transition: all 0.3s ease;
    }
    .faq-item.active .faq-answer {
        display: block;
    }
    .faq-item.active .faq-answer {
        max-height: 500px;
    }
    .faq-item.active .faq-toggle {
        transform: rotate(180deg);
    }
}

#products {
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-link:hover {
        color: #3b82f6 !important;
    }
    .active-nav {
        color: #3b82f6 !important;
        font-weight: 600;
    }
}
        
.hero-gradient {
    position: relative;
    overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-bg.active {
    opacity: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.window-card {
    /* transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
    /* transform: translateY(0); */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.window-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: white;
    border-radius: 100%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}

.gradient-text {
    background: linear-gradient(90deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.phone-shake {
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

.floating-window {
    animation: float 6s ease-in-out infinite;
}

.wave-hand {
    animation: wave 1.5s linear infinite;
    transform-origin: 70% 70%;
    display: inline-block;
}