@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #B01B1B;
    --primary-dark: #8a1515;
    --secondary: #1a1a1a;
    --surface: #ffffff;
    --bg-color: #f4f5f7;
    --text: #333333;
    --text-muted: #666666;
    --border-color: #e2e8f0;
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background-color: var(--bg-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Yasal Uyarı */
.legal-banner {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 4px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1000;
}

/* Header Top */
.header-top {
    background-color: var(--primary);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: white;
    font-weight: 600;
}

/* Header Main */
.header {
    background-color: var(--surface);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-main-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
    position: relative;
    padding: 10px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    padding: 60px 0 100px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(176, 27, 27, 0.9) 0%, rgba(26, 26, 26, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Info Boxes (Overlaying Hero) */
.info-boxes {
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.info-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-box {
    background: var(--surface);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 4px solid var(--primary);
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box-icon {
    width: 60px;
    height: 60px;
    background: rgba(176, 27, 27, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.info-box h3 {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.info-box-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-bg-white {
    background-color: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

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

.service-card {
    background: var(--surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Testimonials Slider */
.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background: var(--surface);
    border-radius: var(--border-radius);
    padding: 25px;
    border-top: 4px solid #f1c40f;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    white-space: normal;
}

@media(min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

/* Call to Action */
.cta-section {
    background-color: var(--secondary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Brands Section */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.brand-item {
    padding: 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    width: 100%;
    text-align: center;
    color: var(--text-muted);
    font-weight: 600;
    transition: all 0.3s;
}

.brand-item:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Footer */
.footer {
    background-color: #111111;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary);
}

.compliance-block {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--primary);
}

.compliance-block h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1rem;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #ffcccc;
    margin-top: 10px;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

/* Sticky Contact */
.sticky-contact-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10005;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.sticky-contact-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 15px rgba(176, 27, 27, 0.4);
    background-color: white;
}

.sticky-contact-text {
    background-color: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    margin-top: -10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-align: center;
    line-height: 1.2;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(120%);
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    transition: transform 0.5s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}

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

.cookie-content {
    font-size: 0.9rem;
    max-width: 800px;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

.btn-cookie {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 20px;
    white-space: nowrap;
}

.btn-cookie:hover {
    background-color: var(--secondary);
}

@keyframes pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(176, 27, 27, 0.7)); }
    70% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(176, 27, 27, 0)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(176, 27, 27, 0)); }
}

/* Responsive */
@media(max-width: 768px) {
    .header-main-inner { height: auto; padding: 15px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; }
    .nav-links { display: none; }
    .btn-mobile-menu { display: flex !important; align-items: center; gap: 5px; background: none; border: none; color: var(--secondary); cursor: pointer; }
    .hidden-mobile { display: none !important; }
    .logo { font-size: 1rem; max-width: 75%; }
    .logo-img { height: 30px; margin-right: 5px; }
    .hero h1 { font-size: 1.8rem; line-height: 1.3; }
    .hero .btn-primary { font-size: 0.95rem !important; padding: 12px 20px !important; display: block; text-align: center; white-space: normal; }
    .info-boxes-grid { grid-template-columns: 1fr; }
    .info-boxes { margin-top: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    .sticky-contact-wrapper { bottom: 20px; right: 20px; }
    
    .cta-section .btn { white-space: normal !important; height: auto !important; text-align: center !important; font-size: 0.95rem !important; padding: 12px 15px !important; line-height: 1.4 !important; max-width: 100% !important; display: inline-block; }
    
    .hero .btn-primary { white-space: normal !important; height: auto !important; text-align: center !important; font-size: 0.95rem !important; padding: 12px 15px !important; line-height: 1.4 !important; max-width: 100% !important; display: inline-block; }
    
    .cookie-banner { flex-direction: column; text-align: center; gap: 15px; }
    .btn-cookie { margin-left: 0; width: 100%; }
}
