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

/* Base Styles & Resets */
html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #e5edf1;
    color: #1E293B;
}

/* Custom Colors & Utilities */
.text-brand { color: #0D9488; }
.bg-brand { background-color: #0D9488; }
.hover\:bg-brand-dark:hover { background-color: #0F766E; }

/* Sticky Header specific styles (Removed for Card UI layout) */

/* Hero Overlay gradient */
.hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.4) 100%);
}
.hero-bg-overlay {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(13, 148, 136, 0.15) 100%);
}

/* Service Card Hover Micro-interactions */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Buttons */
.btn-primary {
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

/* GSAP Defaults (Hide elements before GSAP initializes them) */
.gsap-fade, .gsap-stagger-card, .gsap-title {
    opacity: 0;
    visibility: hidden;
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #CBD5E1;
    border-radius: 0.5rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus {
    outline: none;
    border-color: #0D9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

/* Homepage Header Transparent State (Removed for Card UI Layout) */
