/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Hero gradient overlay */
.hero-gradient {
    background: linear-gradient(135deg, #246073 0%, #1a4a58 50%, #3a8a9f 100%);
}

/* Service card hover lift */
.service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Pricing card highlight */
.pricing-card-featured {
    border-color: #e8a830;
    box-shadow: 0 8px 30px rgba(232, 168, 48, 0.2);
}

/* Form input focus ring */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #246073;
    box-shadow: 0 0 0 3px rgba(36, 96, 115, 0.15);
}

/* PayPal button styling */
.paypal-form select {
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    background: white;
}
