:root {
    --primary-color: #ffb900;
    --secondary-color: #457b9d;
    --light-color: #ffffff; /* Changed from #f1faee to white */
    --dark-color: #1d3557;
    --white: #ffffff;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tıklanabilir öğelerde odaklanma çerçevesini kaldır - Genişletilmiş ve mobil için güçlendirilmiş */
*:focus {
    outline: none !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-focus-ring-color: rgba(0, 0, 0, 0) !important;
    box-shadow: none !important;
}

a, button, input, select, textarea, [tabindex], 
a:focus, button:focus, input:focus, select:focus, textarea:focus, [tabindex]:focus,
a:active, button:active, input:active, select:active, textarea:active, [tabindex]:active,
a:visited, a:link {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-focus-ring-color: transparent !important;
    outline-color: transparent !important;
    box-shadow: none !important;
    text-decoration-skip-ink: auto !important;
}

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

body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    color: var(--dark-color);
    line-height: 1.6;
}

/* Auth Dropdown */
.auth-dropdown {
    position: relative;
    display: inline-block;
}

.auth-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,.175);
    list-style: none;
    text-align: left;
    border-top: 2px solid #ffb900;
}

.auth-dropdown-menu li {
    padding: 0;
    margin: 0;
}

.auth-dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    clear: both;
    font-weight: 400;
    color: #333;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.auth-dropdown-menu li a i {
    margin-right: 8px;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.auth-dropdown-menu li a:hover {
    background-color: #ffb900;
    color: #000000;
    transform: translateX(3px);
    box-shadow: inset 0 0 10px rgba(230, 166, 0, 0.2);
    border-left: 3px solid #e6a600;
}

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

/* Modal Styles */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-modal.show {
    display: block;
    opacity: 1;
}

.auth-modal-content {
    background-color: #fff;
    margin: 10% auto;
    max-width: 500px;
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
}

.auth-modal.show .auth-modal-content {
    transform: translateY(0);
}

.auth-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.auth-modal-header h3 {
    margin: 0;
    color: #ffb900;
    font-weight: 600;
    font-size: 1.5rem;
}

.auth-modal-body {
    padding: 20px;
}

.auth-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.auth-modal-close:hover {
    color: #ffb900;
}

/* Form Styles */
.auth-form .form-group {
    margin-bottom: 15px;
}

.auth-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #444;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: #ffb900;
    box-shadow: 0 0 0 2px rgba(255, 185, 0, 0.2);
}

.auth-submit-btn {
    width: 100%;
    padding: 12px 15px;
    background-color: #ffb900;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.auth-submit-btn:hover {
    background-color: #e6a600;
}

.auth-alternative {
    margin-top: 20px;
    text-align: center;
    color: #666;
}

.auth-alternative a {
    color: #ffb900;
    text-decoration: none;
    font-weight: 500;
}

.auth-alternative a:hover {
    text-decoration: underline;
}

/* Checkbox Style */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #ffb900;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

a {
    text-decoration: none !important;
    color: var(--dark-color);
}

/* Header Top */
.header-top {
    background-color: #000000;
    padding: 12px 0;
    font-size: 14px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 101;
}

.header-top-container {
    display: flex;
    justify-content: flex-start; /* align items at start */
    align-items: center;
    gap: 10px;
}

.contact-info {
    display: flex;
    gap: 15px;
    color: #ffffff;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex: none;
    margin-right: 10px; /* spacing before slider */
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info-item i {
    font-size: 14px;
    color: #ffb900; /* Masaüstünde de sarı ikon */
}

.social-icons-top {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-left: auto; /* push social icons to far right */
}

.social-icon-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon-top.square-icon {
    border-radius: 4px; /* Square shape */
}

.social-icon-top.whatsapp-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px; /* Square shape like other icons */
}

.social-icon-top.whatsapp-icon:hover {
    background-color: #ffb900;
    transform: translateY(-3px);
}

.social-icon-top.square-icon:hover {
    background-color: #ffb900;
    transform: translateY(-3px);
}

