:root {
    --primary-color: #0063a7;  /* Goodyear Mavi */
    --secondary-color: #003366; /* Koyu Mavi */
    --accent-color: #ffd700;   /* Altın Sarısı */
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --light-bg: #f8f9fa;
    --text-color: #666;
    --primary-rgb: 0, 99, 167;
}

body {
    padding-top: 76px;
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background: var(--gradient-primary) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 60px;
    filter: invert(80%) sepia(50%) saturate(1000%) hue-rotate(360deg) brightness(105%) contrast(105%);
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: white !important;
    padding: 0.7rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:hover::after {
    width: 70%;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    background: none;
    padding: 0;
}

.hero-slider {
    position: relative;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 99, 167, 0.9)), url('/img/slider/lastikci.webp');
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 50px 0;
}

.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.hero-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.hero-controls button:hover {
    background: var(--primary-color);
}

/* Mobil için slider kontrolleri */
@media (max-width: 768px) {
    .hero-controls {
        display: none !important;
    }
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Tire Cards */
.tire-card {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.tire-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.tire-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tire-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.tire-card:hover .tire-image img {
    transform: scale(1.1);
}

.tire-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,99,167,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.tire-card:hover .tire-overlay {
    opacity: 1;
}

.tire-content {
    padding: 25px;
    text-align: center;
}

.tire-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tire-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.tire-specs span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.tire-specs i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Product Cards */
.section-title {
    position: relative;
    margin-bottom: 60px;
}

.section-title .subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-card {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,99,167,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-features {
    margin-top: 20px;
}

.product-features span {
    display: block;
    margin-bottom: 10px;
    color: #666;
}

.product-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,99,167,0.3);
}

/* Primary Color Button */
.btn-primary-color {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease;
}

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

/* Contact Section */
.contact-section {
    background: var(--primary-color);
    padding: 80px 0;
    color: #fff;
}

.contact-section .row {
    height: 100%;
}

.contact-section .col-lg-4 {
    display: flex;
    margin-bottom: 30px;
}

.contact-info-wrapper,
.contact-form,
.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

.contact-info-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: space-between;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.info-item:hover i {
    background: #fff;
    color: var(--primary-color);
    transform: scale(1.1);
}

.info-item h5 {
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.info-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.info-item p a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item p a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.contact-social {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding-top: 30px;
}

.contact-social h5 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.contact-form textarea.form-control {
    flex: 1;
    min-height: 120px;
    resize: none;
}

.contact-form .btn-primary {
    margin-top: auto;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

section h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

/* List Styles */
.list-unstyled a {
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.list-unstyled a:hover {
    transform: translateX(10px);
    color: var(--accent-color) !important;
}

/* Form Elements */
.form-control {
    border-radius: 10px;
    border: 1px solid #e1e1e1;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,99,167,0.15);
}

/* Footer Styles */
.footer-area {
    background: var(--dark-color);
    color: #fff;
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: transform 0.3s ease;
}

.about-text {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
}

.widget-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title-black {
    color: var(--primary-color)
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title h4 {
    color: white;

}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 12px;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

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

.copyright-text {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-payments img {
    height: 30px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-payments img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-widget {
        margin-bottom: 40px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-payments {
        margin-top: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .navbar-brand img {
        height: 45px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lastik Hesaplama Form */
#lastikHesaplamaForm {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* SSS Accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,99,167,0.25);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* FAQ Section */
.faq-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    padding: 20px 30px;
    background: #fff;
    border: none;
    border-radius: 15px !important;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.15);
}

.accordion-button::after {
    background-size: 18px;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 20px 30px;
    background: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:hover {
    transform: translateY(-2px);
}

.faq-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.faq-image:hover img {
    transform: scale(1.05);
}

/* News Cards in FAQ Section */
.news-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    height: calc(33.333% - 14px);
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 120px;
    min-width: 120px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.news-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.news-link {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 10px;
    color: var(--primary-color);
}

.news-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(3px);
}

/* News Section */
.news-section {
    padding: 80px 0;

}

.news-card-large {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-image-large {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-large:hover .news-image-large img {
    transform: scale(1.1);
}

.news-content-large {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date-large {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-date-large i {
    font-size: 1rem;
}

.news-title-large {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt-large {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.news-link-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-link-large:hover {
    gap: 12px;
    color: var(--primary-color);
}

.news-link-large i {
    transition: transform 0.3s ease;
}

.news-link-large:hover i {
    transform: translateX(5px);
}

.news-tag {
    background: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* WhatsApp İletişim Kutusu */
.whatsapp-contact {
    background: rgba(37, 211, 101, 0.016);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 12px;
    padding: 20px;
    color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 101, 0.065);
    backdrop-filter: blur(5px);
}

.whatsapp-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.whatsapp-box > i {
    font-size: 2.5rem;
    color: #25D366;
}

.whatsapp-content {
    flex: 1;
}

.whatsapp-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    color: #1a9548;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #22c35e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.footer-title {
    color: #25D366;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Marka Logoları Slider */
.brand-slider-section {
    background: #f8f9fa;
    overflow: hidden;
    padding: 20px 0 40px;
    margin-top: -120px;
}

.brand-slider {
    display: flex;
    animation: slideLogos 30s linear infinite;
    gap: 50px;
    padding: 0;
    margin: 0;
}

.brand-slide {
    flex: 0 0 auto;
    padding: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.brand-slide:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.brand-slide img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

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

/* Logo slider için medya sorguları */
@media (max-width: 768px) {
    .brand-slide img {
        height: 40px;
    }
    
    .brand-slider {
        gap: 30px;
    }
}

/* Haber Detay Sayfası */
.news-detail-section {
    background: #f8f9fa;
}

.news-detail {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.news-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.news-meta {
    color: #666;
    font-size: 0.9rem;
}

.news-meta i {
    margin-right: 5px;
}

.news-title {
    color: #333;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.news-content {
    color: #444;
    line-height: 1.8;
}

.news-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.news-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.news-content ul li {
    margin-bottom: 10px;
    position: relative;
}

.cta-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.cta-box h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Mobil için düzenlemeler */
@media (max-width: 768px) {
    .news-detail {
        padding: 20px;
    }

    .news-title {
        font-size: 1.8rem;
    }

    .news-content h3 {
        font-size: 1.3rem;
    }
}

/* Header Banner */
.page-header {
    position: relative;
    margin-top: 0;
}

.page-header-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    margin-top: -1px;
}

.page-header-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ddd;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

/* Sidebar Widget */
.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.recent-news-item {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.recent-news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.news-thumb {
    flex: 0 0 100px;
    margin-right: 15px;
}

.news-thumb img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.news-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-info h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-info h4 a:hover {
    color: #007bff;
}

.news-info .date {
    font-size: 0.85rem;
    color: #666;
}

/* Mobil düzenlemeler */
@media (max-width: 768px) {
    .page-header-image {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .sidebar-widget {
        margin-top: 30px;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-section {
    padding-top: 120px;
}

.section-title {
    position: relative;
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
}

.feature-box {
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-box i {
    color: var(--primary-color);
}

.counter-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 40px 0;
}

.counter-item {
    padding: 20px;
}

.counter-item i {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.counter-item h2 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.counter-item p {
    color: #666;
    margin: 0;
}

.page-header {
    position: relative;
    padding: 150px 0 80px;
    background-color: #343a40;
    margin-bottom: 0;
}

.page-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-header-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.8);
}

/* Şirket Hikayesi Kartı */
.mission-card {
    border: none;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    transition: transform 0.3s ease;
}

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

.mission-card .card-body {
    padding: 2.5rem !important;
}

.mission-card .story-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-card .bi {
    color: var(--primary);
}

.mission-card img {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* İstatistik Kartları */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 10px;
    margin-right: 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-info {
    text-align: left;
}

.stat-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.stat-info p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
    margin-top: 2px;
}

/* Yukarı Git Butonu */
.back-to-top {
    position: fixed;
    right: 10px;
    bottom: 65px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 65px;
}

.back-to-top:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}