/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #005792;
    --secondary-color: #217CA3;
    --accent-color: #AED9E0;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --max-width: 1200px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.company-name {
    color: #fff;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 87, 146, 0.3), rgba(33, 124, 163, 0.3)),
                url('https://bursakaportatamir.com/wp-content/uploads/2024/04/bursa-ehom-servis-02.jpg') center/cover;
    height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding-top: 80px;
    position: relative;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 200px;
}

.hero-contact-btn.call {
    background: #fff;
    color: var(--primary-color);
}

.hero-contact-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.hero-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.hero-contact-btn i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-contact-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
        margin-top: 1.5rem;
    }

    .hero-contact-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        min-width: auto;
    }

    .btn-primary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 40px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-contact-btn {
        padding: 0.8rem 1.2rem;
    }
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(rgba(0, 87, 146, 0.5), rgba(33, 124, 163, 0.5)),
    url('https://bursakaportatamir.com/wp-content/uploads/2024/04/bursa-ehom-servis-02.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding-top: 80px;
}

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

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--text-light);
    transform: translateY(-2px);
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.2rem;
    padding: 0 0.5rem;
    align-items: stretch;
}

.service-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 260px;
    max-height: 300px;
    justify-content: flex-start;
    background: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.service-image {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.service-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 0.7rem 0.5rem 0.3rem 0.5rem;
    background: var(--text-light);
    height: 100%;
    position: relative;
}

.service-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-content h3 {
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.service-content p {
    flex: 1 1 auto;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
}

.service-link {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.4rem;
    justify-content: center;
    margin-top: auto;
}

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

.service-card:hover .service-link::after {
    width: 100%;
}

.service-link i {
    font-size: 1.1rem;
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(8px);
}

/* Responsive Design */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 2.5rem;
    }
}

