:root {
    --primary-color: #11095e;
    --secondary-color: #f8b500;
    --accent-color: #c0392b;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --gradient: linear-gradient(135deg, #e10b15 0%, #c0392b 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Header Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
    color: #000000;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Page Header */
.page-header {
    background: var(--gradient);
    padding: 150px 0 100px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: var(--light-color);
}

.stats-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.btn-custom {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 181, 0, 0.3);
}
.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 181, 0, 0.4);
    color: var(--dark-color);
}
.team-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Emergency Button */
.emergency-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important; /* Masaüstünde sağda kalsın */
    background-color: #0d1b3e !important;
    color: white !important;
    width: auto !important;
    height: auto !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    white-space: nowrap !important;
    z-index: 999999 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4) !important;
}

/* MOBİL ÖZEL AYARI (Tam ortalama burada yapılıyor) */
@media (max-width: 767.98px) {
    .emergency-btn {
        right: 50% !important; /* Sağdan ekranın yarısına kadar çek */
        transform: translateX(50%) !important; /* Kendi genişliğinin yarısı kadar geri iterek tam ortala */
        bottom: 20px !important;
        width: 90% !important; /* Ekranın %90'ını kaplasın (daha şık durur) */
        max-width: 350px !important; /* Çok devasa olmasın */
        font-size: 14px !important;
        padding: 10px 15px !important;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
}
.service-notice-left {
    position: fixed;
    bottom: 20px; /* Alttan mesafe */
    left: 20px;   /* Sol köşeye sabitledik */
    width: 300px;
    background-color: #000000;
    border-top: 5px solid #d32f2f; /* Daha ciddi bir kırmızı/turuncu tonu */
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    z-index: 999999; /* Her şeyin üstünde görünmesi için */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: slideInLeft 0.5s ease-out;
}

.service-notice-content {
    padding: 18px;
}

.service-notice-left h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #d32f2f;
    font-weight: 700;
}

.service-notice-left p {
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 12px;
}

.service-btn {
    background-color: #222;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.service-btn:hover {
    background-color: #d32f2f;
}

/* Mobilde sağdaki butonu kapatmaması için daraltma */
@media (max-width: 480px) {
    .service-notice-left {
        width: 260px;
        left: 10px;
        bottom: 10px;
    }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}