/* Bozuyuk Güvenlik - Ana Stil Dosyası */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    background-color: rgba(0,0,0,0.2);
    padding: 0.5rem 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
}

.header-links a:hover {
    text-decoration: underline;
}

.header-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: white;
    text-decoration: none;
    margin-left: 8px;
    transition: background 0.2s, transform 0.2s;
    vertical-align: middle;
}

.header-links .social-icon:hover {
    background: rgba(255,255,255,0.35);
    transform: scale(1.15);
    text-decoration: none;
}

.header-links .social-icon svg {
    display: block;
}

.header-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    margin-bottom: 1rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 60, 114, 0.8), rgba(42, 82, 152, 0.8)), 
                url('../images/hero-bg.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #28a745;
    color: white;
}

.btn-primary:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: #1e3c72;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Hero CTA — Fiyat Teklifi Al */
.btn-cta-hero {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
    letter-spacing: 0.3px;
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.btn-cta-hero:hover {
    background: linear-gradient(135deg, #e55c00 0%, #ff6b00 100%);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 28px rgba(255, 107, 0, 0.55);
    color: white;
    animation: none;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45); }
    50%       { box-shadow: 0 6px 28px rgba(255, 107, 0, 0.75); }
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1da851;
}

/* Features Section */
.features {
    padding: 60px 20px;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
}

.service-link:hover {
    text-decoration: underline;
}

