/* HepsiCCTV Özel Stiller */

/* Genel Stiller */
body {
    font-family: 'Arial', sans-serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Kart Stiller */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Ürün Kartları */
.product-card {
    border-radius: 12px;
    overflow: hidden;
}

.product-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-card .card-text {
    color: #6c757d;
    line-height: 1.6;
}

/* Kategori Kartları */
.category-card {
    border-radius: 12px;
    overflow: hidden;
}

.category-card .card-img-top {
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Hizmet Kartları */
.service-card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Özellik Kartları */
.feature-card {
    padding: 1.5rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.feature-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Ürün Detay Sayfası */
.product-image {
    max-height: 400px;
    object-fit: cover;
}

.product-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.product-gallery img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.product-gallery img:hover,
.product-gallery img.active {
    border-color: #007bff;
}

.thumbnail-img {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.thumbnail-img:hover {
    transform: scale(1.1);
}

/* Ürün Bilgileri */
.product-info {
    padding: 1rem 0;
}

.product-description {
    line-height: 1.8;
    color: #555;
}

.specifications {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.specifications h5 {
    color: #007bff;
    margin-bottom: 1rem;
}

.specs-content {
    line-height: 1.6;
    color: #555;
}

/* İletişim Bölümü */
.contact-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    border-radius: 50%;
}

/* Bilgi Al Butonu */
.btn-info-request {
    background: linear-gradient(45deg, #28a745, #20c997);
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-info-request:hover {
    background: linear-gradient(45deg, #218838, #1ea87a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* WhatsApp Butonu */
.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    color: white;
}

/* Navbar Stiller */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

/* Footer Stiller */
footer {
    background: linear-gradient(135deg, #343a40, #495057) !important;
}

footer h5 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

footer .social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #007bff !important;
}

/* Form Stiller */
.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* İletişim Sayfası */
.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-info h4 {
    color: #007bff;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* İstatistikler */
.stat-item {
    padding: 1rem;
}

.stat-item h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0.75rem 0;
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

/* Alert Stiller */
.alert {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.25rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Tablo Stiller */
.table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.table thead th {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Modal Stiller */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

.modal-header .btn-close {
    background-size: 1.2em;
}

/* Loading Animasyonu */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Stiller */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .product-gallery {
        justify-content: center;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .d-flex {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .card-img-top {
        height: 180px;
    }
    
    .product-card .card-img-top {
        height: 200px;
    }
    
    .category-card .card-img-top {
        height: 160px;
    }
} 