/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Buton Stilleri */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #1a2d5e;
    transform: translateY(-2px);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Üst Bilgi Çubuğu */
.top-bar {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: #fff;
    margin-right: 20px;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ccc;
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Ana Header */
.main-header {
    background-color: var(--header-bg-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s;
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slider-item.active {
    opacity: 1;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 20px;
    max-width: 800px;
}

.slider-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.slider-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Bölüm Başlıkları */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Hizmetler Bölümü */
.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Neden Biz Bölümü */
.why-us-section {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-us-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.why-us-card:hover {
    transform: translateY(-5px);
}

.why-us-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-us-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.why-us-card p {
    color: #666;
}

/* Sigorta Şirketleri Bölümü */
.insurance-section {
    padding: 80px 0;
    background-color: #fff;
}

.insurance-slider {
    margin: 0 auto;
    max-width: 1000px;
    overflow: hidden;
    position: relative;
}

.insurance-slide {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.insurance-slide img {
    max-height: 80px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.insurance-slide:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* İletişim Bölümü */
.contact-section {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.contact-item p {
    color: #666;
    margin-bottom: 0;
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Sayfa Hero */
.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.page-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

/* Hizmetler Sayfası */
.services-page-section {
    padding: 80px 0;
    background-color: #fff;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-page-card {
    display: flex;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-page-icon {
    width: 80px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.service-page-content {
    flex: 1;
    padding: 25px;
}

.service-page-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.service-page-content p {
    color: #666;
}

/* Randevu Bölümü */
.appointment-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}

.appointment-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.appointment-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* İletişim Sayfası */
.contact-page-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-page-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-page-info p {
    color: #666;
    margin-bottom: 30px;
}

.contact-page-details {
    margin-top: 30px;
}

.contact-page-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-page-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-page-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.contact-page-item p {
    color: #666;
    margin-bottom: 0;
}

.contact-page-map {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-page-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Footer */
.main-footer {
    background-color: var(--footer-bg-color);
    color: #fff;
}

.footer-top {
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
}

.about-col p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.links-col ul,
.services-col ul {
    list-style: none;
}

.links-col li,
.services-col li {
    margin-bottom: 10px;
}

.links-col a,
.services-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    display: block;
    padding: 5px 0;
}

.links-col a:hover,
.services-col a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-col ul {
    list-style: none;
}

.contact-col li {
    margin-bottom: 15px;
    display: flex;
    color: rgba(255, 255, 255, 0.7);
}

.contact-col i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 15px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #1a2d5e;
    transform: translateY(-5px);
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-header .logo img {
    max-height: 50px;
}

.close-menu-btn {
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.mobile-contact {
    padding: 20px;
    margin-top: 20px;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .hero-slider {
        height: 500px;
    }
    
    .slider-content h1 {
        font-size: 40px;
    }
    
    .slider-content p {
        font-size: 18px;
    }
    
    .contact-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form,
    .contact-page-form {
        order: -1;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .slider-content h1 {
        font-size: 32px;
    }
    
    .slider-content p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .top-bar-content {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 10px;
    }
    
    .social-links {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 400px;
    }
    
    .slider-content h1 {
        font-size: 28px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .page-hero p {
        font-size: 18px;
    }
    
    .services-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
    }
    
    .footer-links a {
        margin: 0 7.5px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
}
/* Galeri Sayfası */
.gallery-section {
    padding: 80px 0;
    background-color: #fff;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: #eee;
    border: none;
    border-radius: 30px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 58, 138, 0.8);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-overlay h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.gallery-overlay i {
    font-size: 30px;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* 404 Sayfası */
.not-found-section {
    padding: 80px 0;
    text-align: center;
}

.not-found-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.not-found-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .not-found-content h2 {
        font-size: 28px;
    }
    
    .not-found-content p {
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item {
        height: 150px;
    }
}