@tailwind base;
@tailwind components;
@tailwind utilities;
/* Kurumsal Font Seçenekleri - Moved to HTML preload for better performance */
/* Font Awesome kaldırıldı - Bootstrap Icons kullanılıyor */
/* Ana Font Değişkenleri */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
/* Genel Font Ayarları - 40+ yaş grubu için büyütüldü */
body {
    font-family: var(--font-primary);
    font-size: 1.2rem; /* 16px → 19.2px */
    line-height: 1.7; /* Daha rahat okuma için artırıldı */
}
/* Menü Font Stilleri */
.primary-menu {
    font-family: var(--font-display);
}
.menu-container {
    font-family: var(--font-display);
}
.menu-item {
    font-family: var(--font-display);
}
.menu-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.3rem; /* 1.1rem → 1.3rem */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.menu-link:hover {
    color: #fbb040;
    transform: translateY(-1px);
}
.menu-link div {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.3rem; /* 1.1rem → 1.3rem */
    letter-spacing: 0.05em;
}
/* Logo Font Stilleri */
#logo a {
    font-family: var(--font-display);
}
/* Header Genel Font */
#header {
    font-family: var(--font-display);
}
/* Header Sosyal Medya İkonları */
.header-social-media {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-left: 2rem;
}
/* About Us Page Styles */
.about-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #163b4a 0%, #275c75 50%, #4e92b7 100%);
}
/* About Hero Section - Modüler Sınıfları Kullanır */
.about-hero-section {
    position: relative;
    overflow: hidden;
}
/* Demo Sayfası Stilleri */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #163b4a 0%, #275c75 50%, #4e92b7 100%);
    color: #ffffff;
    overflow: hidden;
}
.hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 59, 74, 0.8) 0%, rgba(39, 92, 117, 0.6) 50%, rgba(78, 146, 183, 0.4) 100%);
    z-index: 1;
}
.hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-section .hero-title {
    font-size: 3.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}
.hero-section .hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}
.content-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
}
.content-section:nth-child(even) {
    background: #f8f9fa;
}
.content-section .section-header {
    margin-bottom: 3rem;
}
.content-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
}
.content-section .section-description {
    font-size: 1.7rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.content-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}
.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.content-item h4 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #163b4a;
    margin-bottom: 1rem;
}
.content-item p {
    font-size: 1.4rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}
/* Yeni Maksem Sertifikalar Section Stilleri */
.maksem-certificates-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.maksem-certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.maksem-certificate-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(22, 59, 74, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #4e92b7;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.maksem-certificate-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.maksem-certificate-item:hover {
    transform: translateY(-8px);
    border-color: #68b6e3;
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
}
.maksem-certificate-item:hover::before {
    transform: scaleX(1);
}
.maksem-certificate-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}
.maksem-certificate-item:hover .maksem-certificate-icon {
    transform: scale(1.1) rotate(5deg);
}
.maksem-certificate-icon i {
    font-size: 2.8rem;
    color: #ffffff;
}
.maksem-certificate-info h4 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.maksem-certificate-info p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.maksem-certificate-btn {
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border: none;
    padding: 0.875rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(78, 146, 183, 0.3);
}
.maksem-certificate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 146, 183, 0.4);
    background: linear-gradient(135deg, #68b6e3 0%, #4e92b7 100%);
}
.maksem-certificate-btn i {
    font-size: 1.7rem;
}
/* Sertifika Modal Stilleri */
.certificate-modal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 99999 !important;
    backdrop-filter: blur(5px) !important;
}
.certificate-modal.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* Debug için modal'ı her zaman görünür yap */
.certificate-modal {
    visibility: visible !important;
    opacity: 1 !important;
}
/* Yeni Maksem Modal Class'ları - Kesinlikle çalışacak */
.maksem-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 999999 !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}
.maksem-modal-overlay.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.maksem-modal-box {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    max-width: 900px !important;
    height: 80% !important;
    background: white !important;
    border-radius: 20px !important;
    padding: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}
