:root {
    --primary-color: #002147;
    --secondary-color: #ffffff;
    --accent-color: #FFD700;
    --border-color: rgba(0, 33, 71, 0.2);
    --hover-color: #0038ad;
    --box-shadow: 0 4px 12px rgba(0, 33, 71, 0.1);
    --transition: all 0.3s ease;
    --table-color: #ffffff;
    --text-secondary: #666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
}

/* Modern Dark Mode Styles */
.dark-mode {
    --primary-color: #e0e0e0;    /* Açık gri yazı rengi */
    --secondary-color: #2a3142;  /* Koyu gri-mavi arka plan */
    --accent-color: #d4af37;     /* Altın temalı aksan rengi */
    --border-color: rgba(212, 175, 55, 0.2);
    --hover-color: #e6c158;      /* Hover için daha açık altın tonu */
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    --table-color: #323a4e;      /* Tablo arka planı için daha açık mavi-gri tonu */
    --text-secondary: #a0a0a0;   /* İkincil yazılar için gri ton */
    --header-footer-color: #212736; /* Header ve footer için biraz daha koyu mavi-gri ton */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 0;
    z-index: 1000;
}

.dark-mode header {
    background-color: var(--header-footer-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 0;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo img {
    height: 150px;
    margin-right: 1px;
}

.dark-mode .logo {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.dark-mode nav ul li a {
    color: var(--primary-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

/* Hamburger Menü İkonu */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
    margin-right: 10px;
    transition: var(--transition);
}

.dark-mode .mobile-menu-toggle {
    color: var(--primary-color);
}

.mobile-menu-toggle:hover {
    color: var(--accent-color);
}

.theme-toggle {
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.dark-mode .theme-toggle {
    border: 1px solid var(--primary-color);
    background: var(--accent-color);
    color: var(--header-footer-color);
}

.theme-toggle i {
    margin-right: 6px;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Social Links Marquee */
.marquee-container {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-mode .marquee-container {
    background-color: var(--header-footer-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee-content {
    display: inline-block;
    animation: marquee 60s linear infinite;
    padding-left: 100%;
}

.marquee-content span {
    margin-right: 100px;
    font-weight: 500;
}

.marquee-content a {
    margin-right: 250px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
    padding: 5px 10px;
    border-radius: 20px;
}

.dark-mode .marquee-content a {
    color: var(--primary-color);
}

.marquee-content a:hover {
    color: var(--accent-color);
}

.marquee-content i {
    margin-right: 5px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Main Content */
.main-content {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-title {
    text-align: center;
    margin: 0 auto 30px auto;
    font-size: 32px;
    color: var(--primary-color);
    position: relative;
    width: 100%;
    display: block;
}

.page-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.prices-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    width: 100%;
    position: relative;
}

.price-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.dark-mode .price-table {
    border: 1px solid var(--border-color);
    background-color: var(--table-color);
}

/* Altın tablosu (ilk tablo) */
.price-table:first-child {
    width: 48%;
}

/* Döviz tablosu (ikinci tablo) */
.price-table:last-child {
    width: 48%;
    position: absolute;
    right: 0;
    top: 150px; /* Bu değeri altın tablosuna göre ayarlayabilirsiniz */
}

.price-table:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 33, 71, 0.15);
}

.dark-mode .price-table:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.price-table-header {
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    color: var(--secondary-color);
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
}

.dark-mode .price-table-header {
    background: linear-gradient(135deg, var(--header-footer-color), #3a445a);
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 1px solid var(--accent-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    border: none;
}

th, td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 500;
}

.dark-mode th {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

tr:last-child td {
    border-bottom: none;
}

/* Dark mode için tablo renklerini güncelleme */
.dark-mode table {
    background-color: var(--table-color);
}

.dark-mode td {
    color: var(--primary-color);
}

.dark-mode tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.03);
}

.dark-mode tr:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

tr:nth-child(even) {
    background-color: rgba(0, 33, 71, 0.03);
}

tr:hover {
    background-color: rgba(0, 33, 71, 0.05);
}

.price-up {
    color: #4CAF50;
}

.dark-mode .price-up {
    color: #81c784; /* Daha açık yeşil tonu */
}

.price-down {
    color: #F44336;
}

.dark-mode .price-down {
    color: #e57373; /* Daha açık kırmızı tonu */
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }

/* Services Section */
.services-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.dark-mode .service-card {
    background-color: var(--table-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 33, 71, 0.15);
}

.dark-mode .service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--accent-color);
}

.service-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    font-size: 30px;
}

.dark-mode .service-icon {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

.service-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* Altın Değişim Animasyonu */
@keyframes pulseGreen {
    0% { background-color: transparent; }
    50% { background-color: rgba(76, 175, 80, 0.3); }
    100% { background-color: transparent; }
}

@keyframes pulseRed {
    0% { background-color: transparent; }
    50% { background-color: rgba(244, 67, 54, 0.3); }
    100% { background-color: transparent; }
}

.dark-mode @keyframes pulseGreen {
    0% { background-color: transparent; }
    50% { background-color: rgba(76, 175, 80, 0.15); }
    100% { background-color: transparent; }
}

.dark-mode @keyframes pulseRed {
    0% { background-color: transparent; }
    50% { background-color: rgba(244, 67, 54, 0.15); }
    100% { background-color: transparent; }
}

.pulse-green {
    animation: pulseGreen 1s ease-in-out;
}

.pulse-red {
    animation: pulseRed 1s ease-in-out;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 30px 0;
    margin-top: 50px;
}

.dark-mode footer {
    background-color: var(--header-footer-color);
    color: var(--primary-color);
}

.legal-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
    font-size: 14px;
}

.copyright {
    margin-top: 15px;
    color: var(--accent-color);
    font-weight: 500;
}

/* Hakkımızda Sayfası Stilleri */

/* Aktif menü bağlantısı için stil */
nav ul li a.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Hakkımızda Bölümü */
.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.dark-mode .about-image img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.about-content {
    flex: 2;
    min-width: 300px;
}

.about-content h2.section-title {
    text-align: left;
    margin-top: 0;
    font-size: 24px;
}

.about-content h2.section-title:after {
    left: 0;
    transform: none;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--primary-color);
}

/* Şubelerimiz Sayfası Stilleri */

/* Şubeler Bölümü */
.branches-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.branch-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.dark-mode .branch-card {
    background-color: var(--table-color);
    border: 1px solid var(--border-color);
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 33, 71, 0.1);
}

.dark-mode .branch-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.branch-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(0, 33, 71, 0.02);
}

.dark-mode .branch-header {
    background-color: rgba(212, 175, 55, 0.07);
}

.branch-title h2 {
    margin: 0 0 5px 0;
    font-size: 22px;
    color: var(--primary-color);
}

.branch-subtitle {
    margin: 0;
    color: var(--primary-color);
    opacity: 0.8;
    font-size: 14px;
}

.branch-badge span {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.dark-mode .branch-badge span {
    color: var(--secondary-color);
}

.branch-content {
    padding: 20px;
}

.branch-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.branch-info {
    flex: 1;
    min-width: 300px;
}

.branch-map {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.dark-mode .branch-map {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* İkon hizalama düzeltmesi için CSS */
.info-item {
    display: flex;
    align-items: center; /* Dikeyda ortala */
    margin-bottom: 15px;
}

.info-item i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 15px;
    min-width: 20px;
}

/* Çalışma saatleri için özel hizalama */
.info-item.hours-item {
    align-items: flex-start; /* Saatler için üst hizalama */
}

.info-item.hours-item i {
    margin-top: 3px; /* Saat ikonu için ince ayar */
}

.hours-container {
    display: flex;
    flex-direction: column;
}

.hours-container p {
    margin: 0 0 5px 0;
}

.info-item p {
    margin: 0 0 5px 0;
    color: var(--primary-color);
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--accent-color);
}

/* Geliştirilmiş İletişim Bölümü */
.enhanced-contact-section {
    background-color: var(--secondary-color);
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.dark-mode .enhanced-contact-section {
    background-color: var(--table-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header .section-title {
    margin-bottom: 10px;
}

.contact-subtitle {
    color: var(--primary-color);
    opacity: 0.8;
    font-size: 16px;
    margin: 0;
}

/* İletişim Metodları Kartları */
.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background-color: var(--secondary-color);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 33, 71, 0.05);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.dark-mode .contact-method-card {
    background-color: #3a445a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 33, 71, 0.1);
    border-color: var(--accent-color);
}

.dark-mode .contact-method-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #FFC107 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.dark-mode .contact-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c09526 100%);
    color: #2a3142;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-icon i {
    font-size: 28px;
}

.contact-method-card h3 {
    margin: 0 0 5px;
    font-size: 18px;
    color: var(--primary-color);
}

.contact-method-card p {
    margin: 0 0 15px;
    font-size: 14px;
    color: var(--primary-color);
    opacity: 0.8;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.contact-link:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* Sosyal Medya Çubuğu */
.social-media-bar {
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.dark-mode .social-media-bar {
    background-color: var(--header-footer-color);
}

.social-media-bar p {
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0;
}

.dark-mode .social-media-bar p {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    transition: var(--transition);
}

.dark-mode .social-icon {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.dark-mode .social-icon:hover {
    color: var(--secondary-color);
}

/* Galeri Butonu */
.gallery-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.dark-mode .gallery-close {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.05);
}

.gallery-close:hover {
    background-color: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.dark-mode .gallery-close:hover {
    background-color: var(--accent-color);
    color: #2a3142;
}

#gallery-title {
    text-align: center;
    margin: 0 0 20px 0;
    color: var(--primary-color);
    font-size: 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

/* Swiper Slider Ayarları */
.gallery-swiper {
    width: 100%;
    height: 500px;
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
}

.dark-mode .swiper-slide {
    background-color: var(--table-color);
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color) !important;
    background-color: rgba(0, 0, 0, 0.3);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.dark-mode .swiper-button-next:hover,
.dark-mode .swiper-button-prev:hover {
    background-color: var(--accent-color);
    color: #2a3142 !important;
}

.swiper-pagination-bullet {
    background-color: var(--accent-color) !important;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .enhanced-contact-section {
        padding: 30px 20px;
    }
    
    .contact-methods {
        gap: 20px;
    }
    
    .contact-method-card {
        min-width: calc(50% - 20px);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .contact-method-card {
        min-width: 100%;
    }
    
    .social-media-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        margin: 0 auto;
    }
}-button-container {
    margin-top: 15px;
}

.gallery-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, #FFC107 100%);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 8px rgba(255, 215, 0, 0.3);
}

.dark-mode .gallery-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c09526 100%);
    color: #2a3142;
    box-shadow: 0 3px 8px rgba(212, 175, 55, 0.3);
}

.gallery-button i {
    margin-right: 8px;
    font-size: 16px;
}

.gallery-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.4);
}

.dark-mode .gallery-button:hover {
    box-shadow: 0 6px 12px rgba(114, 137, 218, 0.4);
}

.gallery-button:active {
    transform: translateY(-1px);
}

/* Galeri Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.gallery-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background-color: var(--secondary-color);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dark-mode .gallery-content {
    background-color: var(--table-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery


/* Yasal Uyarı Sayfası Stilleri */
.legal-notice-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 40px;
}

.legal-notice-card {
    background-color: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.dark-mode .legal-notice-card {
    background-color: var(--table-color);
    border-color: var(--border-color);
}

.legal-notice-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.dark-mode .legal-notice-header {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
}

.legal-notice-header i {
    font-size: 24px;
    margin-right: 15px;
    color: var(--accent-color);
}

.legal-notice-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.legal-notice-content {
    padding: 30px;
    color: var(--primary-color);
}

.legal-notice-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-notice-content p:last-child {
    margin-bottom: 0;
}

.contact-info-box {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--accent-color);
    text-align: center;
}

.dark-mode .contact-info-box {
    background-color: var(--table-color);
}

.contact-info-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-box h3 i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 22px;
}