/* About Page Styles */
.about-content {
    padding: 5rem 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.about-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.vision, .mission {
    text-align: center;
}

.vision h3, .mission h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.content-box {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.content-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.values {
    text-align: center;
}

.values h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.value-item {
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Insurance Services Section */
.insurance-services {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.insurance-services h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.insurance-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.insurance-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.insurance-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #005792 0%, #217CA3 100%);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    box-shadow: 0 -2px 24px rgba(0,0,0,0.08);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.footer-info, .footer-social {
    flex: 1 1 250px;
    min-width: 220px;
}

.footer-info h3,
.footer-social h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #fff;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-info i {
    margin-right: 0.5rem;
    color: #aed9e0;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aed9e0;
    font-size: 1.5rem;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.social-links a:hover {
    background: #fff;
    color: #005792;
    transform: translateY(-4px) scale(1.08);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #e0e0e0;
    font-size: 0.98rem;
    letter-spacing: 0.5px;
}

.ogdev-logo {
    height: 18px;
    width: auto;
    margin-left: 6px;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    top: -1px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-ogdev a:hover .ogdev-logo {
    opacity: 1;
}

.footer-ogdev {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    letter-spacing: 0.2px;
}

.footer-ogdev a {
    color: #aed9e0;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
    display: inline-block;
}

.footer-ogdev a strong {
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    font-size: 1.12em;
    text-transform: uppercase;
}

.footer-ogdev a:hover strong {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-ogdev a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 700px) {
    .footer-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    .footer {
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
        padding: 2rem 0 1rem;
    }
}

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

.service-card,
.insurance-card,
.value-item {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Kasko Page Styles */
.kasko-content {
    padding: 5rem 0;
}

.kasko-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.kasko-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.kasko-features {
    margin-bottom: 4rem;
}

.kasko-features h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.feature-item {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.kasko-advantages {
    margin-bottom: 4rem;
}

.kasko-advantages h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.advantages-list {
    max-width: 800px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
}

.advantage-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.advantage-content h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.kasko-cta {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(rgba(0, 87, 146, 0.1), rgba(33, 124, 163, 0.1));
    border-radius: 8px;
}

.kasko-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.kasko-cta p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }

    .advantage-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Hasar Hizmetleri Page Styles */
.hasar-content {
    padding: 5rem 0;
}

.hasar-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.hasar-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hasar-process {
    margin-bottom: 4rem;
}

.hasar-process h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.hasar-services {
    margin-bottom: 4rem;
}

.hasar-services h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.service-item {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hasar-cta {
    background: linear-gradient(rgba(0, 87, 146, 0.1), rgba(33, 124, 163, 0.1));
    padding: 4rem 0;
    border-radius: 8px;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary {
    background-color: var(--text-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* References Page Styles */
.references-content {
    padding: 80px 0;
}

.references-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.references-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.references-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    margin-bottom: 80px;
}

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

.testimonial-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    padding: 30px;
}

.testimonial-content i {
    color: #007bff;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Partners Section */
.partners {
    margin-bottom: 80px;
    background: #f7f8fa;
    padding: 40px 0 30px 0;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.partners h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 32px;
    letter-spacing: 1px;
}
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px 38px;
    padding: 0 10px;
}
.partner-item {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    transition: transform 0.2s;
}
.partner-logo {
    width: 90px;
    height: 86px;
    object-fit: contain;
    filter: grayscale(90%) opacity(0.7);
    transition: filter 0.3s, opacity 0.3s, transform 0.2s;
    background: none;
    border-radius: 0;
    box-shadow: none;
}
.partner-item:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}
@media (max-width: 700px) {
    .partners-grid {
        gap: 18px 10px;
    }
    .partner-logo {
        width: 60px;
        height: 28px;
    }
    .partners {
        padding: 24px 0 18px 0;
    }
}

/* Success Stories */
.success-stories {
    margin-bottom: 40px;
}

.success-stories h3 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
}

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

.story-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

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

.story-item:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 25px;
}

.story-content h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.story-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-link {
    display: inline-flex;
    align-items: center;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.story-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.story-link:hover {
    color: #0056b3;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .references-intro h2 {
        font-size: 2rem;
    }

    .testimonial-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-item {
        max-width: 250px;
        margin: 0 auto;
    }
}

/* Brands Slider */
.brands-slider {
    background: #fff;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brands-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 12);
}

.brand-item {
    flex: 0 0 200px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6)); /* Move by 6 items */
    }
}

/* Responsive Design for Brands Slider */
@media (max-width: 768px) {
    .brands-track {
        width: calc(150px * 12); /* Smaller items on mobile */
    }
    
    .brand-item {
        flex: 0 0 150px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 6));
        }
    }
}

/* Dropdown Menü */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 210px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    border-radius: 4px;
}

.dropdown-menu a:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.4em;
}

.dropdown > a i {
    font-size: 0.9em;
    margin-left: 0.2em;
}

.service-detail-content {
    padding: 100px 0 3rem 0;
    background: #f8f9fa;
}

