/* ACME GUVENLIK - Custom Styles */
/* Tailwind CDN ile kullanılır, @tailwind direktifleri CDN tarafından sağlanır */

/* Google Fonts import (CDN'den yükleniyor, burada gerek yok) */

/* ============================================================
   COMPONENT STYLES
   ============================================================ */

/* Butonlar */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #0D2B5A;
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 4px 30px rgba(13,43,90,0.3);
    transition: all 0.3s;
    transform: translateY(0);
    text-decoration: none;
}
.btn-primary:hover {
    background-color: #1A4A8A;
    box-shadow: 0 20px 60px rgba(13,43,90,0.4);
    transform: translateY(-2px);
}

.btn-danger {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #C0392B;
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(192,57,43,0.4);
    transition: all 0.3s;
    text-decoration: none;
}
.btn-danger:hover { background-color: #a93226; }

.btn-accent {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #E67E22;
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(230,126,34,0.4);
    transition: all 0.3s;
    transform: translateY(0);
    text-decoration: none;
}
.btn-accent:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid #0D2B5A;
    color: #0D2B5A;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-outline:hover {
    background-color: #0D2B5A;
    color: white;
}

/* Kartlar */
.card-security {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    border: 1px solid #c5d5ec;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 30px rgba(13,43,90,0.3);
    transition: all 0.3s;
    transform: translateY(0);
}
.card-security:hover {
    box-shadow: 0 20px 60px rgba(13,43,90,0.4);
    transform: translateY(-4px);
}

.card-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

/* Başlıklar */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0D2B5A;
    position: relative;
    display: inline-block;
    font-family: 'Exo 2', sans-serif;
}
.section-title::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    width: 4rem;
    height: 4px;
    background-color: #E67E22;
    border-radius: 9999px;
}

.section-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: rgba(230,126,34,0.1);
    color: #d35400;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Form Elemanları */
.input-security {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s;
    outline: none;
}
.input-security:focus {
    border-color: #3b73ba;
    box-shadow: 0 0 0 3px rgba(59,115,186,0.2);
}

/* Shield Icon */
.shield-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #0D2B5A;
    color: white;
    border-radius: 9999px;
    box-shadow: 0 4px 30px rgba(13,43,90,0.3);
    animation: pulse 3s infinite;
}

/* Stats Counter */
.stats-counter {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Glass Effect */
.glass-effect {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Text Shadow */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Scan Effect */
.scan-effect {
    position: relative;
    overflow: hidden;
}
.scan-effect::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(230,126,34,0.5);
    animation: scanLine 2s linear infinite;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    0%   { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-15px); }
}

@keyframes scanLine {
    0%   { top: 0%; }
    100% { top: 100%; }
}

.animate-fade-up   { animation: fadeUp 0.6s ease forwards; }
.animate-slide-in  { animation: slideIn 0.5s ease forwards; }
.animate-float     { animation: float 6s ease-in-out infinite; }
.animate-scan-line { animation: scanLine 2s linear infinite; }
.animate-pulse-slow { animation: pulse 3s infinite; }

/* ============================================================
   FONT FAMILY
   ============================================================ */

body {
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.font-heading {
    font-family: 'Exo 2', sans-serif;
}