.social-icon-top:hover {
    background-color: #ffb900;
    transform: translateY(-3px);
}

/* Header */
header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(44, 44, 44, 0.85) 50%, rgba(21, 21, 21, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: var(--header-top-height, 51px); /* Use CSS variable */
    z-index: 100;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

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

@media screen and (max-width: 576px) {
    .logo-img {
        max-height: 40px;
    }
}

/* --- Dropdown Menü Düzeltmeleri --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0; /* Azaltılmış boşluk */
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a,
.dropdown-toggle {
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 12px; /* Azaltılmış padding */
    border-radius: 4px;
    text-decoration: none;
    background: none;
    font-size: 0.95em; /* Biraz daha küçük font */
    gap: 1px;
    white-space: nowrap; /* Metin satır atlamayacak */
}

.nav-links a:hover,
.dropdown-toggle:hover {
    color: #ffb900;
    background: rgba(255, 185, 0, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

/* Dropdown Menü Düzeltmeleri (Gelişmiş) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px; /* Daha geniş menü */
    width: 100%; /* Parent genişliğine göre */
    background-color: #2c2c2c;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 5px 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 10;
}

.dropdown-menu a {
    padding: 8px 18px;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 400;
    font-size: 0.95em;
    border-radius: 0;
    background: none;
    transition: background 0.2s, color 0.2s;
    white-space: normal;
    word-break: break-word;
}

@media screen and (max-width: 992px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        box-shadow: none;
        background-color: #2c2c2c; /* Tam antrasit arka plan */
        border-radius: 0;
        padding: 0;
        margin: 0; /* Margin sıfır */
        display: none;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }    .dropdown-menu a {
        padding: 10px 20px; /* Azaltılmış padding */
        margin: 0; /* Menü öğeleri arası mesafe kaldırıldı */
        font-size: 1em;
        border-bottom: 1px solid rgba(255,255,255,0.15); /* Daha belirgin ayırıcı çizgi */
        display: flex;
        align-items: center;
    }    .dropdown-menu a i {
        margin-right: 12px; /* İkon ve metin arasındaki boşluk */
        font-size: 0.85em;
    }
}

/* Mobilde dropdown menü */
@media screen and (max-width: 992px) {
    .nav-links {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        background-color: #ffb900;
        border-radius: 0;
        padding: 0;
        display: none;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
}

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
    color: #ffb900;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    width: 200px;
    background-color: #2c2c2c;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    list-style: none;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 10;
    border-top: 2px solid #ffb900;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: slideDownFade 0.4s ease forwards;
}

@keyframes slideDownFade {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.auth-button {
    background-color: #ffb900; /* Changed from black to yellow to match the new theme */
    color: black !important;
    padding: 8px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.auth-button:hover {
    background-color: #e6a600; /* Darker yellow on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 185, 0, 0.3);
}

.auth-button i {
    font-size: 14px;
}

.dropdown-menu a {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 400;
    font-size: 0.9em;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.dropdown-menu a i {
    margin-right: 10px;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.dropdown-menu a:hover {
    background-color: #ffb900;
    color: #000000;
    transform: translateX(5px);
    transition: all 0.3s ease;
    border-left: 3px solid #e6a600;
    box-shadow: inset 0 0 10px rgba(230, 166, 0, 0.2);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #e6a600;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/slide.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 191px; /* Arttırıldı - header ve header-top için yeterli boşluk */
    padding-bottom: 50px;
}

/* Swiper Navigation Buttons - büyük, kalın ve gölgeli */
.swiper-button-next,
.swiper-button-prev {
    width: 50px !important; /* Daha büyük genişlik */
    height: 50px !important; /* Daha büyük yükseklik */
    background-color: #000000; /* Solid siyah arkaplan */
    border-radius: 50%;
    color: #ffffff !important; /* Beyaz renk */
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Beyaz gölge efekti */
    transition: all 0.3s ease;
    top: 50% !important; /* Dikey merkeze hizala */
    transform: translateY(-50%); /* Tam ortaya pozisyonla */
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px !important; /* Daha büyük ok simgesi */
    font-weight: 900; /* Daha kalın oklar */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* Beyaz gölge efekti */
}

/* Hover efekti - ayrı ayrı */
.swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) translateX(5px) scale(1.05); /* Sağa doğru kaydırma ve büyütme */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7); /* Daha belirgin beyaz gölge */
}

.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) translateX(-5px) scale(1.05); /* Sola doğru kaydırma ve büyütme */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7); /* Daha belirgin beyaz gölge */
}