.maksem-modal-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #4e92b7 !important;
}
.maksem-modal-header h3 {
    margin: 0 !important;
    color: #163b4a !important;
    font-size: 1.7rem !important;
    font-weight: 600 !important;
}
.maksem-modal-close {
    background: #4e92b7 !important;
    color: white !important;
    border: none !important;
    padding: 10px 15px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    font-size: 1.7rem !important;
    transition: all 0.3s ease !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.maksem-modal-close:hover {
    background: #68b6e3 !important;
    transform: scale(1.05) !important;
}
.maksem-modal-body {
    height: calc(100% - 60px) !important;
}
.maksem-modal-body iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 10px !important;
}
/* Modal content - Kaldırıldı */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    color: #ffffff;
}
.modal-header h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin: 0;
}
.modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.7rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}
.modal-body {
    height: calc(100% - 80px);
    padding: 0;
}
#certificateFrame {
    width: 100%;
    height: 100%;
    border: none;
}
/* Hero Background Variations for Different Pages */
.about-hero-section .hero-background {
    background: url('/default/img/header-hero/hakkimizda.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hac-hero-section .hero-background {
    background: url('/default/img/header-hero/hac.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.umre-hero-section .hero-background {
    background: url('/default/img/header-hero/umre.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-bilgi .hero-background {
    background: url('/default/img/header-hero/sss.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.iletisim-hero-section .hero-background {
    background: url('/default/img/header-hero/iletisim.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 59, 74, 0.7) 0%, rgba(39, 92, 117, 0.5) 50%, rgba(78, 146, 183, 0.3) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: center;
}
.breadcrumb-wrapper {
    margin-bottom: 2rem;
}
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb-item a:hover {
    color: #68b6e3;
}
.breadcrumb-item.active {
    color: #68b6e3;
}
.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}
/* Info Cards Styling */
.info-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(106, 127, 46, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(106, 127, 46, 0.15);
}
.info-card-header {
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: none;
}
.info-card-header h3 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 600;
    color: white;
}
.info-card-header i {
    font-size: 1.8rem;
    margin-right: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}
.info-card-body {
    padding: 2rem;
}
/* Service List Styling */
.service-list, .important-notes-list, .documents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-list li, .important-notes-list li, .documents-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    font-size: 1.4rem;
    line-height: 1.6;
}
.service-list li:last-child, .important-notes-list li:last-child, .documents-list li:last-child {
    border-bottom: none;
}
.service-list li i, .important-notes-list li i, .documents-list li i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}
/* Documents Section Styling */
.documents-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}
.documents-list li i {
    color: #4e92b7;
    font-size: 1.7rem;
}
/* Alert Styling */
.alert-info {
    background: linear-gradient(135deg, rgba(106, 127, 46, 0.1) 0%, rgba(139, 154, 71, 0.05) 100%);
    border: 1px solid rgba(106, 127, 46, 0.2);
    color: #163b4a;
    border-radius: 10px;
    padding: 1.25rem;
}
.alert-info i {
    color: #4e92b7;
    font-size: 1.4rem;
}
/* Responsive Design */
@media (max-width: 768px) {
    .info-card-header {
        padding: 1.25rem;
    }
    .info-card-header h3 {
        font-size: 1.7rem;
    }
    .info-card-body {
        padding: 1.5rem;
    }
    .documents-list li {
        font-size: 1rem;
    }
}
/* About Content Section */
.about-content-section {
    padding: 5rem 0;
    background: #ffffff;
}
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(22, 59, 74, 0.15);
}
.about-image {
    position: relative;
    z-index: 1;
}
.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}
.about-image-wrapper:hover .about-image img {
    transform: scale(1.05);
}
.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(22, 59, 74, 0.9) 0%, rgba(78, 146, 183, 0.9) 100%);
    color: #ffffff;
    padding: 2rem;
    text-align: center;
    z-index: 2;
}
.overlay-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #68b6e3;
}
.overlay-content p {
    font-size: 1.4rem;
    margin: 0;
    opacity: 0.9;
}
.about-content {
    padding-left: 2rem;
}
.section-header {
    margin-bottom: 3rem;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 2px;
}
.section-description {
    font-size: 1.7rem;
    color: #275c75;
    line-height: 1.7;
    margin: 0;
}
/* Mission Vision Cards */
.mission-vision-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.mv-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f4f7 0%, #e8f0f5 100%);
    border-radius: 15px;
    border: 2px solid #4e92b7;
    transition: all 0.3s ease;
}
.mv-card:hover {
    transform: translateY(-5px);
    border-color: #68b6e3;
    box-shadow: 0 15px 30px rgba(78, 146, 183, 0.2);
}
.card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}
.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.card-content h4 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 0.75rem;
}
.card-content p {
    font-size: 1.4rem;
    color: #275c75;
    line-height: 1.6;
    margin: 0;
}
/* Why Choose Us Section */
.why-choose-us-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f4f7 0%, #e8f0f5 100%);
    position: relative;
    overflow: hidden;
}
/* Modüler Geometrik Şekiller - Üst Kısım */
.geometric-top-left {
    position: relative;
    overflow: hidden;
}
.geometric-top-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, rgba(78, 146, 183, 0.08) 0%, rgba(104, 182, 227, 0.04) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%, 0 0);
    z-index: 1;
}
.geometric-top-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(135deg, rgba(78, 146, 183, 0.12) 0%, rgba(104, 182, 227, 0.06) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 0);
    z-index: 2;
}
/* Modüler Geometrik Şekiller - Alt Kısım */
.geometric-bottom-right {
    position: relative;
    overflow: hidden;
}
.geometric-bottom-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #ffffff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 80% 0, 0 100%);
    z-index: 3;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.06);
}
.geometric-bottom-right::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 85% 0, 0 100%);
    z-index: 2;
}
/* Modüler Dekoratif Elementler */
.geometric-decorative {
    position: relative;
}
.geometric-decorative .geometric-shapes {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 1;
    overflow: hidden;
}
.geometric-decorative .geometric-shapes::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(45deg);
    border-radius: 1px;
}
.geometric-decorative .geometric-shapes::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 25%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(45deg);
    border-radius: 2px;
}
.geometric-decorative .geometric-shapes .shape-1 {
    position: absolute;
    bottom: 8px;
    left: 60%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    border-radius: 1px;
}
.geometric-decorative .geometric-shapes .shape-2 {
    position: absolute;
    bottom: 20px;
    right: 60%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(45deg);
    border-radius: 1px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.feature-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(22, 59, 74, 0.1);
    transition: all 0.3s ease;
    border: 3px solid #4e92b7;
    position: relative;
    overflow: hidden;
}
.feature-item::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 50%, #4e92b7 100%);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-8px);
    border-color: #68b6e3;
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.25);
    border-width: 4px;
}
.feature-item:hover::before {
    opacity: 1;
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}
.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}
.feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}
.feature-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
}
.feature-content p {
    font-size: 0.95rem;
    color: #4e92b7;
    line-height: 1.6;
    margin: 0;
}
/* CTA Section */
.cta-section {
    margin-top: 4rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(22, 59, 74, 0.1);
}
.cta-text {
    font-size: 1.7rem;
    color: #163b4a;
    margin-bottom: 2rem;
    font-weight: 500;
}
.btn-primary {
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.7rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(78, 146, 183, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(78, 146, 183, 0.4);
    background: linear-gradient(135deg, #68b6e3 0%, #4e92b7 100%);
}
.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.header-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #fbb040;
    border-color: rgba(251, 176, 64, 0.5);
}
.header-social-link i {
    font-size: 1.4rem;
    transition: all 0.3s ease;
}
.header-social-link:hover i {
    transform: scale(1.1);
}
/* Footer Font Stilleri */
#footer {
    font-family: var(--font-secondary);
}
#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 {
    font-family: var(--font-display);
    font-weight: 600;
}
#footer p, #footer span, #footer div {
    font-family: var(--font-secondary);
    font-weight: 400;
}
/* Copyright Font */
#copyrights {
    font-family: var(--font-secondary);
    font-weight: 400;
}
.copyright-links {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 1.2rem; /* 1rem → 1.2rem */
    color: #a0aec0;
}
/* Social Icons Font */
.social-icon {
    font-family: var(--font-secondary);
}
/* Top Search Form Font */
.top-search-form input {
    font-family: var(--font-secondary);
    font-weight: 400;
}
/* Hamburger Menu Font */
.cnvs-hamburger {
    font-family: var(--font-display);
}
/* Ana Sayfa Başlık Stilleri */
.homepage-heading {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.homepage-heading h1 {
    font-size: 4.2rem; /* 3.8rem → 4.2rem */
    font-weight: 800;
    color: #1a202c;
}
.homepage-heading h2 {
    font-size: 3.2rem; /* 2.8rem → 3.2rem */
    font-weight: 700;
    color: #2d3748;
}
.homepage-heading h3 {
    font-size: 2.6rem; /* 2.2rem → 2.6rem */
    font-weight: 600;
    color: #4a5568;
}
/* Slider Başlıkları - Daha Büyük ve Canlı */
.slider-caption h2 {
    font-family: var(--font-display);
    font-size: 4.5rem !important; /* 4rem → 4.5rem */
    font-weight: 800 !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
@media (max-width: 768px) {
    .slider-caption h2 {
        font-size: 2.5rem !important;
    }
}
/* Ana Başlık - Popüler Paketlerimiz */
.heading-block h2 {
    font-family: var(--font-display);
    font-size: 2.4rem !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.heading-block span {
    font-family: var(--font-secondary);
    font-size: 1.25rem !important;
    font-weight: 400;
    color: #4a5568;
    line-height: 1.7;
}
/* 3 Kart Bölümü - Yeni Tasarım */
.three-cards-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.three-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(251,176,64,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(251,176,64,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(59,130,246,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(59,130,246,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(16,185,129,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}
/* Section Header */
.section-header {
    position: relative;
    z-index: 2;
}
.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.7rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.divider-line {
    width: 60px;
    height: 2px;
    background: #fbb040;
    border-radius: 1px;
}
.divider-icon {
    width: 40px;
    height: 40px;
    background: #fbb040;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
}
/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    border: 2px solid #4e92b7;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: #68b6e3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
/* Card Image */
.card-image-wrapper {
    position: relative;
    overflow: hidden;
}
.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}
.service-card:hover .card-image {
    transform: scale(1.05);
}
/* Card Badge */
.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.card-badge.success {
    background: #68b6e3;
}
.card-badge.primary {
    background: #3b82f6;
}
.card-badge.warning {
    background: #f59e0b;
}
/* Card Content */
.card-content {
    padding: 2rem;
    position: relative;
    overflow: visible;
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
    transition: all 0.3s ease;
}
.card-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    line-height: 1.3;
    flex: 1;
    transition: all 0.3s ease;
}
.card-title i {
    color: #fbb040;
}
.card-icon {
    width: 40px;
    height: 40px;
    background: #fbb040;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
/* Card Details - Hover'da görünecek */
.card-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-radius: 20px;
    color: #ffffff;
    z-index: 20;
    pointer-events: none;
    overflow: hidden;
}
/* Başlıklar her zaman görünür olsun */
.service-card .card-header {
    margin-bottom: 1rem;
}
.service-card .card-title {
    font-size: 1.4rem;
    color: #1a202c;
}
.service-card .card-icon {
    transform: scale(1);
    background: #fbb040;
}
/* Hover'da sadece icon'u büyüt */
.service-card:hover .card-icon {
    transform: scale(1.1);
}
/* Hover'da card-details görünür olsun */
.service-card:hover .card-details {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
/* Service card hover metinleri için özel optimizasyon */
.service-card .card-details {
    padding: 1.25rem;
    justify-content: center;
    align-items: center;
}
.service-card .card-description {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    max-height: 3.2rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    padding: 0 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.service-card .card-stats {
    gap: 0.75rem;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.service-card .stat-item {
    min-width: 0;
    flex: 1;
}
.service-card .stat-number {
    font-size: 1.3rem;
}
.service-card .stat-label {
    font-size: 0.8rem;
    margin-top: 0.2rem;
}
.card-description {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.5rem;
    padding: 0 0.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
/* H1 Element Genel Stilleri */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    color: inherit;
}
/* Card Stats */
.card-stats {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}
.stat-item {
    text-align: center;
    flex: 1;
}
.stat-number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fbb040;
    line-height: 1;
}
.stat-label {
    font-size: 0.65rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.15rem;
}
/* TÜRSAB Belgesi Stilleri */
.tursab-certificate-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
    padding: 0 10px;
}
.tursab-certificate-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}
.tursab-certificate-link:hover {
    text-decoration: none;
    transform: translateY(-3px);
}
.tursab-certificate-link:hover .tursab-certificate {
    box-shadow: 0 20px 50px rgba(196, 30, 58, 0.7), 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(255, 255, 255, 0.6);
}
.tursab-certificate-link:hover .tursab-certificate::before {
    animation-duration: 2s;
}
.tursab-certificate-link:hover .tursab-certificate::after {
    animation-duration: 1.5s;
}
.tursab-certificate {
    width: 100%;
    max-width: 400px;
    height: 100px;
    background: linear-gradient(135deg, #c41e3a 0%, #dc143c 30%, #b22222 70%, #8b0000 100%);
    border-radius: 12px;
    padding: 15px 25px;
    box-shadow: 0 12px 35px rgba(196, 30, 58, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    backdrop-filter: blur(10px);
}
.tursab-certificate::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 40%, rgba(255,255,255,0.05) 60%, transparent 80%);
    animation: shimmer 4s ease-in-out infinite;
}
.tursab-certificate::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shine 3s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}
@keyframes shine {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}
/* Yatay Düzen İçin Bölümler */
.certificate-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    z-index: 2;
    position: relative;
}
.certificate-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 2;
    z-index: 2;
    position: relative;
}
.certificate-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex: 1;
    z-index: 2;
    position: relative;
}
.tursab-logo {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 4px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5), 0 0 10px rgba(255,255,255,0.3);
    z-index: 2;
    position: relative;
    letter-spacing: 1px;
    font-family: 'Arial Black', Arial, sans-serif;
}
.certificate-title {
    font-size: 13px;
    margin-bottom: 6px;
    opacity: 0.95;
    z-index: 2;
    position: relative;
    line-height: 1.3;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    letter-spacing: 0.5px;
    text-align: center;
}
.certificate-number {
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.2) 100%);
    padding: 8px 14px;
    border-radius: 20px;
    border: 3px solid rgba(255,255,255,0.5);
    z-index: 2;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 1px 3px rgba(255,255,255,0.4);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    text-align: center;
    min-width: 60px;
}
.certificate-subtitle {
    font-size: 10px;
    opacity: 0.9;
    z-index: 2;
    position: relative;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    letter-spacing: 0.3px;
}
.verification-text {
    font-size: 8px;
    opacity: 0.8;
    z-index: 2;
    position: relative;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    letter-spacing: 0.2px;
    text-align: center;
}
/* Responsive Service Cards */
@media (max-width: 768px) {
    .service-card .card-title {
        font-size: 1.4rem;
    }
    .service-card .card-description {
        font-size: 1.1rem;
        padding: 0 0.25rem;
    }
    .card-description {
        font-size: 1.1rem;
        padding: 0 0.15rem;
    }
    .card-details {
        padding: 1.5rem;
    }
    .card-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    .stat-item {
        text-align: center;
    }
    /* H1 Responsive Stilleri - 768px */
    h1 {
        font-size: 2.2rem;
        margin: 0 0 0.875rem 0;
    }
    /* TÜRSAB Belgesi Mobil Responsive */
    .tursab-certificate {
        width: 100%;
        max-width: 350px;
        height: 90px;
        padding: 12px 20px;
    }
    .tursab-certificate-wrapper {
        padding: 0 5px;
    }
    .tursab-logo {
        font-size: 16px;
        margin-bottom: 3px;
    }
    .certificate-title {
        font-size: 11px;
        margin-bottom: 4px;
    }
    .certificate-number {
        font-size: 14px;
        padding: 6px 10px;
    }
    .certificate-subtitle {
        font-size: 9px;
    }
    .verification-text {
        font-size: 7px;
    }
}
@media (max-width: 576px) {
    .service-card .card-title {
        font-size: 1.7rem;
    }
    .service-card .card-description {
        font-size: 1rem;
        padding: 0 0.15rem;
        max-height: 2.8rem;
    }
    .card-description {
        font-size: 1rem;
        padding: 0 0.1rem;
        max-height: 2.2rem;
    }
    /* TÜRSAB Belgesi Küçük Ekran Responsive */
    .tursab-certificate {
        width: 100%;
        max-width: 300px;
        height: 80px;
        padding: 10px 15px;
    }
    .tursab-certificate-wrapper {
        padding: 0 3px;
    }
    .tursab-logo {
        font-size: 14px;
        margin-bottom: 2px;
    }
    .certificate-title {
        font-size: 9px;
        margin-bottom: 3px;
    }
    .certificate-number {
        font-size: 12px;
        padding: 4px 8px;
    }
    .certificate-subtitle {
        font-size: 8px;
    }
    .verification-text {
        font-size: 6px;
    }
}
    .card-content {
        padding: 1.5rem;
    }
    .card-details {
        padding: 1rem;
    }
}
/* Hac Ön Kayıt Modal Stilleri - Kaldırıldı */
#hacRegistrationModal .modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}
#hacRegistrationModal .form-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}
#hacRegistrationModal .form-control,
#hacRegistrationModal .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}
#hacRegistrationModal .form-control:focus,
#hacRegistrationModal .form-select:focus {
    border-color: #fbb040;
    box-shadow: 0 0 0 0.2rem rgba(251, 176, 64, 0.25);
}
#hacRegistrationModal .btn-warning {
    background: linear-gradient(135deg, #fbb040 0%, #f59e0b 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
#hacRegistrationModal .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 176, 64, 0.4);
}
#hacRegistrationModal .form-check-input:checked {
    background-color: #fbb040;
    border-color: #fbb040;
}
#hacRegistrationModal .form-check-label a {
    color: #fbb040;
    text-decoration: none;
}
#hacRegistrationModal .form-check-label a:hover {
    text-decoration: underline;
}
.status-text i {
    color: #68b6e3;
}
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: #3b82f6;
    color: #ffffff;
}
.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}
.btn-warning {
    background: #f59e0b;
    color: #ffffff;
}
.btn-warning:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}
/* Responsive */
@media (max-width: 768px) {
    .three-cards-section {
        padding: 3rem 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1.4rem;
    }
    .card-content {
        padding: 1.5rem;
    }
    .card-title {
        font-size: 1.4rem;
    }
    .service-card:hover .card-title {
        font-size: 1.7rem;
    }
    .card-details {
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.9);
    }
    .card-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
}
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .card-content {
        padding: 1.25rem;
    }
    .service-card .card-description {
        font-size: 0.9rem;
        padding: 0 0.1rem;
        max-height: 2.5rem;
    }
    .card-description {
        font-size: 0.9rem;
        padding: 0 0.05rem;
        max-height: 2rem;
    }
    .card-title {
        font-size: 1.7rem;
    }
    /* H1 Responsive Stilleri */
    h1 {
        font-size: 2rem;
        margin: 0 0 0.75rem 0;
    }
    .service-card:hover .card-title {
        font-size: 1.4rem;
    }
    .card-details {
        padding: 1rem;
        background: rgba(0, 0, 0, 0.9);
    }
    .card-description {
        font-size: 1rem;
    }
    .stat-number {
        font-size: 1.9rem;
    }
    .stat-label {
        font-size: 0.85rem;
    }
}
/* 3 Kart Bölümü - Gelişmiş Görsel Tasarım */
.section.dark.color-primary-darkblue-6 {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%) !important;
    position: relative;
    overflow: hidden;
}
.section.dark.color-primary-darkblue-6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}
.section.dark.color-primary-darkblue-6 .content-wrap {
    position: relative;
    z-index: 2;
}
/* Gelişmiş Kart Tasarımı */
.section.dark.color-primary-darkblue-6 .feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.section.dark.color-primary-darkblue-6 .feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}
.section.dark.color-primary-darkblue-6 .feature-box:hover::before {
    left: 100%;
}
.section.dark.color-primary-darkblue-6 .feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
/* Gelişmiş Görsel Konteyner */
.section.dark.color-primary-darkblue-6 .fbox-media {
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
/* Gelişmiş Görsel */
.section.dark.color-primary-darkblue-6 .fbox-media img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
    border-radius: 15px;
}
.section.dark.color-primary-darkblue-6 .feature-box:hover .fbox-media img {
    filter: brightness(1.1) contrast(1.05);
    transform: scale(1.05);
}
/* Görsel Üzeri Overlay */
.section.dark.color-primary-darkblue-6 .fbox-media::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(147, 51, 234, 0.6) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 15px;
}
.section.dark.color-primary-darkblue-6 .feature-box:hover .fbox-media::after {
    opacity: 0.3;
}
/* Kart İçerik Stilleri */
.section.dark.color-primary-darkblue-6 .feature-box .fbox-content h3 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}
.section.dark.color-primary-darkblue-6 .feature-box .fbox-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fbb040, #f59e0b);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.section.dark.color-primary-darkblue-6 .feature-box:hover .fbox-content h3::after {
    width: 80px;
}
.section.dark.color-primary-darkblue-6 .feature-box .fbox-content p {
    font-size: 1.15rem !important;
    font-weight: 400;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
.section.dark.color-primary-darkblue-6 .feature-box:hover .fbox-content p {
    opacity: 1;
}
/* Kart Animasyonları */
@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}
.section.dark.color-primary-darkblue-6 .feature-box {
    animation: cardFloat 6s ease-in-out infinite;
}
.section.dark.color-primary-darkblue-6 .feature-box:nth-child(2) {
    animation-delay: 2s;
}
.section.dark.color-primary-darkblue-6 .feature-box:nth-child(3) {
    animation-delay: 4s;
}
.section.dark.color-primary-darkblue-6 .feature-box:hover {
    animation: none;
    transform: translateY(-10px) scale(1.02);
}
/* Responsive Tasarım */
@media (max-width: 1024px) {
    .section.dark.color-primary-darkblue-6 .feature-box {
        padding: 1.5rem;
    }
    .section.dark.color-primary-darkblue-6 .fbox-media img {
        height: 220px;
    }
}
@media (max-width: 768px) {
    .section.dark.color-primary-darkblue-6 .feature-box {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    .section.dark.color-primary-darkblue-6 .feature-box .fbox-content h3 {
        font-size: 1.6rem !important;
    }
    .section.dark.color-primary-darkblue-6 .feature-box .fbox-content p {
        font-size: 1rem !important;
    }
    .section.dark.color-primary-darkblue-6 .fbox-media img {
        height: 200px;
    }
}
/* Hakkımızda Bölümü */
.section h3 {
    font-family: var(--font-display);
    font-size: 3rem !important; /* 3.5rem → 4rem */
    font-weight: 700 !important;
    color: #1a202c !important;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.section h3.fw-light {
    font-family: var(--font-secondary);
    font-size: 1.5rem !important; /* 1.3rem → 1.5rem */
    font-weight: 300;
    color: #718096;
    letter-spacing: 0.1em;
}
.section p {
    font-family: var(--font-secondary);
    font-size: 1.4rem !important; /* 1.2rem → 1.4rem */
    font-weight: 400;
    color: #4a5568;
    line-height: 1.8;
}
/* 6 Kart Bölümü */
.heading-block h2 {
    font-family: var(--font-display);
    font-size: 2.6rem !important; /* 2.2rem → 2.6rem */
    font-weight: 700 !important;
    color: #1a202c !important;
    margin-bottom: 1.5rem;
}
.heading-block span {
    font-family: var(--font-secondary);
    font-size: 1.5rem !important; /* 1.3rem → 1.5rem */
    font-weight: 400;
    color: #4a5568;
    line-height: 1.7;
}
.card-style h4 {
    font-family: var(--font-display);
    font-size: 1.8rem !important; /* 1.6rem → 1.8rem */
    font-weight: 600 !important;
    color: #2d3748 !important;
    margin-bottom: 0.75rem;
}
.card-style .before-heading {
    font-family: var(--font-secondary);
    font-size: 1.3rem !important; /* 1.1rem → 1.3rem */
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.card-style p {
    font-family: var(--font-secondary);
    font-size: 1.3rem !important; /* 1.1rem → 1.3rem */
    font-weight: 400;
    color: #4a5568;
    line-height: 1.6;
}
/* Deneyim Bölümü */
.section h2.fw-bold {
    font-family: var(--font-display);
    font-size: 3.2rem !important; /* 2.8rem → 3.2rem */
    font-weight: 700 !important;
    color: #1a202c !important;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.section h3.fw-bold {
    font-family: var(--font-display);
    font-size: 2.4rem !important; /* 2rem → 2.4rem */
    font-weight: 600 !important;
    color: #2d3748 !important;
    margin-bottom: 1rem;
}
.section p {
    font-family: var(--font-secondary);
    font-size: 1.35rem !important; /* 1.15rem → 1.35rem */
    font-weight: 400;
    color: #4a5568;
    line-height: 1.7;
}
/* Responsive Ayarlar */
@media (max-width: 1024px) {
    .homepage-heading h1 { font-size: 3.5rem; } /* 3rem → 3.5rem */
    .homepage-heading h2 { font-size: 2.8rem; } /* 2.4rem → 2.8rem */
    .homepage-heading h3 { font-size: 2.2rem; } /* 1.8rem → 2.2rem */
    .slider-caption h2 { font-size: 4rem !important; } /* 3.5rem → 4rem */
    .heading-block h2 { font-size: 2.6rem !important; } /* 2.2rem → 2.6rem */
    .section h3 { font-size: 3rem !important; } /* 3.5rem → 3rem */
    .menu-link {
        font-size: 1.1rem !important; /* 0.9rem → 1.1rem */
    }
}
@media (max-width: 768px) {
    .homepage-heading h1 { font-size: 3rem; } /* 2.5rem → 3rem */
    .homepage-heading h2 { font-size: 2.4rem; } /* 2rem → 2.4rem */
    .homepage-heading h3 { font-size: 2rem; } /* 1.6rem → 2rem */
    .slider-caption h2 { font-size: 3rem !important; } /* 2.5rem → 3rem */
    .heading-block h2 { font-size: 2.4rem !important; } /* 2rem → 2.4rem */
    .section h3 { font-size: 3rem !important; } /* 2.5rem → 3rem */
    .card-style h4 { font-size: 1.6rem !important; } /* 1.4rem → 1.6rem */
    .menu-link {
        font-size: 1rem !important; /* 0.85rem → 1rem */
    }
    .menu-link div {
        font-size: 1rem !important; /* 0.85rem → 1rem */
    }
}
@media (max-width: 480px) {
    .heading-block h2 { font-size: 2.2rem !important; } /* 1.8rem → 2.2rem */
    .section h3 { font-size: 2.4rem !important; } /* 2rem → 2.4rem */
    .card-style h4 { font-size: 1.4rem !important; } /* 1.2rem → 1.4rem */
}
/* Deneyim Bölümü - Yeni Tasarım */
.experience-heading {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
}
.experience-description {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
}
.experience-feature-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #1e3a8a;
    border-left: 4px solid #1e3a8a;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.experience-feature-item:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.feature-icon i {
    font-size: 1.7rem;
    color: #ffffff;
}
.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.feature-title {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #1a202c !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
}
.feature-text {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    color: #4a5568 !important;
    margin: 0 !important;
    flex: 1;
}
.experience-image-wrapper {
    text-align: center;
    padding: 1rem;
}
.experience-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
/* Responsive Deneyim Bölümü */
@media (max-width: 1024px) {
    .experience-heading {
        font-size: 2rem !important;
        text-align: center;
    }
    .experience-description {
        font-size: 1.1rem !important;
        text-align: center;
    }
    .feature-title {
        font-size: 1rem !important;
    }
    .feature-text {
        font-size: 0.85rem !important;
    }
    .experience-image-wrapper {
        margin-bottom: 2rem;
    }
}
@media (max-width: 768px) {
    .experience-heading {
        font-size: 1.8rem !important;
        text-align: center;
        margin-bottom: 1rem !important;
    }
    .experience-description {
        font-size: 0.9rem !important;
        text-align: center;
        margin-bottom: 1.5rem !important;
    }
    .experience-feature-item {
        padding: 1.25rem;
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.75rem;
    }
    .feature-icon i {
        font-size: 1.25rem;
    }
    .feature-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    .feature-text {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    .experience-image-wrapper {
        margin-bottom: 1.5rem;
        padding: 0.5rem;
    }
    .experience-image {
        border-radius: 12px;
    }
}
@media (max-width: 480px) {
    .experience-heading {
        font-size: 1.6rem !important;
        text-align: center;
        margin-bottom: 0.75rem !important;
    }
    .experience-description {
        font-size: 0.85rem !important;
        text-align: center;
        margin-bottom: 1.25rem !important;
    }
    .experience-feature-item {
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 0.5rem;
    }
    .feature-icon i {
        font-size: 1.7rem;
    }
    .feature-title {
        font-size: 0.9rem !important;
        margin-bottom: 0.375rem !important;
    }
    .feature-text {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }
    .experience-image-wrapper {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
    .experience-image {
        border-radius: 10px;
    }
}
/* Extra Small Screens - 360px ve altı */
@media (max-width: 360px) {
    .experience-heading {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
    }
    .experience-description {
        font-size: 0.8rem !important;
        margin-bottom: 1rem !important;
    }
    .experience-feature-item {
        padding: 0.875rem;
        margin-bottom: 0.5rem;
    }
    .feature-icon {
        width: 35px;
        height: 35px;
        border-radius: 8px;
        margin-bottom: 0.375rem;
    }
    .feature-icon i {
        font-size: 1.5rem;
    }
    .feature-title {
        font-size: 0.85rem !important;
        margin-bottom: 0.25rem !important;
    }
    .feature-text {
        font-size: 0.7rem !important;
        line-height: 1.25 !important;
    }
    .experience-image-wrapper {
        padding: 0.25rem;
        margin-bottom: 0.75rem;
    }
}
/* Sağ Sabit Kayıt Formu Butonu */
.floating-registration-btn {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Floating registration btn - Kaldırıldı */
/* Floating registration btn styles - Kaldırıldı */
/* Kayıt Formu Modal - Kaldırıldı */
.modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
/* Form Stilleri - Modern Tasarım */
.registration-form {
    padding: 2.5rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 0 0 24px 24px;
    position: relative;
}
@media (max-width: 768px) {
    .registration-form {
        padding: 1.5rem;
    }
}
@media (max-width: 480px) {
    .registration-form {
        padding: 1rem;
    }
}
.registration-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
}
.form-group {
    margin-bottom: 2rem;
    position: relative;
}
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 1.5rem;
    }
}
.form-group label {
    display: block;
    font-family: var(--font-secondary);
    font-size: 1.15rem; /* 0.95rem → 1.15rem */
    font-weight: 600;
    color: #163b4a;
    margin-bottom: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}
.form-group label::after {
    content: ' *';
    color: #dc3545;
    font-weight: 700;
    margin-left: 2px;
}
.form-group label:not([for="email"]):not([for="city"]):not([for="message"])::after {
    content: ' *';
    color: #dc3545;
    font-weight: 700;
    margin-left: 2px;
}
.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(22, 59, 74, 0.1);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1.2rem; /* 1rem → 1.2rem */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: #163b4a;
    box-shadow: 0 2px 4px rgba(22, 59, 74, 0.05);
}
@media (max-width: 768px) {
    .form-control {
        padding: 0.875rem 1rem;
        font-size: 16px; /* iOS zoom önleme */
        border-radius: 10px;
    }
}
.form-control:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
    transform: translateY(-2px);
    background: #ffffff;
}
.form-control:hover {
    border-color: rgba(22, 59, 74, 0.2);
    transform: translateY(-1px);
}
.form-control::placeholder {
    color: #6b7280;
    opacity: 0.8;
    font-weight: 400;
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-primary);
    line-height: 1.6;
}
/* Form Validation Stilleri */
.form-control:invalid {
    border-color: #ef4444;
}
.form-control:invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
/* Submit Butonu */
.form-actions {
    text-align: center;
    margin-top: 2rem;
}
.btn-submit {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 16px;
    font-family: var(--font-display);
    font-size: 1.3rem; /* 1.1rem → 1.3rem */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 
        0 8px 25px rgba(220, 53, 69, 0.3),
        0 4px 12px rgba(220, 53, 69, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) {
    .btn-submit {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
        justify-content: center;
    }
}
.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
.btn-submit:hover::before {
    left: 100%;
}
.btn-submit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #c82333 0%, #b02a37 100%);
    box-shadow: 
        0 12px 35px rgba(220, 53, 69, 0.4),
        0 6px 20px rgba(220, 53, 69, 0.3);
}
.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 20px rgba(220, 53, 69, 0.3),
        0 3px 10px rgba(220, 53, 69, 0.2);
}
.btn-submit i {
    font-size: 1.2rem;
    color: white;
    transition: transform 0.3s ease;
}
.btn-submit:hover i {
    transform: translateX(2px);
}
.btn-submit.loading {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}
/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .floating-registration-btn {
        right: 15px;
        top: auto;
        bottom: 20px;
        transform: none;
    }
    .floating-registration-btn .btn-content {
        padding: 0.75rem 0.5rem;
        min-width: 70px;
    }
    .floating-registration-btn i {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    .floating-registration-btn .btn-text {
        font-size: 0.65rem;
    }
    .modal-content {
        width: 95%;
        margin: 1rem;
        max-height: 95vh;
        overflow-y: auto;
    }
    .modal-header {
        padding: 1rem 1.5rem;
    }
    .modal-header h3 {
        font-size: 1.25rem;
    }
    .registration-form {
        padding: 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}
@media (max-width: 480px) {
    .floating-registration-btn {
        right: 10px;
        bottom: 15px;
    }
    .floating-registration-btn .btn-content {
        padding: 0.5rem 0.4rem;
        min-width: 60px;
    }
    .floating-registration-btn .btn-text {
        font-size: 0.6rem;
    }
    .modal-content {
        width: 98%;
        margin: 0.5rem;
    }
    .registration-form {
        padding: 1rem;
    }
}
/* Form Validation Stilleri */
.form-control:invalid {
    border-color: #ef4444;
}
.form-control:invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
/* Loading State */
.btn-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
}
.btn-submit.loading i {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* Success/Error Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    font-weight: 500;
}
.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}
/* Tur Kartları Stilleri */
.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(22, 59, 74, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
}
.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(22, 59, 74, 0.2);
    border-color: #D4AF37;
}
.tour-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}
.tour-card:hover .tour-image img {
    transform: scale(1.1);
}
.tour-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.tour-badge {
    background: linear-gradient(135deg, #D4AF37, #b08d2c);
    color: #163b4a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.tour-content {
    padding: 1.5rem;
}
.tour-content h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: #163b4a;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.tour-content p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #4e92b7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.feature-tag {
    background: rgba(22, 59, 74, 0.1);
    color: #163b4a;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font-secondary);
    border: 1px solid rgba(22, 59, 74, 0.2);
    transition: all 0.3s ease;
}
.feature-tag:hover {
    background: #163b4a;
    color: white;
    border-color: #163b4a;
}
/* Tavsiye Turlarımız Bölümü - Beyaz Arka Plan */
.section.bg-light {
    background-color: #fff !important;
}
/* Deneyim Bölümü - Footer Geçiş Arka Planı */
.section.bg-footer-transition {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #cbd5e1 50%, #94a3b8 75%, #64748b 100%) !important;
    position: relative;
    overflow: hidden;
}
.section.bg-footer-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(22,59,74,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(22,59,74,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(22,59,74,0.015)"/><circle cx="10" cy="60" r="0.5" fill="rgba(22,59,74,0.015)"/><circle cx="90" cy="40" r="0.5" fill="rgba(22,59,74,0.015)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    opacity: 0.6;
}
.section.bg-footer-transition .container {
    position: relative;
    z-index: 2;
}
/* Responsive Tur Kartları */
@media (max-width: 1024px) {
    .tour-title-overlay {
        padding: 1.25rem 1rem 1rem;
    }
    .tour-title-overlay h3 {
        font-size: 1.3rem !important;
    }
}
@media (max-width: 768px) {
    .tour-image {
        padding-bottom: 133.33%; /* 3:4 oranını koru */
    }
    .tour-title-overlay {
        padding: 1rem 0.75rem 0.75rem;
    }
    .tour-title-overlay h3 {
        font-size: 1.1rem !important;
    }
    .tour-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}
/* Heading Divider Stilleri */
.heading-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 1rem;
}
.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    border-radius: 1px;
}
.heading-divider i {
    font-size: 1.7rem;
    color: #D4AF37;
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}
/* Gelişmiş Tur Kartları - Sadece Görsel ve Başlık */
.tour-card {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(22, 59, 74, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    cursor: pointer;
}
.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(106, 127, 46, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}
.tour-card:hover::before {
    opacity: 1;
}
.tour-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(22, 59, 74, 0.2);
    border-color: #D4AF37;
}
.tour-image {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 133.33%; /* 3:4 oranı için (4/3 * 100) */
}
.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}
/* Görsel yüklenmediğinde fallback */
.tour-image img:not([src]), 
.tour-image img[src=""],
.tour-image img[src*="undefined"] {
    background: linear-gradient(135deg, #163b4a, #4e92b7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 0.8rem;
    text-align: center;
}
.tour-image img:not([src])::after, 
.tour-image img[src=""]::after,
.tour-image img[src*="undefined"]::after {
    content: "Görsel Yüklenemedi";
}
.tour-card:hover .tour-image img {
    transform: scale(1.15);
}
.tour-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}
.tour-badge {
    background: linear-gradient(135deg, #D4AF37, #b08d2c);
    color: #163b4a;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    border: 2px solid white;
    transition: all 0.3s ease;
}
.tour-card:hover .tour-badge {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}
/* Tour Content - Artık kullanılmıyor */
.tour-content {
    display: none;
}
/* Tour Title Overlay - Görsel Üzerinde Başlık */
.tour-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(22, 59, 74, 0.85) 0%, rgba(22, 59, 74, 0.6) 50%, transparent 100%);
    padding: 1.5rem 1.25rem 1.25rem;
    color: white;
    transform: translateY(0);
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}
.tour-title-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.7rem !important;
    font-weight: 500;
    color: #f4f8ff !important;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    position: relative;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.tour-title-overlay h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #4e92b7);
    border-radius: 1px;
    transition: all 0.3s ease;
}
.tour-card:hover .tour-title-overlay h3::after {
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #fbb040);
}
.tour-card:hover .tour-title-overlay {
    background: linear-gradient(135deg, rgba(22, 59, 74, 0.9) 0%, rgba(22, 59, 74, 0.75) 50%, rgba(22, 59, 74, 0.4) 100%);
    transform: translateY(-3px);
    backdrop-filter: blur(3px);
}
/* Feature Kartları - Modern Tasarım */
.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f0 50%, #f5f2e8 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(22, 59, 74, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    min-height: 450px;
    max-height: 500px;
    border: 2px solid #4e92b7;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0.5rem;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(106, 127, 46, 0.06) 50%, rgba(212, 175, 55, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(78, 146, 183, 0.2), 0 15px 35px rgba(22, 59, 74, 0.1);
    border-color: #275c75;
    background: linear-gradient(135deg, #ffffff 0%, #faf8f2 50%, #f7f4ec 100%);
}
/* Feature İkon Stilleri */
.feature-card .i-plain {
    font-size: 3.5rem !important;
    color: #D4AF37 !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}
.feature-card:hover .i-plain {
    transform: scale(1.1) rotate(5deg);
    color: #fbb040 !important;
}
/* Feature Başlık Stilleri */
.feature-card .heading-block {
    position: relative;
    z-index: 2;
}
.feature-card .before-heading {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    color: #4e92b7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}
.feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
    line-height: 1.3;
}
/* Feature Açıklama */
.feature-card p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #4e92b7;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}
/* Daha Fazla Özellik, Daha Fazla Konfor Bölümü */
.features-section {
    background: linear-gradient(135deg, #f8f6f0 0%, #f5f2e8 50%, #f0ede5 100%);
    position: relative;
    overflow: hidden;
}
.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23D4AF37" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}
.features-section .container {
    position: relative;
    z-index: 2;
}
/* Feature Kartları Animasyonları */
@keyframes featureFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
.feature-card {
    animation: featureFloat 8s ease-in-out infinite;
}
.feature-card:nth-child(2) {
    animation-delay: 1s;
}
.feature-card:nth-child(3) {
    animation-delay: 2s;
}
.feature-card:nth-child(4) {
    animation-delay: 3s;
}
.feature-card:hover {
    animation: none;
    transform: translateY(-15px) scale(1.02);
}
/* Responsive Feature Kartları */
@media (max-width: 1024px) {
    .feature-card {
        padding: 2rem 1.5rem;
        min-height: 400px;
        max-height: 450px;
    }
    .feature-card .i-plain {
        font-size: 3rem !important;
    }
    .feature-card h4 {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
        min-height: 350px;
        max-height: 400px;
    }
    .feature-card .i-plain {
        font-size: 2.5rem !important;
    }
    .feature-card h4 {
        font-size: 1.7rem;
    }
    .feature-card p {
        font-size: 0.9rem;
    }
}
@media (max-width: 576px) {
    .feature-card {
        min-height: 320px;
        max-height: 370px;
        padding: 1.25rem 1rem;
    }
    .feature-card .i-plain {
        font-size: 2.25rem !important;
    }
    .feature-card h4 {
        font-size: 1.4rem;
    }
    .feature-card p {
        font-size: 0.85rem;
    }
}
/* Responsive Tur Kartları */
/* Mobil Responsive Optimizasyonları */
@media (max-width: 768px) {
    .row.g-4.g-md-5 {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    .row.g-4.g-md-5 > .col-12 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
@media (max-width: 576px) {
    .row.g-4.g-md-5 {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }
    .row.g-4.g-md-5 > .col-12 {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    .feature-card {
        margin: 0.25rem 0;
    }
}
@media (max-width: 480px) {
    .row.g-4.g-md-5 {
        margin-left: 0;
        margin-right: 0;
    }
    .row.g-4.g-md-5 > .col-12 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .feature-card {
        margin: 0.5rem 0;
        border-radius: 15px;
    }
}
/* Footer Inline Adres Stilleri */
.footer-address-inline {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(251, 176, 64, 0.1);
    transition: all 0.3s ease;
}
.footer-address-inline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(251, 176, 64, 0.2);
}
.footer-address-inline .d-flex {
    margin: 0;
}
.footer-address-inline i {
    color: #fbb040;
    font-size: 1.4rem;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.footer-address-inline span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.4;
    word-wrap: break-word;
}
/* Footer Logo Stilleri (Widget içindeki) */
.footer-logo-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}
.footer-logo {
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
}
.footer-logo-wrapper:hover .footer-logo {
    filter: drop-shadow(0 8px 16px rgba(251, 176, 64, 0.4));
    transform: scale(1.05);
}
/* Footer Logo Responsive */
@media (max-width: 768px) {
    .footer-logo {
        max-width: 140px;
    }
    .footer-address-inline {
        padding: 0.6rem;
    }
    .footer-address-inline span {
        font-size: 1rem;
    }
}
@media (max-width: 576px) {
    .footer-logo {
        max-width: 120px;
    }
    .footer-address-inline {
        padding: 0.5rem;
    }
    .footer-address-inline span {
        font-size: 0.95rem;
    }
}
/* Footer Adres Stilleri */
.footer-address {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(251, 176, 64, 0.1);
}
.footer-address .d-flex {
    margin: 0;
}
.footer-address i {
    color: #fbb040;
    font-size: 1.4rem;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.footer-address span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.4;
    word-wrap: break-word;
}
/* Çalışma Saatleri Düzeltmeleri */
.working-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(251, 176, 64, 0.2);
    backdrop-filter: blur(10px);
}
.working-hours h5 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}
.working-hours .d-flex {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}
.working-hours .d-flex:last-child {
    border-bottom: none;
}
.working-hours span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}
.working-hours .d-flex:first-child span:first-child {
    min-width: 120px;
}
.working-hours .d-flex:nth-child(2) span:first-child {
    min-width: 80px;
}
.working-hours .d-flex:last-child span:first-child {
    min-width: 60px;
}
/* Deneyim Bölümü - Feature Item Stilleri */
.feature-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 59, 74, 0.1);
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(22, 59, 74, 0.15) !important;
    border-color: rgba(22, 59, 74, 0.2);
    background: rgba(255, 255, 255, 1) !important;
}
.feature-item h3 {
    transition: color 0.3s ease;
    color: #1a202c !important;
}
.feature-item:hover h3 {
    color: #163b4a !important;
}
.feature-item i {
    transition: transform 0.3s ease;
}
.feature-item:hover i {
    transform: scale(1.1);
}
.feature-item p {
    color: #374151 !important;
}
/* Responsive Feature Item */
@media (max-width: 768px) {
    .feature-item {
        margin-bottom: 1rem;
    }
    .feature-item:last-child {
        margin-bottom: 0;
    }
}
/* Modern Footer Stilleri - Yeni Tasarım */
.footer-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #fbb040;
}
/* Footer Top Section */
.footer-top {
    padding: 4rem 0 2rem;
    position: relative;
}
.footer-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 176, 64, 0.3), transparent);
}
/* Footer Brand */
.footer-brand {
    text-align: left;
}
.logo-text-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.footer-logo {
    flex-shrink: 0;
}
.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
}
.footer-logo:hover img {
    filter: drop-shadow(0 8px 16px rgba(251, 176, 64, 0.4));
    transform: scale(1.05);
}
.company-info {
    flex: 1;
    padding-top: 0.5rem;
}
.company-name {
    color: #fbb040;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.company-desc {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
    flex: 1;
}
.company-stats {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.stat-item {
    text-align: left;
    flex: 1;
    min-width: 120px;
}
.stat-number {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fbb040;
    line-height: 1;
}
.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
/* Sosyal Medya */
.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 0;
    justify-content: flex-start;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fbb040;
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}
.social-link:hover::before {
    left: 100%;
}
.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(251, 176, 64, 0.4);
}
.social-link i {
    font-size: 1.4rem;
    z-index: 1;
}
/* Çalışma Saatleri - Basit Versiyon */
.working-hours-simple {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(251, 176, 64, 0.1);
    backdrop-filter: blur(10px);
}
.hours-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}
.hours-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #fbb040, #D4AF37);
    border-radius: 1px;
}
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hour-row:last-child {
    border-bottom: none;
}
.day-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}
.hour-time {
    color: #fbb040;
    font-size: 0.85rem;
    font-weight: 600;
}
/* Footer Links */
.footer-links {
    text-align: center;
}
.footer-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-title i {
    color: #fbb040;
    margin-right: 0.5rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #fbb040;
    border-radius: 2px;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu li {
    margin-bottom: 0.75rem;
}
.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}
.footer-menu a i {
    color: #fbb040;
    margin-right: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.footer-menu a:hover {
    color: #fbb040;
    transform: translateX(5px);
}
.footer-menu a:hover i {
    transform: scale(1.2);
    color: #3b82f6;
}
/* Footer Contact */
.footer-contact {
    text-align: center;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(251, 176, 64, 0.1);
    transition: all 0.3s ease;
}
.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(251, 176, 64, 0.2);
    transform: translateY(-2px);
}
.contact-icon {
    color: #fbb040;
    font-size: 1.7rem;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}
