/* ALSIN Corporate Website - Professional Styles */

:root {
    --primary: #1E3A5F;
    --accent: #E86B3D;
    --accent-light: #F4A261;
}

/* Form Styles */
.form-input {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus {
    outline: none;
    border-color: #E86B3D;
    box-shadow: 0 0 0 4px rgba(232, 107, 61, 0.08);
}

/* Modal Backdrop */
#modal-backdrop {
    animation: fadeIn 0.15s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Product Modal */
#product-modal {
    max-height: 92vh;
    overflow-y: auto;
}

/* Gallery Image Hover */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item .overlay {
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Stats Counter */
.stat-value {
    font-feature-settings: "tnum";
}

/* Custom Tailwind Extensions */
.btn-primary {
    background-color: #E86B3D;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background-color: #d55d32;
    transform: translateY(-1px);
}

.btn-outline {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
    background-color: #1E3A5F;
    color: white;
    border-color: #1E3A5F;
}

/* Professional Card Shadows */
.shadow-premium {
    box-shadow: 0 10px 15px -3px rgb(15 23 42 / 0.08), 
                0 4px 6px -4px rgb(15 23 42 / 0.08);
}

/* Testimonial Quote Style */
.quote-mark {
    font-family: Georgia, serif;
    line-height: 0.6;
}

/* Product Feature Pills */
.feature-pill {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 0.75rem;
    padding: 0.15rem 0.65rem;
    border-radius: 9999px;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .section-title:after {
        width: 38px;
    }
}