/* References Section */
.references {
    padding: 60px 20px;
    background-color: white;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.reference-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.reference-card:hover {
    transform: translateY(-5px);
}

.reference-image {
    width: 100%;
    height: 200px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.reference-content {
    padding: 20px;
}

.reference-content h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.reference-content h4 {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Service Areas */
.service-areas {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.area-link {
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: #1e3c72;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.area-link:hover {
    background-color: #1e3c72;
    color: white;
    transform: translateY(-3px);
}

/* Info Section */
.info-section {
    padding: 60px 20px;
    background-color: white;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-content h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.info-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #1e3c72;
    color: white;
    padding: 40px 20px 20px;
}

/* Partners Section */
.partners {
    padding: 60px 20px;
    background-color: white;
    overflow: hidden;
}

.partners-slider {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.2);
    border-color: #1e3c72;
}

.partner-logo svg {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s;
}

.partner-logo:hover svg {
    transform: scale(1.1);
}

/* Why Camera Section */
.why-camera {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.why-table {
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-table table {
    width: 100%;
    border-collapse: collapse;
}

.why-table th,
.why-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.why-table th {
    background-color: #1e3c72;
    color: white;
    font-weight: 600;
}

.why-table tr:last-child td {
    border-bottom: none;
}

.why-table tr:hover {
    background-color: #f8f9fa;
}

/* Price Table */
.price-table {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.price-table th {
    background-color: #28a745;
    color: white;
    font-weight: 600;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table td:last-child {
    font-weight: 600;
    color: #28a745;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.process-step {
    background: white;
    padding: 25px 25px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    margin-top: 20px;
}

.process-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e3c72;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-step h4 {
    margin-top: 15px;
    color: #1e3c72;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background-color: white;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    color: #1e3c72;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-answer {
    padding: 20px;
    display: none;
    border-top: 1px solid #e0e0e0;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question::after {
    content: '−';
}

/* Footer */
footer {
    background-color: #1e3c72;
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobil Uyumluluk
   ═══════════════════════════════════════════════════════════ */

/* ── Tüm ekranlar için temel düzeltmeler ── */
img, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
}

input, select, textarea, button {
    max-width: 100%;
    box-sizing: border-box;
}

/* ── Büyük tablet (max 1024px) ── */
@media (max-width: 1024px) {
    .hero h2 { font-size: 2.2rem; }
    .section-title h2 { font-size: 2rem; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
    .features-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

/* ── Tablet (max 768px) ── */
@media (max-width: 768px) {

    /* Header — logo ortada, hamburger sağda */
    .header-main {
        padding: 0.75rem 12px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        text-align: center;
        position: relative;
    }
    .logo {
        margin-bottom: 0;
        flex: 1 1 0;
        min-width: 0;
        text-align: center;
    }
    .logo h1 { font-size: 1rem; line-height: 1.3; }

    /* Nav — hamburger sağ köşede */
    nav {
        position: static;
        justify-content: flex-end;
        width: auto;
        flex-shrink: 0;
        margin-left: 12px;
    }
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        background: rgba(255,255,255,0.15);
        border-radius: 6px;
        border: none;
        margin-top: 0;
    }
    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s;
    }

    /* Açık menü — header'ın hemen altına, tam genişlikte */
    nav ul {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
        background: rgba(20, 40, 90, 0.97);
        border-radius: 0 0 10px 10px;
        padding: 8px 0;
        margin: 0;
        z-index: 999;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }
    nav ul.open { display: flex; }
    nav ul li { width: 100%; }
    nav a {
        display: block;
        padding: 12px 20px;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    nav ul li:last-child a { border-bottom: none; }

    /* header'a relative ver ki menü ona göre konumlansın */
    header { position: relative; overflow: visible; }

    /* Hero */
    .hero { padding: 50px 16px; }
    .hero h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
    .hero p { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .btn { padding: 12px 24px; font-size: 0.95rem; width: 100%; max-width: 280px; text-align: center; }
    .btn-cta-hero { font-size: 1.05rem; padding: 16px 28px; max-width: 320px; }

    /* Sections */
    .features, .services, .references, .info-section,
    .why-camera, .faq-section, .service-areas, .partners { padding: 40px 16px; }

    /* Section title */
    .section-title { margin-bottom: 2rem; }
    .section-title h2 { font-size: 1.6rem; }
    .section-title p { font-size: 0.95rem; }

    /* Grids */
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .references-grid { grid-template-columns: 1fr; gap: 16px; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .process-steps { grid-template-columns: 1fr; gap: 24px; }

    /* Cards */
    .service-card { padding: 20px; }
    .feature-card { padding: 20px; }
    .service-card h3 { font-size: 1.2rem; }

    /* Info content */
    .info-content h2 { font-size: 1.5rem; }
    .info-content p { font-size: 0.95rem; }

    /* Tables — yatay kaydırma */
    .why-table, .price-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .why-table table, .price-table table { min-width: 480px; }
    .why-table th, .why-table td,
    .price-table th, .price-table td { padding: 10px 12px; font-size: 0.88rem; }

    /* Partners slider */
    .partner-logo { width: 130px; height: 70px; }
    .partners-track { gap: 30px; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-section h3 { font-size: 1rem; }
    .footer-section a { font-size: 0.88rem; }
    .footer-section { text-align: center; }
    .footer-section ul { display: flex; flex-direction: column; align-items: center; }
    .footer-section a { text-align: center; }
}

/* ── Küçük mobil (max 480px) ── */
@media (max-width: 480px) {
    .logo h1 { font-size: 1rem; }
    .hero h2 { font-size: 1.35rem; }
    .hero p { font-size: 0.9rem; }
    .section-title h2 { font-size: 1.4rem; }
    .areas-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 20px; }
    .footer-section { text-align: center; }
    .footer-section ul { display: flex; flex-direction: column; align-items: center; }
    .footer-section a { text-align: center; }
    .btn { max-width: 100%; }

    /* FAQ */
    .faq-question { font-size: 0.92rem; padding: 14px 16px; }
    .faq-answer { padding: 14px 16px; font-size: 0.9rem; }

    /* Tables tam genişlik */
    .why-table table, .price-table table { min-width: 360px; }
    .why-table th, .why-table td,
    .price-table th, .price-table td { padding: 8px 10px; font-size: 0.82rem; }
}

/* ── Çok küçük ekran (max 360px) ── */
@media (max-width: 360px) {
    .logo h1 { font-size: 0.9rem; }
    .hero h2 { font-size: 1.2rem; }
    .section-title h2 { font-size: 1.25rem; }
    .service-card h3 { font-size: 1.1rem; }
}

/* ── Hamburger X animasyonu ── */
.nav-toggle { display: none; } /* Masaüstünde gizli */

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    /* Hamburger → X */
    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Tablo overflow koruması */
    .why-table, .price-table,
    .compare-table, .ahd-table, .ip-table,
    .duration-table, .compare-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }

    /* Hero form section mobil */
    .hero-form-layout { grid-template-columns: 1fr !important; }
    .hero-left  { padding: 32px 20px 16px !important; }
    .hero-right { padding: 20px !important; }
    .hero-left h1 { font-size: 1.3rem !important; }

    /* Article layout mobil */
    .article-layout { grid-template-columns: 1fr !important; padding: 0 16px 40px !important; }
    .teklif-layout  { grid-template-columns: 1fr !important; padding: 0 8px 30px !important; margin: 10px 0 !important; }
    .shop-layout    { grid-template-columns: 1fr !important; }
    .yelp-layout    { grid-template-columns: 1fr !important; }

    /* Product/price grids */
    .product-grid { grid-template-columns: 1fr !important; }
    .price-grid   { grid-template-columns: 1fr !important; }
    .app-grid     { grid-template-columns: 1fr !important; }
    .tech-grid    { grid-template-columns: 1fr !important; }
    .use-case-grid { grid-template-columns: 1fr 1fr !important; }
    .location-grid { grid-template-columns: 1fr 1fr !important; }
    .factor-grid  { grid-template-columns: 1fr 1fr !important; }
    .step-grid    { grid-template-columns: 1fr 1fr !important; }

    /* Form rows */
    .hf-row, .form-row { grid-template-columns: 1fr !important; }
    .check-group { grid-template-columns: 1fr !important; }
    .feature-list { grid-template-columns: 1fr !important; }

    /* Blog grid */
    .blog-grid { grid-template-columns: 1fr !important; }

    /* Firm cards (yelp) */
    .firm-card { grid-template-columns: 44px 1fr !important; }

    /* Download buttons */
    .dl-btns, .dl-row { flex-direction: column !important; }
    .dl-btn { justify-content: center !important; }

    /* CTA buttons in hero sections */
    .cta-buttons { flex-direction: column !important; align-items: center !important; }

    /* Partners slider — daha küçük */
    .partner-logo { width: 110px !important; height: 60px !important; }
}

@media (max-width: 480px) {
    .use-case-grid  { grid-template-columns: 1fr !important; }
    .location-grid  { grid-template-columns: 1fr !important; }
    .factor-grid    { grid-template-columns: 1fr !important; }
    .step-grid      { grid-template-columns: 1fr !important; }
    .hero-left h1   { font-size: 1.15rem !important; }
    .hero-badges    { gap: 6px !important; }
    .hero-badge     { font-size: 0.78rem !important; padding: 4px 10px !important; }

    /* Shop cards */
    .shop-grid { grid-template-columns: 1fr !important; }
    .price-grid { grid-template-columns: 1fr !important; }

    /* Firm card compact */
    .firm-card { grid-template-columns: 1fr !important; }
    .firm-rank { display: none !important; }

    /* Blog article */
    .article-body h2 { font-size: 1.2rem !important; }
    .article-body h3 { font-size: 1rem !important; }
}

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════ */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1a2a4a;
    color: #e8edf5;
    padding: 18px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.92rem;
    line-height: 1.55;
    border-top: 3px solid #ff6b00;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookie-banner.cookie-visible {
    transform: translateY(0);
}

#cookie-banner p {
    margin: 0;
    flex: 1 1 300px;
    color: #e8edf5;
}

#cookie-banner a {
    color: #ffa040;
    text-decoration: underline;
}

#cookie-banner a:hover {
    color: #ffbe7a;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #ff6b00;
    color: white;
}

.cookie-btn-accept:hover {
    background: #e55c00;
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: #b0bdd0;
    border: 1px solid #4a5a7a;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #e8edf5;
    border-color: #7a8aaa;
}

@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        padding: 10px 14px;
        gap: 10px;
    }
    #cookie-banner p {
        font-size: 0.78rem;
        line-height: 1.4;
        flex: 1 1 0;
        min-width: 0;
    }
    .cookie-actions {
        display: flex;
        flex-direction: column;
        gap: 6px;
        flex-shrink: 0;
        width: auto;
    }
    .cookie-btn {
        flex: none;
        padding: 7px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════
   MÜŞTERİ YORUMLARI
   ═══════════════════════════════════════════════════════════ */

.reviews-section {
    padding: 70px 20px;
    background-color: #f8f9fa;
}

/* ── Yorum kartları grid ── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30,60,114,0.13);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-meta strong {
    font-size: 0.95rem;
    color: #1e3c72;
}

.review-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 1px;
}

.review-date {
    font-size: 0.78rem;
    color: #999;
}

.review-text {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* ── Yorum yazma formu ── */
.review-form-wrap {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 14px;
    padding: 36px 40px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
}

.review-form-wrap h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 20px;
    text-align: center;
}

/* Yıldız seçici */
.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.star-rating .star {
    font-size: 2.2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
    user-select: none;
    line-height: 1;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #f5a623;
    transform: scale(1.15);
}

/* Form alanları */
.review-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.review-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.review-form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #444;
}

.review-form-group input,
.review-form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid #dde3ee;
    border-radius: 8px;
    font-size: 0.93rem;
    font-family: inherit;
    color: #333;
    transition: border-color 0.2s;
    resize: vertical;
}