.contact-info {
    text-align: left;
}
.contact-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.contact-value {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}
/* Working Hours Compact */
.working-hours-compact {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(251, 176, 64, 0.2);
    backdrop-filter: blur(10px);
}
.working-hours-compact .hours-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.working-hours-compact .hours-title i {
    color: #fbb040;
    margin-right: 0.5rem;
}
.working-hours-compact .hours-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #fbb040;
    border-radius: 1px;
}
/* Working Hours */
.working-hours {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(251, 176, 64, 0.2);
}
.working-hours h6 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hour-item:last-child {
    border-bottom: none;
}
.day {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}
.time {
    color: #fbb040;
    font-size: 0.85rem;
    font-weight: 500;
}
/* Footer Middle - Newsletter */
.footer-middle {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
    border-top: 1px solid rgba(251, 176, 64, 0.2);
    border-bottom: 1px solid rgba(251, 176, 64, 0.2);
    position: relative;
    overflow: hidden;
}
.footer-middle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(251,176,64,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(251,176,64,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(59,130,246,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(59,130,246,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(16,185,129,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}
.newsletter-content {
    position: relative;
    z-index: 2;
}
.newsletter-title {
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.newsletter-title i {
    color: #fbb040;
    margin-right: 0.5rem;
}
.newsletter-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0;
}
.newsletter-form {
    position: relative;
    z-index: 2;
}
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(251, 176, 64, 0.3);
    border-radius: 12px;
    color: #ffffff;
    padding: 1rem 1.25rem;
    font-size: 1.4rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fbb040;
    box-shadow: 0 0 0 3px rgba(251, 176, 64, 0.1);
    outline: none;
}
.newsletter-form .btn-primary {
    background: #fbb040;
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.newsletter-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 176, 64, 0.4);
}
/* Footer Middle */
.footer-middle {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(251, 176, 64, 0.1);
    border-bottom: 1px solid rgba(251, 176, 64, 0.1);
}
.newsletter-title {
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.newsletter-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}
.social-media {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}
.social-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.social-icons {
    display: flex;
    gap: 0.75rem;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(251, 176, 64, 0.1);
    border: 1px solid rgba(251, 176, 64, 0.2);
    border-radius: 50%;
    color: #fbb040;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: #fbb040;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 176, 64, 0.4);
}
/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.3);
}
.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}
.footer-partner-logo {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0.8);
}
.footer-partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}
.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.footer-bottom-links a:hover {
    color: #fbb040;
}
.policy-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(251, 176, 64, 0.1);
    transition: all 0.3s ease;
}
.policy-link:hover {
    background: rgba(251, 176, 64, 0.1);
    border-color: rgba(251, 176, 64, 0.3);
    transform: translateY(-2px);
}
.policy-link i {
    color: #fbb040;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4e92b7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(106, 127, 46, 0.3);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(106, 127, 46, 0.5);
}
.back-to-top i {
    transition: transform 0.3s ease;
}
.back-to-top:hover i {
    transform: translateY(-2px);
}
/* Footer Responsive */
@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 1.5rem;
    }
    .logo-text-wrapper {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        align-items: center;
    }
    .footer-logo img {
        max-width: 160px;
    }
    .company-name {
        font-size: 1.4rem;
        text-align: center;
    }
    .company-stats {
        gap: 1.5rem;
        justify-content: center;
    }
    .stat-number {
        font-size: 1.9rem;
    }
    .working-hours-compact {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }
    .hours-title {
        font-size: 0.95rem;
    }
    .day-name, .hour-time {
        font-size: 0.8rem;
    }
    .footer-links, .footer-contact {
        text-align: center;
        margin-bottom: 2rem;
    }
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    .contact-info {
        text-align: center;
    }
    .social-media {
        justify-content: center;
        margin-top: 1rem;
    }
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    .copyright .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .footer-partner-logo {
        height: 20px;
    }
    .newsletter-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    .newsletter-title {
        font-size: 1.7rem;
        justify-content: center;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    /* Header Sosyal Medya Responsive */
    .header-social-media {
        margin-left: 1rem;
        gap: 0.5rem;
    }
    .header-social-link {
        width: 32px;
        height: 32px;
    }
    .header-social-link i {
        font-size: 0.9rem;
    }
    /* Header Sosyal Medya Extra Small Screen */
    .header-social-media {
        margin-left: 0.5rem;
        gap: 0.3rem;
    }
    .header-social-link {
        width: 26px;
        height: 26px;
    }
    .header-social-link i {
        font-size: 0.75rem;
    }
    /* About Us Responsive */
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.4rem;
    }
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    /* Hero Background Responsive */
    .hero-background {
        animation: none;
    }
    .about-hero-section {
        min-height: 50vh;
    }
    /* Modüler Geometrik Şekiller Responsive - Orta Ekran */
    .geometric-bottom-right::after {
        height: 60px;
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 75% 0, 0 100%);
    }
    .geometric-bottom-right::before {
        height: 40px;
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 80% 0, 0 100%);
    }
    .geometric-top-left::before {
        height: 50px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%, 0 0);
    }
    .geometric-top-left::after {
        height: 35px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%, 0 0);
    }
    .geometric-decorative .geometric-shapes {
        height: 30px;
    }
}
    /* About Us Small Screen */
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .mv-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cta-section {
        padding: 2rem;
    }
    /* Modüler Geometrik Şekiller Responsive - Küçük Ekran */
    .geometric-bottom-right::after {
        height: 60px;
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 75% 0, 0 100%);
    }
    .geometric-bottom-right::before {
        height: 40px;
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 80% 0, 0 100%);
    }
    .geometric-top-left::before {
        height: 40px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 0 0);
    }
    .geometric-top-left::after {
        height: 30px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%, 0 0);
    }
    .geometric-decorative .geometric-shapes {
        height: 30px;
    }
    /* Why Choose Us Geometrik Şekiller Small Screen */
    .why-choose-us-section::before {
        height: 40px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 0 0);
    }
    .why-choose-us-section::after {
        height: 30px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%, 0 0);
    }
}
@media (max-width: 480px) {
    .footer-top {
        padding: 2rem 0 1rem;
    }
    .company-name {
        font-size: 1.7rem;
    }
    .company-desc {
        font-size: 1.1rem;
    }
    .logo-text-wrapper {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1rem;
    }
    .company-stats {
        gap: 1rem;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 80px;
    }
    .stat-number {
        font-size: 1.9rem;
    }
    .stat-label {
        font-size: 0.85rem;
    }
    .social-media {
        gap: 0.75rem;
    }
    .social-link {
        width: 40px;
        height: 40px;
    }
    .social-link i {
        font-size: 1.4rem;
    }
    .footer-title {
        font-size: 1.3rem;
    }
    .footer-menu a {
        font-size: 1rem;
        padding: 0.4rem 0;
    }
    .footer-menu a i {
        font-size: 0.9rem;
    }
    .newsletter-title {
        font-size: 1.7rem;
    }
    .newsletter-desc {
        font-size: 0.9rem;
    }
    .newsletter-form .form-control {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    .newsletter-form .btn-primary {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    /* Modüler Geometrik Şekiller Responsive - Extra Small Screen */
    .geometric-bottom-right::after {
        height: 50px;
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 70% 0, 0 100%);
    }
    .geometric-bottom-right::before {
        height: 35px;
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 80% 0, 0 100%);
    }
    .geometric-top-left::before {
        height: 35px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%, 0 0);
    }
    .geometric-top-left::after {
        height: 25px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 0 0);
    }
    .geometric-decorative .geometric-shapes {
        height: 25px;
    }
    /* Sertifikalar Responsive */
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .certificate-card {
        padding: 1.5rem;
    }
    .certificate-icon {
        width: 60px;
        height: 60px;
    }
    .certificate-icon i {
        font-size: 2rem;
    }
    .modal-content {
        width: 95%;
        height: 85%;
    }
    .modal-header {
        padding: 1rem 1.5rem;
    }
    .modal-header h3 {
        font-size: 1.7rem;
    }
    /* WhatsApp Float Responsive */
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        padding: 10px;
    }
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
    /* Footer Responsive */
    .logo-text-wrapper {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    .company-stats {
        justify-content: space-between;
        flex-direction: row;
    }
    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 70px;
    }
    .social-media {
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .footer-top {
        padding: 2rem 0 1rem;
    }
    /* WhatsApp Float Small Screen */
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
        padding: 8px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    /* Header Sosyal Medya Small Screen */
    .header-social-media {
        margin-left: 0.5rem;
        gap: 0.4rem;
    }
    .header-social-link {
        width: 28px;
        height: 28px;
    }
    .header-social-link i {
        font-size: 0.8rem;
    }
    /* Footer Responsive */
    .logo-text-wrapper {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    .company-stats {
        justify-content: space-between;
        flex-direction: row;
    }
    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 70px;
    }
    .social-media {
        justify-content: center;
    }
}
/* Hac Sayfası Stilleri */
.hac-info-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    overflow: hidden;
}
.hac-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(106, 127, 46, 0.15);
    border-color: #4e92b7;
}
.card-header-section {
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    color: white;
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    position: relative;
}
.card-header-section::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid #68b6e3;
}
.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.card-icon-wrapper i {
    font-size: 2.8rem;
    color: white;
}
.card-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0;
    color: white;
}
.card-content {
    padding: 2rem;
}
.card-description {
    color: #4e92b7;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.hac-requirements-list,
.hac-wisdom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hac-requirements-list li,
.hac-wisdom-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(106, 127, 46, 0.08);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.hac-requirements-list li:hover,
.hac-wisdom-list li:hover {
    background: rgba(106, 127, 46, 0.03);
    padding-left: 0.5rem;
    border-radius: 8px;
}
.hac-requirements-list li i,
.hac-wisdom-list li i {
    color: #4e92b7;
    margin-right: 0.75rem;
    font-size: 1.7rem;
    flex-shrink: 0;
}
.hac-requirements-list li:last-child,
.hac-wisdom-list li:last-child {
    border-bottom: none;
}
/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}
.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #4e92b7 50%, transparent 100%);
}
.divider-icon {
    color: #4e92b7;
    font-size: 1.7rem;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.quote-box {
    background: linear-gradient(135deg, rgba(106, 127, 46, 0.05) 0%, rgba(139, 154, 71, 0.03) 100%);
    border: 1px solid rgba(106, 127, 46, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
    transition: all 0.3s ease;
}
.quote-box:hover {
    background: linear-gradient(135deg, rgba(106, 127, 46, 0.08) 0%, rgba(139, 154, 71, 0.05) 100%);
    border-color: rgba(106, 127, 46, 0.2);
    transform: translateY(-2px);
}
.quote-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: #4e92b7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}
.quote-text {
    color: #4e92b7;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
}
.quote-source {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #68b6e3;
    font-weight: 600;
    font-style: normal;
}
.hac-package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.hac-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.hac-package-card.featured {
    border-color: #3b82f6;
    transform: scale(1.02);
}
.hac-package-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}
.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.package-features li:last-child {
    border-bottom: none;
}
/* Additional Footer Styles */
.logo-text-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
/* Very small screens - stack vertically */
@media (max-width: 480px) {
    .logo-text-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
}
.footer-logo img {
    max-width: 120px;
}
/* Fiyat Güncelleme Stilleri */
.maksem-price-old {
    font-size: 1.2rem;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
    opacity: 0.7;
}
.maksem-price-new {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 0;
}
.maksem-price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.company-stats {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: space-between;
}
.working-hours-simple {
    margin-top: 1.25rem;
    padding: 1rem;
}
.hours-title {
    font-size: 0.9rem;
}
.day-name, .hour-time {
    font-size: 0.75rem;
}
.social-icons {
    gap: 0.5rem;
}
.social-icon {
    width: 35px;
    height: 35px;
}
/* ===== DROPDOWN MENU STYLES ===== */
/* Ana menü item'ı için hover efekti */
.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Alt menü container */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e9ecef;
}
/* Ana menü item'ı için pozisyon */
.menu-item-has-children {
    position: relative;
}
/* Disabled menü linki */
.menu-link-disabled {
    cursor: default !important;
    pointer-events: none !important;
    color: inherit !important;
    text-decoration: none !important;
}
.menu-link-disabled:hover {
    background: transparent !important;
    color: inherit !important;
}
/* Alt menü item'ları */
.sub-menu .menu-item {
    width: 100%;
    border-bottom: none;
}
.sub-menu .menu-item:last-child {
    border-bottom: none;
}
.sub-menu .menu-link {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
    color: #495057 !important;
    text-align: left;
    display: block;
    transition: all 0.3s ease;
    border-radius: 0;
}
.sub-menu .menu-link:hover {
    background: #f8f9fa !important;
    color: #4e92b7 !important;
    padding-left: 2rem !important;
}
/* Alt menü için ok işareti */
.menu-item-has-children > .menu-link {
    position: relative;
    padding-right: 2rem !important;
}
.menu-item-has-children > .menu-link::after {
    content: '▼';
    font-family: inherit;
    font-weight: normal;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: inherit;
}
.menu-item-has-children:hover > .menu-link::after {
    transform: translateY(-50%) rotate(180deg);
}
/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --cnvs-primary-menu-submenu-display-speed: 300ms;
}
/* ===== MOBILE RESPONSIVE HEADER & MENU FIXES ===== */
/* Mobile Header Container */
@media (max-width: 768px) {
    #header {
        padding: 0.5rem 0;
        position: relative;
        z-index: 1000;
    }
    #header .container {
        padding: 0 1rem;
    }
    /* Header Row */
    #header .header-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 1rem;
    }
    /* Logo Responsive */
    #logo {
        flex: 0 0 auto;
        max-width: 200px;
    }
    #logo img {
        max-height: 80px;
        width: auto;
    }
    /* Social Media Icons - Hide on Mobile */
    .header-social-media {
        display: none;
    }
    /* Hamburger Button */
    .primary-menu-trigger {
        flex: 0 0 auto;
        order: 3;
    }
    .cnvs-hamburger {
        display: block !important;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        position: relative;
        width: 40px;
        height: 40px;
    }
    .cnvs-hamburger-box {
        width: 24px;
        height: 18px;
        position: relative;
        display: block;
    }
    .cnvs-hamburger-inner {
        width: 100%;
        height: 3px;
        background-color: #163b4a;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    .cnvs-hamburger-inner::before,
    .cnvs-hamburger-inner::after {
        content: '';
        width: 100%;
        height: 3px;
        background-color: #163b4a;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    .cnvs-hamburger-inner::before {
        top: -8px;
    }
    .cnvs-hamburger-inner::after {
        bottom: -8px;
    }
    .cnvs-hamburger.is-active .cnvs-hamburger-inner {
        background-color: transparent;
    }
    .cnvs-hamburger.is-active .cnvs-hamburger-inner::before {
        top: 0;
        transform: rotate(45deg);
    }
    .cnvs-hamburger.is-active .cnvs-hamburger-inner::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
    /* Primary Menu - Mobile */
    .primary-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #163b4a 0%, #275c75 50%, #4e92b7 100%);
        z-index: 999;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 5rem 2rem 2rem;
    }
    .primary-menu.active {
        left: 0;
    }
    .primary-menu .menu-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }
    .primary-menu .menu-item {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .primary-menu .menu-item:last-child {
        border-bottom: none;
    }
    .primary-menu .menu-link {
        display: block;
        padding: 1.5rem 0;
        color: white !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        text-decoration: none;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        position: relative;
        transition: all 0.3s ease;
    }
    .primary-menu .menu-link:hover {
        color: #fbb040 !important;
        background: rgba(255, 255, 255, 0.1);
        padding-left: 1rem;
    }
    .primary-menu .menu-link div {
        color: inherit;
        font-size: inherit;
        font-weight: inherit;
    }
    /* Disabled Menu Links */
    .menu-link-disabled {
        cursor: pointer;
        pointer-events: auto;
        position: relative;
    }
    .menu-link-disabled::after {
        content: '▼';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.8rem;
        transition: transform 0.3s ease;
        color: #fbb040;
    }
    .menu-link-disabled.active::after {
        transform: translateY(-50%) rotate(180deg);
    }
    /* Sub Menu - Mobile */
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 0;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
    }
    .sub-menu.active {
        max-height: 300px;
    }
    .sub-menu .menu-item {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .sub-menu .menu-item:last-child {
        border-bottom: none;
    }
    .sub-menu .menu-link {
        padding: 1rem 0 1rem 2rem;
        font-size: 1rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
        border: none;
        background: none;
        position: relative;
    }
    .sub-menu .menu-link::before {
        content: '•';
        position: absolute;
        left: 1rem;
        color: #fbb040;
        font-weight: bold;
    }
    .sub-menu .menu-link:hover {
        color: #fbb040 !important;
        background: rgba(255, 255, 255, 0.1);
        padding-left: 2.5rem;
    }
    /* Search Form - Hide on Mobile */
    .top-search-form {
        display: none;
    }
    /* Body Scroll Lock */
    body.menu-open {
        overflow: hidden;
    }
    /* Menu Overlay */
    .primary-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}
