/* Additional custom styles for Pamir Surgical */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced button styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

/* Enhanced form styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Enhanced card hover effects */
.section > .container > div > div:hover {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

/* Responsive grid adjustments */
@media (max-width: 768px) {
    .hero > .container > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .section > .container > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-form-info {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced navbar */
.navbar {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Enhanced shadows */
.shadow-enhanced {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}