.review-form-group input:focus,
.review-form-group textarea:focus {
    outline: none;
    border-color: #2a5298;
}

.btn-review-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.btn-review-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-review-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Mobil */
@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .review-form-wrap { padding: 24px 20px; }
    .review-form-row { grid-template-columns: 1fr; }
    .star-rating .star { font-size: 1.9rem; }
}

/* ═══════════════════════════════════════════════════════════
   MÜŞTERİ YORUMLARI SLIDER (index.html)
   ═══════════════════════════════════════════════════════════ */

.testimonials-section {
    padding: 70px 0 60px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    overflow: hidden;
}

.testimonials-section .section-title h2 {
    color: white;
}

.testimonials-section .section-title p {
    color: rgba(255,255,255,0.75);
}

/* Slider sarmalayıcı */
.ts-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 36px;
}

/* Görünür alan */
.ts-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

/* Kayan şerit */
.ts-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 8px 4px 16px;
}

/* Tek yorum kartı */
.ts-card {
    background: white;
    border-radius: 14px;
    padding: 26px 28px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
    /* Genişlik JS tarafından ayarlanır */
}

.ts-card p {
    font-size: 0.91rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.ts-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ts-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.ts-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ts-meta strong {
    font-size: 0.93rem;
    color: #1e3c72;
    line-height: 1.2;
}

.ts-stars {
    color: #f5a623;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.ts-tag {
    display: inline-block;
    background: #eef2fb;
    color: #2a5298;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 2px;
}

/* Önceki / Sonraki butonlar */
.ts-btn {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.35);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 12px;
    padding: 0;
}

.ts-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.ts-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Nokta göstergeler */
.ts-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 0 20px;
}

.ts-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

.ts-dot.active {
    background: white;
    transform: scale(1.3);
}

/* ── Mobil ── */
@media (max-width: 768px) {
    .ts-btn { width: 36px; height: 36px; font-size: 1.3rem; margin: 0 6px; }
    .ts-card { padding: 20px 18px; }
    .ts-card p { font-size: 0.88rem; }
}

@media (max-width: 480px) {
    .ts-btn { display: none; }
    .ts-slider-wrap { margin-top: 24px; }
}