/* Modern Slogan Effect */
.slogan-header {
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modern-slogan {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0 auto 0 auto;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0rem;
}

.slogan-logo {
    height: 120px; /* Scaled down from original 331px height */
    width: auto; /* Will maintain aspect ratio */
    object-fit: contain;
    margin-right: 5px;
    animation: logo3DRotate 2s ease-out forwards;
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer; /* İmleç işaretçi olarak değiştirildi */
}

/* Konfeti parçacıkları için stil */
.confetti {
    position: fixed !important; /* Sayfada sabit konumda */
    width: 5px;
    height: 5px;
    background-color: #ffb900;
    opacity: 1;
    z-index: 9999;
    pointer-events: none;
    display: block !important; /* Kesinlikle göster */
    visibility: visible !important; /* Kesinlikle görünür yap */
    box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.7); /* Daha belirgin parlaklık */
}

@keyframes logo3DRotate {
    0% {
        transform: rotateY(180deg) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
}

.slogan-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.modern-slogan .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s forwards;
}

.modern-slogan .word:nth-child(1) {
    animation-delay: 0.1s;
}

.modern-slogan .word:nth-child(2) {
    animation-delay: 0.5s;
}

.modern-slogan .word:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect for each word */
.modern-slogan .word:hover {
    transform: scale(1.1);
    color: #ffb900;
    transition: all 0.3s ease;
}

/* Sub Slogan Styles */
.sub-slogan {
    font-family: 'PT Sans', sans-serif;
    font-size: 21px;
    font-style: italic;
    color: #fff;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0;
    width: 100%;
    display: block;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 1.3s;
}

/* Responsive Typing Effect */
@media screen and (max-width: 768px) {
    .typing-text {
        font-size: 2rem;
        white-space: normal;
        animation: none;
        border-right: none;
        text-align: center;
    }
    
    .modern-slogan {
        font-size: 3rem;
    }
    
    .sub-slogan {
        font-size: 14px;
        margin-top: 10px;
        padding: 0 20px;
    }
}