.service-detail-flex {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 1 1 350px;
    min-width: 300px;
    max-width: 450px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.service-detail-info {
    flex: 2 1 400px;
    min-width: 280px;
}

.service-detail-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.service-detail-info p {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-advantages {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-advantages li {
    font-size: 1.05rem;
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.7em;
}

.service-advantages i {
    color: var(--primary-color);
    font-size: 1.1em;
}

@media (max-width: 900px) {
    .service-detail-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .service-detail-image, .service-detail-info {
        max-width: 100%;
    }
}

.service-page-title {
    background: #fff;
    padding: 2.5rem 0 1.2rem 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.service-title {
    font-size: 2.4rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.service-title-desc {
    font-size: 1.15rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

.service-extra-content {
    background: #fff;
    padding: 3rem 0 2.5rem 0;
}

.service-extra-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.service-extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-extra-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    font-size: 1.08rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.7em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}

.service-extra-item i {
    color: var(--secondary-color);
    font-size: 1.2em;
}

.service-extra-item:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.service-faq-content {
    background: #f8f9fa;
    padding: 3rem 0 2.5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-size: 1.05rem;
}

.faq-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-modern-content {
    background: #fff;
    padding: 100px 0 60px 0;
}

.service-modern-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-modern-info {
    flex: 1 1 400px;
    min-width: 320px;
}

.service-modern-title {
    font-size: 2.3rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.service-modern-desc {
    font-size: 1.13rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-modern-advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 1.5rem;
    margin-bottom: 2.2rem;
}

.advantage-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    font-size: 1.07rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.7em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}

.advantage-box i {
    color: var(--secondary-color);
    font-size: 1.2em;
}

.advantage-box:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.service-modern-btn {
    margin-top: 1.5rem;
    font-size: 1.08rem;
    padding: 1rem 2.2rem;
}

.service-modern-image {
    flex: 1 1 400px;
    min-width: 320px;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modern-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

@media (max-width: 900px) {
    .service-modern-flex {
        flex-direction: column;
        gap: 2.5rem;
    }
    .service-modern-image, .service-modern-info {
        max-width: 100%;
        min-width: 0;
    }
    .service-modern-advantages {
        grid-template-columns: 1fr;
    }
}

.service-general-desc {
    background: #f8f9fa;
    padding: 3.5rem 0 3.5rem 0;
}

.service-general-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.7rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.service-general-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.13rem;
    color: #444;
    line-height: 1.85;
    background: #fff;
    border-radius: 12px;
    padding: 2.2rem 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.small-hero {
    position: relative;
    background: url('../images/kasko.jpeg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding-top: 80px;
}

.small-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(0,87,146,0.65) 0%, rgba(33,124,163,0.45) 100%);
    z-index: 1;
    border-radius: inherit;
}

.small-hero .container {
    position: relative;
    z-index: 2;
}

/* Google-style Testimonial Slider */
.testimonial-slider {
    position: relative;
    max-width: 820px;
    margin: 48px auto 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    padding: 2.5rem 0;
    overflow: hidden;
}

.testimonial-slides-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    min-height: 260px;
    padding: 0 1rem;
}

.testimonial-slide {
    flex: 0 0 320px;
    opacity: 0.5;
    transform: scale(0.85);
    filter: blur(1.5px) grayscale(30%);
    transition: all 0.4s cubic-bezier(.4,2,.6,1);
    z-index: 1;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    filter: none;
    transform: scale(1.08);
    z-index: 3;
    pointer-events: auto;
}

.testimonial-slide.left, .testimonial-slide.right {
    opacity: 0.7;
    filter: blur(0.5px) grayscale(10%);
    transform: scale(0.93);
    z-index: 2;
}

.testimonial-slide.hidden {
    display: none;
}

.testimonial-google {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e3e3e3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-stars {
    color: #fbbc04;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.testimonial-name {
    font-weight: 600;
    color: #005792;
    font-size: 1.08rem;
}

.testimonial-name span {
    color: #888;
    font-weight: 400;
    font-size: 0.98em;
    margin-left: 0.5em;
}

.testimonial-text {
    color: #444;
    font-size: 1.08rem;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 1.1rem 1.2rem;
    margin-top: 0.3rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    max-width: 420px;
    line-height: 1.6;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 2.1rem;
    color: #217CA3;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.testimonial-arrow.left { 
    left: 10px; 
}

.testimonial-arrow.right { 
    right: 10px; 
}

.testimonial-arrow:hover {
    background: #217CA3;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #217CA3;
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .testimonial-slider {
        max-width: 99vw;
        padding: 1.2rem 0;
    }

    .testimonial-slides-row {
        gap: 0.3rem;
    }

    .testimonial-slide, 
    .testimonial-slide.active, 
    .testimonial-slide.left, 
    .testimonial-slide.right {
        flex: 0 0 90vw;
        max-width: 98vw;
    }
}

@media (max-width: 480px) {
    .testimonial-slider {
        padding: 1rem 0;
    }

    .testimonial-text {
        font-size: 0.95rem;
        padding: 0.8rem;
    }

    .testimonial-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }

    .testimonial-arrow.left {
        left: 5px;
    }

    .testimonial-arrow.right {
        right: 5px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
}

.contact-hero-bg {
    background: #f6f8fa;
    min-height: 100vh;
    padding: 60px 0 40px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.contact-hero-bg > .contact-two-cols {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: stretch;
    box-sizing: border-box;
}
.contact-col {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    padding: 2.2rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 280px;
    flex: 1 1 0;
    box-sizing: border-box;
}
.contact-col-info {
    align-items: flex-start;
}
.contact-col-map {
    align-items: flex-start;
    padding: 2.2rem 1.2rem 2rem 1.2rem;
}
@media (max-width: 900px) {
    .contact-hero-bg > .contact-two-cols {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 98vw;
    }
    .contact-col, .contact-col-info, .contact-col-map {
        max-width: 98vw;
        width: 100%;
        align-items: flex-start;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
    .contact-map-modern iframe {
        height: 180px;
    }
}

.contact-center-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    max-width: 420px;
    margin: 0 auto;
    padding: 2.5rem 2.2rem 2.2rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.contact-title {
    font-size: 2rem;
    color: #005792;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 0.7rem;
    text-align: center;
}
.contact-info-list.modern {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 1.2rem;
}
.contact-row {
    display: flex;
    align-items: center;
    gap: 0.8em;
    font-size: 1.08rem;
    color: #333;
    background: #f7fafd;
    border-radius: 8px;
    padding: 0.7em 1em;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    font-family: 'Roboto', sans-serif;
}
.contact-row i {
    color: #217CA3;
    font-size: 1.2em;
    min-width: 22px;
    text-align: center;
}
.contact-row a {
    color: #005792;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-row a:hover {
    color: #217CA3;
    text-decoration: underline;
}
.whatsapp-btn {
    background: #25d366;
    color: #fff !important;
    border-radius: 6px;
    padding: 0.5em 1.1em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    box-shadow: 0 2px 8px rgba(37,211,102,0.08);
    transition: background 0.2s, color 0.2s;
}
.whatsapp-btn i {
    color: #fff;
    font-size: 1.2em;
}
.whatsapp-btn:hover {
    background: #128c7e;
    color: #fff;
}
.contact-map-modern {
    width: 100%;
    margin-top: 1.2rem;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
@media (max-width: 600px) {
    .contact-center-box {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        max-width: 98vw;
    }
    .contact-title {
        font-size: 1.3rem;
    }
    .contact-map-modern iframe {
        height: 180px;
    }
}

.whatsapp-float-btn {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.18);
    font-size: 2.2rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.whatsapp-float-btn:hover {
    background: #128c7e;
    box-shadow: 0 8px 32px rgba(37,211,102,0.28);
    transform: scale(1.08);
}
@media (max-width: 600px) {
    .whatsapp-float-btn {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Mobil Menü */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--primary-color);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--text-light);
        margin: 5px 0;
        transition: 0.3s;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .dropdown-menu {
        position: static;
        background: rgba(255,255,255,0.1);
        box-shadow: none;
        padding: 0.5rem 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        color: var(--text-light);
        padding: 0.5rem 1rem;
    }

    .dropdown-menu a:hover {
        background: rgba(255,255,255,0.1);
    }
}

/* Genel Mobil Düzenlemeler */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    p {
        font-size: 1rem !important;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Hero Section */
    .hero {
        height: 60vh;
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 2.2rem !important;
    }

    .hero p {
        font-size: 1.2rem !important;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .service-card {
        max-width: 100%;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-info, .footer-social {
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    /* Contact Page */
    .contact-hero-bg > .contact-two-cols {
        flex-direction: column;
    }

    .contact-col {
        width: 100%;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* Partners */
    .partners-grid {
        gap: 1rem;
    }

    .partner-logo {
        width: 80px;
        height: 40px;
    }
}

/* Küçük Mobil Cihazlar */
@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }

    .hero h1 {
        font-size: 1.8rem !important;
    }

    .hero p {
        font-size: 1rem !important;
    }

    .service-card {
        min-height: 220px;
    }

    .service-image {
        height: 120px;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .contact-map-modern iframe {
        height: 200px;
    }
} 