/* style.css */

/* Typography & Base */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
    -webkit-font-smoothing: antialiased;
    background-color: #ffffff;
    color: #0f172a; /* Slate 900 */
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* --- MODERN CARD STYLES --- */
/* Clean, solid cards with subtle shadows. No glows. */
.modern-card {
    background: #ffffff;
    border: 1px solid #e2e8f0; /* Slate 200 */
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1; /* Slate 300 */
}

/* --- CONTACT FORM STYLE --- */
/* This ensures the form is a visible, solid box */
.contact-box {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08); /* Deep, soft shadow */
    border: 1px solid #f1f5f9; /* Slate 100 */
    overflow: hidden;
}

/* Modals */
.modal { 
    opacity: 0; visibility: hidden; transition: all 0.2s ease; transform: scale(0.98);
}
.modal.active { 
    opacity: 1; visibility: visible; transform: scale(1);
}

/* Background Utilities */
.bg-dot-pattern {
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 32px 32px;
}