/* Tur Arama Formu */
.tur-search-container {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    overflow: hidden;
    min-width: 333px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.tur-header {
    background-color: rgba(253, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tur-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}

.tur-link i {
    background-color: white;
    color: #ffb900;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tur-search-form {
    display: flex;
    padding: 30px;
    gap: 15px;
    align-items: flex-end;
}

.search-group {
    flex: 1;
    text-align: left;
}

.search-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.search-group input, .search-group select {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
}

.date-select {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0,0 L12,0 L6,6 Z" fill="%23666"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 30px !important;
}

.search-button {
    margin-left: auto;
}

.search-button button {
    background-color: #ffb900;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 13px 20px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.search-button button:hover {
    background-color: #e6a600;
}

.search-button i {
    font-size: 16px;
}

/* Responsive Hero */
@media screen and (max-width: 992px) {
    .hero {
        padding-top: 60px;
        height: auto;
        /*min-height: 100vh;*/
        background-size: cover;  /* Mobil cihazlarda cover kullanarak ekrana sığdırıyoruz */
    }
    
    .tur-search-form {
        flex-direction: column;
        padding: 20px;
    }
    
    .search-group {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .search-button {
        width: 100%;
        margin-top: 10px;
    }
    
    .search-button button {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (min-width: 993px) {
    .hero {
        height: 559px;  /* Masaüstü için sabit yükseklik */
        background-size: cover;  /* Resmi tamamen kapla */
        background-position: center;  /* Resmi ortala */
        background-repeat: no-repeat;  /* Tekrarı önle */
    }
}

/* Features Section */
.features {
    padding: 19px 0;
    background-color: var(--white);
}

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

.section-title h2 {
    font-family: 'Special Gothic Condensed One', sans-serif;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

/* Bizden Haberler başlığı için PT Sans Narrow */
.tour-categories-section .section-title h2 {
    font-family: 'PT Sans Narrow', sans-serif !important;
    font-weight: 700 !important;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1a1a1a;
}

.tour-categories-section .section-title h2::before {
    content: "\f1ea";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #1a1a1a;
    font-size: 0.9em;
    animation: pulse 2s infinite;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* Mobil cihazlar için features-container düzenlemesi */
@media screen and (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.feature-box {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-box p {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Footer */
footer {
    background-color: #000000;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--primary-color);
    width: 50px;
    height: 2px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    display: block;
}

.social-links 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%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a.whatsapp-icon {
    background-color: #25D366;
    color: white;
}

.social-links a.whatsapp-icon:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
}

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Info Slider CSS */
@media screen and (max-width: 768px) {
    .contact-info {
        position: relative;
        overflow: hidden;
        height: 30px; /* İçeriğin yüksekliğine göre ayarlandı */
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: 100%;
        padding: 5px 0;
    }
    
    .contact-info-item {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 10px;
        box-sizing: border-box;
        white-space: nowrap;
    }
    
    .contact-info-item i {
        margin-right: 8px;
        font-size: 14px;
        color: #ffb900;
        display: inline-block;
    }
    
    .contact-info-item span {
        font-size: 14px;
        color: #ffffff;
        font-weight: 500;
        display: inline-block;
    }
}

/* Responsive Styles */
.menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #ffffff;
}

/* Yatay görünümdeki mobil cihazlar için hamburger menü */
@media screen and (max-width: 992px) and (orientation: landscape) {
    .menu-btn {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: #2c2c2c;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--box-shadow);
        transition: all 0.3s ease;
        z-index: 50;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    /* Dropdown Mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        display: none;
        background-color: #2c2c2c;
        box-shadow: none;
        padding: 0;
        margin: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }
    
    /* Header Top Yatay Düzeni */
    .header-top-container {
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
    }
    
    .auth-dropdown {
        order: 1;
        flex: 0 0 auto;
    }
    
    .contact-info {
        order: 2;
        flex: 1 0 auto;
        max-width: 60%;
        justify-content: center;
    }
    
    .social-icons-top {
        order: 3;
        width: auto;
        flex: 0 0 auto;
        margin-top: 0;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 992px) {
    /* Header Top Responsive */
    .header-top {
        position: relative;
        padding: 10px 0;
    }
      .header-top-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center; /* Dikey ortalama */
        gap: 8px;
    }
    
    .auth-dropdown {
        order: 1;
        flex: 0 0 auto;
        display: flex;
        align-items: center; /* İçeriğini dikey ortalama */
    }
    
    .contact-info {
        order: 2;
        flex: 1 0 auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center; /* İçeriğini dikey ortalama */
        gap: 8px;
        max-width: 55%;
        text-align: right;
    }
    
    .contact-info-item {
        font-size: 0.9em;
    }
    
    .contact-info-item span {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .social-icons-top {
        order: 3;
        display: flex;
        justify-content: center;
    }
    
    /* Header Responsive */
    header {
        position: relative;
        top: 0;
    }
    
    .hero {
        padding-top: 30px;
    }
}

/* Sadece mobil dikey görünüm (portrait) için contact-info ve social-icons-top yer değiştirme */
@media screen and (max-width: 992px) and (orientation: portrait) {
    .contact-info {
        order: 3;
    }
    
    .social-icons-top {
        order: 2;
    }
}

@media screen and (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: #2c2c2c;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--box-shadow);
        transition: all 0.3s ease;
        z-index: 50;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    /* Dropdown Mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        display: none;
        background-color: #2c2c2c;
        box-shadow: none;
        padding: 0;
        margin: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }
}

/* iPad ve benzeri tablet cihazlar için yatay görünüm düzenlemesi */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* Daha küçük logo */
    .logo-img {
        max-height: 45px;
    }
    
    /* Navbar menü öğeleri için daha kompakt görünüm */
    .nav-links a,
    .dropdown-toggle {
        padding: 5px 8px;
        font-size: 0.85em;
        gap: 3px;
    }
    
    /* Menü ikonlarını tablet yatay görünümde gizle */
    .menu-icon {
        display: none;
    }
    
    /* Navbar menü öğelerini daha sıkı yerleştir */
    .nav-links {
        gap: 0;
    }
    
    /* Container genişliğini ayarla */
    .container {
        padding: 0 10px;
    }
}

/* 3D Slider Stilleri */
.swiper-section {
    padding: 0;
    background-color: #f8f9fa;
    overflow: hidden; /* Taşan içeriği gizle */
    width: 100%;
}

.swiper-container {
    width: 100%;
    padding-bottom: 50px;
    overflow: hidden; /* Taşan içeriği gizle */
    margin-left: auto;
    margin-right: auto;
}
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: auto; /* Otomatik yükseklik - resmin aspect ratio'sunu korur */
    aspect-ratio: 3/4; /* Örnek bir oran - değiştirilebilir (genişlik/yükseklik) */
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Mobil cihazlar için slider düzeltmeleri */
@media screen and (max-width: 768px) {
    .swiper-container {
        padding-left: 0; /* Mobilde sol paddingi kaldır */
        padding-right: 0; /* Mobilde sağ paddingi kaldır */
    }
    
    .swiper-slide {
        width: 85%; /* Mobilde slide genişliğini azalt */
        height: auto; /* Otomatik yükseklik */
        aspect-ratio: 3/4; /* Aynı oranı koru */
    }
    
    .swiper-wrapper {
        box-sizing: border-box;
    }
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
    border-radius: 15px;
}

.swiper-slide-active {
    filter: brightness(1.2);
}

.swiper-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    border-radius: 0 0 15px 15px;
}
.swiper-slide-content h3 {
    margin: 0 0 5px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.swiper-slide-content p {
    margin: 0;
    font-size: 14px;
}
.swiper-pagination {
    bottom: 10px !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #ffffff !important;
}

.swiper-section-title {
    text-align: center;
    margin-bottom: 30px;
}

.swiper-section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.swiper-section-title p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Modern Kurumsal Page Enhancements */

/* About bölümü grid altyapı ve kart stili */
.about-section {
    background: #f8f9fa;
}
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 40px;
    align-items: start;
}
.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}
.about-image img { display: block; width: 100%; height: auto; }
.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.about-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
}
.key-points .point {
    background: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}
.key-points .point:hover { transform: translateY(-5px); }

/* Vizyon & Misyon kartları renk ayrımı ve hover */
.vision-mission-section { background: #ffffff; }
.vision-box, .mission-box {
    transition: transform 0.3s, background 0.3s;
}
.vision-box:hover, .mission-box:hover {
    background: #f1f1f1;
    transform: translateY(-8px);
}

/* Ekibimiz kart grid ve hover efekti */
.team-member {
    transition: transform 0.3s;
}
.team-member:hover {
    transform: translateY(-10px);
}
.member-image img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.social-links a { background: rgba(255,255,255,0.8); color: #1d3557; }

/* Sayaçlar bölümü ikon animasyonu ekleme */
.counter-box {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}
.counter-box:hover { transform: translateY(-5px); }
.counter-box i { font-size: 3rem; }

/* Neden Bizi Tercih Etmelisiniz kart stili uyumlu */
.why-choose-item {
    background: #f8f9fa;
    transition: transform 0.3s, background 0.3s;
}
.why-choose-item:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

/* Sertifikalar kart hover efekti */
.certificate {
    transition: transform 0.3s;
}
.certificate:hover { transform: translateY(-5px); }

/* Kurumsal Page Styles */
.page-hero {
    background: #000000;
    padding: 100px 0;
    color: #fff;
    position: relative;
    text-align: center;
}
.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.breadcrumb {
    color: #fff;
    font-size: 12px;
    background-color: #000000;
    padding: 10px 20px;
    border-radius: 4px;
}
.breadcrumb a { color: #fff; text-decoration: underline; }
.breadcrumb .separator { margin: 0 0.5rem; }

/* --- Custom Breadcrumb Styles (Overrides) --- */
.breadcrumb-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    padding: 15px 0;
    border-bottom: 3px solid #ffb900;
    margin-top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.breadcrumb-item a {
    color: #ffb900;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 8px;
    border-radius: 4px;
    background: none;
}
.breadcrumb-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 185, 0, 0.5);
    background: none;
}
.breadcrumb-item.active {
    color: #f0f0f0;
    font-weight: 600;
    background: none;
    padding: 2px 8px;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: #ffb900;
    margin: 0 10px;
    font-weight: 700;
    font-size: 16px;
}
.breadcrumb-item {
    color: #c0c0c0;
    font-weight: 500;
}

.about-section, .vision-mission-section, .team-section, .counters-section, .why-choose-section, .certificates-section {
    padding: 60px 0;
}
.about-section .about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}
.about-image { position: relative; flex: 1; min-width: 300px; }
.about-image img { width: 100%; border-radius: 8px; }
.experience-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #ffb900;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}
.experience-badge .years { font-size: 2rem; display: block; }
.about-text { flex: 2; }
.key-points { display: flex; flex-wrap: wrap; gap: 15px; margin: 20px 0; }
.key-points .point { display: flex; align-items: center; gap: 8px; }
.key-points .point i { color: #ffb900; }

.vision-mission-container { display: flex; flex-wrap: wrap; gap: 30px; }
.vision-box, .mission-box {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
}
.icon-box {
    width: 60px;
    height: 60px;
    background: #ffb900;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}
.vision-list, .mission-list { list-style: none; padding: 0; margin-top: 20px; }
.vision-list li, .mission-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}
.team-member { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: var(--box-shadow); }
.member-image { position: relative; }
.member-image img { width: 100%; display: block; }
.social-links {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}
.team-member:hover .social-links { opacity: 1; }
.social-links a {
    color: #fff;
    background: rgba(0,0,0,0.5);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.member-info { padding: 20px; text-align: center; }
.member-info h3 { margin-bottom: 5px; }
.member-info .position { color: #666; font-size: 0.9rem; }

.counters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.counter-box { text-align: center; flex: 1; min-width: 200px; }
.counter-box i { font-size: 2.5rem; color: #ffb900; margin-bottom: 10px; }
.counter { font-size: 2rem; font-weight: 600; color: #333; }
.counter-box h3 { margin-top: 5px; font-size: 1rem; color: #666; }

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    gap: 30px;
}
.why-choose-item { background: #fff; padding: 30px; border-radius: 8px; box-shadow: var(--box-shadow); text-align: center; }
.why-choose-item .icon-container { font-size: 2rem; color: #ffb900; margin-bottom: 15px; }
.why-choose-item h3 { margin-bottom: 10px; }
.why-choose-item p { color: #666; }

.certificates-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.certificate { background: #fff; padding: 30px; border-radius: 8px; box-shadow: var(--box-shadow); text-align: center; flex: 1; min-width: 200px; }
.certificate-icon { font-size: 2.5rem; color: #ffb900; margin-bottom: 10px; }
.certificate-number { display: block; margin-top: 10px; color: #888; }

/* Pagination boşluklarını eşitleme */
.pagination {
    margin: 50px 0; /* Üst ve alt boşluklar eşitlendi */
}

/* Pagination ile footer arasına boşluk ekleme */
.pagination {
    margin-bottom: 80px; /* Turlar sayfasındaki boşlukla eşitlendi */
}

/* İletişim Sayfası Stilleri */
/* İletişim Bilgileri Kartları */
.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.contact-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 185, 0, 0.1);
    color: #ffb900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-card:hover .contact-icon {
    background-color: #ffb900;
    color: #fff;
    transform: rotateY(180deg);
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

/* İletişim Formu ve Harita Bölümü */
.contact-form-section {
    padding: 60px 0;
    background-color: #fff;
}

.form-map-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    align-items: start;
}

.contact-form-container {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #ffb900;
    box-shadow: 0 0 0 3px rgba(255, 185, 0, 0.1);
    outline: none;
}

.btn-submit {
    background-color: #ffb900;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #e6a600;
    transform: translateY(-3px);
}

.map-container {
    height: 100%;
    min-height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
    height: 0;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Sık Sorulan Sorular Bölümü */
.faq-section {
    background: linear-gradient(135deg, #18191a 0%, #232526 100%);
    color: #f1f1f1;
    padding: 70px 0;
}
.faq-section .section-title h2,
.faq-section .section-title p {
    color: #fff;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #232526;
    border-radius: 14px;
    margin-bottom: 22px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item.active {
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 28px 32px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    background: #18191a;
    border: none;
    transition: background 0.3s;
}
.faq-item.active .faq-question {
    background: #232526;
}
.faq-icon {
    margin-left: 18px;
    color: #ffb900;
    font-size: 1.2rem;
    transition: transform 0.3s;
}
.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.active .faq-answer {
    margin: 13px;
}
@media (max-width: 576px) {
    .faq-answer {
        padding-left: 0;
        padding-right: 0;
    }
    .faq-item.active .faq-answer {
        padding: 18px 16px;
    }
}

/* Sosyal Medya Bağlantıları */
.social-connect-section {
    padding: 60px 0;
    background-color: #fff;
}

.social-connect-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-connect-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--box-shadow);
}

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

.social-connect-item i {
    font-size: 32px;
    margin-bottom: 8px;
}

.social-connect-item span {
    font-size: 14px;
    font-weight: 600;
}

.social-connect-item.facebook {
    background: linear-gradient(135deg, #3b5998, #2552a5);
}

.social-connect-item.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-connect-item.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8ad6);
}

.social-connect-item.youtube {
    background: linear-gradient(135deg, #ffb900, #e6a600);
}

.social-connect-item.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .form-map-container {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 400px;
    }
    
    .social-connect-item {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .contact-info-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .social-connect-container {
        gap: 15px;
    }
    
    .social-connect-item {
        width: 80px;
        height: 80px;
    }
    
    .social-connect-item i {
        font-size: 24px;
    }
    
    .social-connect-item span {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Blog Section Styles */
.blog-section {
    margin-top: 0;
}

/* Linklerdeki underline'ları global olarak kaldır */
a, a:hover, a:focus, a:active, a:visited {
    text-decoration: none !important;
}

/* Butonlardaki underline'ları kaldır */
button, .btn, .btn:hover, .btn:focus, .btn:active {
    text-decoration: none !important;
}

/* Hizmet Kartları Bölümü */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 185, 0, 0.1) 0%, rgba(255, 185, 0, 0.05) 100%);
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(69, 123, 157, 0.1) 0%, rgba(69, 123, 157, 0.05) 100%);
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #111, #333, #111);
    transform: scaleX(0);
    transition: transform 0.2s ease-out;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffb900, #e6a600);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-card:hover .service-icon::before {
    left: 100%;
}

.service-icon i {
    font-size: 35px;
    color: white;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 185, 0, 0.3);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #ffb900;
}

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

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #555;
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: #333;
    transform: translateX(5px);
}

.service-features li i {
    color: #ffb900;
    margin-right: 10px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-features li:hover i {
    transform: scale(1.2);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 30px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 50px 0;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 25px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
    }
}

.bg-mimari {
  background: url('../img/mimari.jpg') center center/cover no-repeat;
  background-attachment: fixed;
  background-size: auto;
  color: #fff;
}

.bg-mimari .section-title,
.bg-mimari .section-title h2,
.bg-mimari .section-title p {
  color: #fff;
}