@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Playfair Display', serif;
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Interactive Hover Effects */
.service-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(11, 32, 70, 0.1), 0 10px 10px -5px rgba(11, 32, 70, 0.04);
}

.service-card:hover .icon-container {
    background-color: #D4AF37; /* Gold */
    color: #0B2046; /* Dark Blue */
    transform: scale(1.1);
}

.icon-container {
    transition: all 0.4s ease;
}

/* Form Input Focus Effects */
input:focus, textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Pricing Card Glow Effect */
.pricing-glow {
    box-shadow: 0 0 30px rgba(11, 32, 70, 0.4);
}

/* Background gradient for hero overlay */
.hero-gradient {
    background: linear-gradient(135deg, rgba(11,32,70,0.95) 0%, rgba(6,19,43,0.98) 100%);
}
