/* Genel Stiller */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4; /* Açık gri bir arka plan */
    color: #333;
    line-height: 1.6;
}

/* Telefon Butonları */
.phone-top {
    position: relative;
    margin-bottom: 10px;
}

.call-now-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #000000;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.call-now-button:hover {
    background-color: #e6b800;
    color: #000000;
    text-decoration: none;
    transform: scale(1.05);
}

.call-now-mobile {
    position: absolute;
    right: 70px;
    top: 10px;
    background-color: #FFCC00;
    color: #000000;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    z-index: 1000;
}

.call-now-mobile:hover {
    background-color: #e6b800;
    color: #000000;
    text-decoration: none;
}

/* Tema Renkleri */
.bg-dark {
    background-color: #000000 !important; /* Siyah */
}

.bg-warning {
    background-color: #FFCC00 !important; /* Sarı */
}

.text-warning {
    color: #FFCC00 !important; /* Sarı metin */
}

/* Navbar Stilleri */
.navbar-dark .navbar-brand,
.navbar-dark .navbar-nav .nav-link {
    color: #000000; /* Navbar linkleri için siyah renk */
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #333333; /* Navbar linkleri hover durumu için koyu gri */
}

.navbar-brand img {
    margin-right: 8px;
}

/* Buton Stilleri */
.btn-success {
    background-color: #FFCC00; /* Sarı buton */
    border-color: #FFCC00;
    color: #000000; /* Buton yazı rengi siyah */
    font-weight: bold;
}

.btn-success:hover {
    background-color: #e6b800; /* Sarı buton hover */
    border-color: #e6b800;
    color: #000000;
}

.btn-warning {
    background-color: #FFCC00;
    border-color: #FFCC00;
    color: #000000;
    font-weight: bold;
}

.btn-warning:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    color: #000000;
}

.btn-primary {
    background-color: #000000; /* Siyah buton */
    border-color: #000000;
}

.btn-primary:hover {
    background-color: #333333; /* Siyah buton hover */
    border-color: #333333;
}

/* Başlık Stilleri */
header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

#hero h2 {
    color: #000000;
    font-weight: bold;
}

#hero .lead {
    color: #555;
}

section h2 {
    color: #000000; /* Başlıklar için siyah renk */
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
}

section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #FFCC00;
    margin: 15px auto 0;
}

h3 {
    font-weight: 600;
    color: #000000;
}

/* Kart Stilleri */
.card {
    border: 1px solid #FFCC00; /* Kart kenarlığı sarı */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    color: #000000; /* Kart başlığı siyah */
    font-weight: bold;
}

/* Bölümler */
#hakkimizda {
    background-color: #fff; /* Hakkımızda bölümü arka planı beyaz */
}

/* İletişim Bölümü */
#iletisim a {
    color: #000000; /* İletişim bölümündeki linkler siyah */
    text-decoration: none;
}

#iletisim a:hover {
    color: #FFCC00; /* İletişim bölümündeki linkler hover sarı */
    text-decoration: underline;
}

.contact-info i {
    width: 20px;
    text-align: center;
}

.social-icon {
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Özellik Kutuları */
.feature-box, .reason-box {
    padding: 20px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 100%;
}

/* Listeler */
.two-column-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    list-style-type: none;
    padding-left: 0;
}

.two-column-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.two-column-list li:before {
    content: '✓';
    color: #FFCC00;
    position: absolute;
    left: 0;
    top: 0;
}

/* Accordion */
.accordion .card-header {
    background-color: #f9f9f9;
    border-left: 3px solid #FFCC00;
}

.accordion .btn-link {
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    text-align: left;
}

.accordion .btn-link:hover, .accordion .btn-link:focus {
    text-decoration: none;
}

/* Footer Stilleri */
footer {
    background-color: #000000;
}

footer a.text-white {
    transition: color 0.3s ease;
}

footer a.text-white:hover {
    color: #FFCC00 !important; /* Footer link hover sarı */
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-dark .navbar-toggler {
        border-color: #000;
    }
    
    .navbar-dark .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    #hero h2 {
        font-size: 1.8rem;
    }

    #hero .btn-lg {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .two-column-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    section h2:after {
        width: 60px;
    }
    
    .card-body h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    header .lead {
        font-size: 0.9rem;
    }

    section h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }

    .card-body {
        padding: 1rem;
    }

    #iletisim .h3,
    #iletisim .h3 a {
        font-size: 1.5rem; /* Mobil için telefon numarası boyutu */
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .feature-box i, .reason-box i, .card i {
        font-size: 2.5rem !important;
    }
}

/* Animasyonlar */
.btn {
    transition: all 0.3s ease;
}

.social-icon, .card, .feature-box, .reason-box {
    transition: all 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

#hero .btn-success {
    animation: pulse 2s infinite;
}

#hero .btn-success:hover {
    animation: none;
}

/* Baskı Stilleri */
@media print {
    .navbar, .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
} 