.contact-info-box p {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-details p {
    display: flex;
    align-items: center;
    margin: 0;
}

.contact-details i {
    color: var(--accent-color);
    margin-right: 8px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--accent-color);
}

/* Tüm linklerin varsayılan tarayıcı stilini geçersiz kıl */
footer .legal-text a {
    color: var(--secondary-color) !important; 
    text-decoration: none !important;
    font-weight: 700;
}

/* Hover durumu */
footer .legal-text a:hover {
    color: var(--accent-color) !important;
    text-decoration: none !important;
}

/* Dark mode için */
.dark-mode footer .legal-text a {
    color: var(--primary-color) !important;
}

/* Dark mode hover durumu */
.dark-mode footer .legal-text a:hover {
    color: var(--accent-color) !important;
}





/* Mevcut media query iyileştirmeleri */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .enhanced-contact-section {
        padding: 30px 20px;
    }
    
    .contact-methods {
        gap: 20px;
    }
    
    .contact-method-card {
        min-width: calc(50% - 20px);
        max-width: none;
    }
    
    /* Fiyat tabloları düzeni */
    .prices-section {
        flex-direction: column;
    }
    
    .price-table:first-child,
    .price-table:last-child {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
    
    /* Servis kartları */
    .services-container {
        gap: 20px;
    }
    
    .service-card {
        min-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        padding: 10px 0;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .theme-toggle {
        margin-top: 15px;
    }
    
    .contact-method-card {
        min-width: 100%;
    }
    
    .social-media-bar {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .social-icons {
        margin: 10px auto;
    }
    
    /* Servis kartları tek sütun */
    .service-card {
        min-width: 100%;
        flex: 0 0 100%;
    }
    
    /* Şube detayları */
    .branch-details {
        flex-direction: column;
    }
    
    .branch-map iframe {
        max-height: 300px;
    }
    
    /* Galerinin mobil uyumluluğu */
    .gallery-swiper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .page-title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    /* Tablo düzenlemeleri */
    th, td {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .price-table-header {
        font-size: 16px;
        padding: 12px;
    }
    
    /* Header ve navigasyon */
    .logo img {
        height: 100px;
    }
    
    /* Mobile menu toggle button için mobile görünüm */
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    
    nav ul {
        display: none; /* Default olarak gizli */
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    nav ul.show {
        display: flex; /* JavaScript ile toggle edilecek */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        z-index: 100;
        padding: 10px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .dark-mode nav ul.show {
        background-color: var(--header-footer-color);
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    /* Modal düzenlemeleri */
    .gallery-content {
        padding: 15px;
        width: 95%;
    }
    
    .gallery-close {
        top: 5px;
        right: 5px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    
    /* Şube ve hizmet kartları */
    .branch-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .branch-badge {
        margin-top: 10px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 24px;
    }
    
    /* Galeri düzenlemeleri */
    .gallery-swiper {
        height: 250px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px !important;
    }
    
    /* Enhanced contact section paddingi */
    .enhanced-contact-section {
        padding: 20px 15px;
    }
    
    /* Legal notices */
    .legal-notice-content {
        padding: 15px;
    }
    
    .legal-notice-header h2 {
        font-size: 18px;
    }
}

/* Marquee düzenlemeleri */
@media (max-width: 768px) {
    .marquee-content a {
        margin-right: 20px;
        padding: 3px 8px;
    }
    
    .marquee-content span {
        margin-right: 10px;
        font-size: 14px;
    }
}

/* Hamburger menü JavaScript fonksiyonu için eklenecek CSS */
.header-content {
    position: relative;
}

/* Mobile menu için CSS */
@media (max-width: 576px) {
    .header-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 10px 20px;
    }
    
    .logo {
        margin-right: auto;
        margin-bottom: 0;
    }
    
    .theme-toggle {
        margin-top: 0;
        margin-left: 10px;
    }
    
    /* Nav menü düzeltmeleri */
    nav {
        order: 3;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
    }
}

/* Tablet için ek düzenlemeler */
@media (min-width: 577px) and (max-width: 768px) {
    .header-content {
        padding: 10px 20px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .logo {
        margin-right: auto;
        margin-bottom: 0;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .theme-toggle {
        margin-top: 0;
    }
}
