/* Avis Kampanya - Özel Stiller */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --avis-red: #D4002A;
    --avis-red-dark: #B00024;
    --avis-red-light: #FF1744;
    --avis-navy: #1A1A2E;
    --avis-gray: #6B7280;
    --avis-light: #F8F9FA;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
}

/* Sticky Header */
.header-sticky {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Hero gradient overlay */
.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.85) 0%,
        rgba(212, 0, 42, 0.75) 100%
    );
}

/* Form input focus */
.form-input:focus {
    outline: none;
    border-color: var(--avis-red);
    box-shadow: 0 0 0 3px rgba(212, 0, 42, 0.15);
}

/* Success toast animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-toast {
    animation: slideUp 0.4s ease-out;
}

/* WhatsApp floating button pulse */
@keyframes pulse-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn {
    animation: pulse-ring 2s infinite;
}

/* Campaign badge */
.campaign-badge {
    background: linear-gradient(135deg, var(--avis-red) 0%, var(--avis-red-light) 100%);
}

/* Card hover effect */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
