/* Global Styles */
html {
    scroll-behavior: smooth;
}

/* Hero Section Gradients */
.gradient-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1a2a44 50%, #1e293b 100%);
}

/* Card Hover Effects */
.card-hover {
    transition: all .3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 42, 68, .12);
}

/* Navigation Links */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c5a059;
    transition: width .3s;
}

.nav-link:hover::after,
.nav-active::after {
    width: 100%;
}

/* Testimonials - Quote Mark Styles */
.quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: #e8f0fd;
    font-family: Georgia, serif;
    position: absolute;
    top: -10px;
    left: 16px;
}

/* WhatsApp Pulse Animation */
.whatsapp-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: .75rem;
    font-family: inherit;
    font-size: .9rem;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.form-input:focus {
    border-color: #1a2a44;
    box-shadow: 0 0 0 3px rgba(26, 42, 68, .1);
}

.form-input.error {
    border-color: #ef4444;
}

.error-msg {
    color: #ef4444;
    font-size: .78rem;
    margin-top: .25rem;
    display: none;
}