/* Tablet Responsive */
@media (max-width: 992px) and (min-width: 769px) {
    #header {
        padding: 0.75rem 0;
    }
    #logo img {
        max-height: 45px;
    }
    .header-social-media {
        gap: 0.5rem;
        margin-left: 1rem;
    }
    .header-social-link {
        padding: 0.5rem;
    }
    .primary-menu .menu-link {
        font-size: 1rem !important;
        padding: 0.75rem 1rem;
    }
}
/* Small Mobile */
@media (max-width: 576px) {
    #header .container {
        padding: 0 0.75rem;
    }
    #logo {
        max-width: 160px;
    }
    #logo img {
        max-height: 70px;
    }
    .primary-menu {
        padding: 4rem 1.5rem 2rem;
    }
    .primary-menu .menu-link {
        font-size: 1.1rem !important;
        padding: 1.25rem 0;
    }
    .sub-menu .menu-link {
        font-size: 0.95rem !important;
        padding: 0.875rem 0 0.875rem 1.5rem;
    }
}
/* =============================================
   HEADER TOP STYLES
   ============================================= */
#header-top {
    background: linear-gradient(135deg, #163b4a 0%, #275c75 50%, #4e92b7 100%);
    border-bottom: 2px solid #4e92b7;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}
.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
}
.header-top-left {
    display: flex;
    align-items: center;
}
.header-contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.contact-item i {
    font-size: 14px;
    color: #4e92b7;
    transition: color 0.3s ease;
}
.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact-item a:hover {
    color: #4e92b7;
    text-decoration: none;
}
.contact-item:hover i {
    color: #ffffff;
}
.header-top-right {
    display: flex;
    align-items: center;
}
.header-social-media {
    display: flex;
    gap: 12px;
    align-items: center;
}
.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}
.header-social-link:hover {
    background: #4e92b7;
    border-color: #4e92b7;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 146, 183, 0.3);
    text-decoration: none;
}
.header-social-link i {
    transition: transform 0.3s ease;
}
.header-social-link:hover i {
    transform: scale(1.1);
}
/* Header Top Responsive */
@media (max-width: 768px) {
    #header-top {
        padding: 6px 0;
    }
    /* Mobilde iletişim bilgilerini gizle */
    .header-contact-info {
        display: none !important;
    }
    /* Sosyal medya linklerini de gizle */
    .header-social-media {
        display: none !important;
    }
    /* Header top'u tamamen gizle */
    #header-top {
        display: none !important;
    }
}
    .header-top-content {
        flex-direction: column;
        gap: 8px;
        min-height: auto;
    }
    .header-contact-info {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact-item {
        font-size: 12px;
    }
    .header-social-media {
        gap: 8px;
    }
    .header-social-link {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .header-contact-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .contact-item {
        font-size: 11px;
    }
    .header-social-link {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
}
/* ===== ABOUT PAGE STYLES ===== */
/* Hakkımızda sayfası için özel font boyutları */
.about-hero-section .hero-title {
    font-size: 5rem !important; /* 4.5rem → 5rem */
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4) !important;
}
.about-hero-section .hero-subtitle {
    font-size: 1.8rem !important; /* 1.6rem → 1.8rem */
    line-height: 1.8 !important;
    max-width: 800px !important;
    margin: 0 auto 2rem !important;
    opacity: 0.95 !important;
}
/* Breadcrumb font boyutları */
.about-hero-section .breadcrumb-wrapper .breadcrumb {
    font-size: 1.3rem !important; /* 1.1rem → 1.3rem */
}
.about-hero-section .breadcrumb-wrapper .breadcrumb-item a {
    font-size: 1.3rem !important; /* 1.1rem → 1.3rem */
    font-weight: 500 !important;
}
.about-hero-section .breadcrumb-wrapper .breadcrumb-item.active {
    font-size: 1.3rem !important; /* 1.1rem → 1.3rem */
    font-weight: 600 !important;
}
