/* 
 * ÖZEL OTEL CSS Stilleri
 * Modern ve responsive tasarım
 */
/* CSS Variables */
:root {
    --primary-color: #800020; /* Bordo */
    --secondary-color: #a34343; /* Açık Bordo */
    --accent-color: #800020; /* Bordo */
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    
    --dark-color: #333333;
    --light-color: #f5f5f0; /* Krem rengi */
    --gray-color: #6b7280;
    --white-color: #ffffff;
    
    --text-primary: #333333;
    --text-secondary: #555555;
    --text-light: #777777;
    
    --border-color: #d4d4c8;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, #5c1a1a 100%);
    --gradient-success: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    --hero-overlay-start: rgba(128, 0, 32, 0.65); /* primary bordo */
    --hero-overlay-end: rgba(163, 67, 67, 0.65);   /* secondary bordo */
    
    /* Background variables */
    --bg-primary: #f5f5f0; /* Krem arka plan */
    --bg-secondary: #e8e8e0;
    --bg-tertiary: #dbdbd0;
    --text-primary: #333333;
    --text-secondary: #555555;
    --border-color: #d4d4c8;
}

/* Font Faces: Libra Serif Modern */
@font-face {
    font-family: 'Libra Serif Modern';
    src: url('../font/LibraSerifModern-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Libra Serif Modern';
    src: url('../font/LibraSerifModern-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Libra Serif Modern';
    src: url('../font/LibraSerifModern-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Libra Serif Modern';
    src: url('../font/LibraSerifModern-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --bg-tertiary: #2a2a2a;
    --text-primary: #f0f0f0;
    --text-secondary: #cccccc;
    --border-color: #444444;
    --dark-color: #121212;
    --light-color: #1e1e1e;
    --white-color: #f0f0f0;
    --hero-overlay-start: rgba(18, 18, 18, 0.6);
    --hero-overlay-end: rgba(18, 18, 18, 0.6);
}


/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Libra Serif Modern', Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary); /* Krem arka plan */
    overflow-x: hidden;
    padding-top: 0;
}

/* Top Bar Styles */
.top-bar {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed; /* Fixed position for scroll control */
    top: 0; /* Start at top */
    left: 0;
    right: 0;
    z-index: 1001;
    display: block; /* Ensure it's visible by default */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth transition for scroll */
    transform: translateY(0); /* Default position */
}

/* Top-bar scroll behavior - hide when scrolling down */
.top-bar.scroll-up {
    transform: translateY(0);
    opacity: 1;
}

.top-bar.scroll-down {
    transform: translateY(-100%);
    opacity: 0;
}

/* Top-bar hover effect to show it temporarily */
.top-bar:hover {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

.top-bar-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.top-bar-info span:hover {
    opacity: 1;
}

.top-bar-info i {
    color: var(--accent-color);
    font-size: 0.75rem;
}

.top-bar-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    color: var(--white-color);
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    border-radius: 6px;
    border: 2px solid var(--bg-secondary);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transform: scale(1.1);
}

::-webkit-scrollbar-corner {
    background: var(--bg-secondary);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--bg-secondary);
}

body {
    font-family: 'Libra Serif Modern', Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    padding-top: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.125rem;
    font-weight: 500;
}

/* ===== HEADER-CSSBUL DESKTOP CSS ===== */
/* Header sabit konum */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    min-height: 80px;
    /* Header'ın her zaman görünür olması için */
    opacity: 1;
    visibility: visible;
}

/* Ultra Wide Screens (1600px+) */


/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .header {
        min-height: 75px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .header {
        min-height: 70px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .header {
        min-height: 65px;
    }
}

/* Main Content - adjust for fixed header */
.main-content {
    margin-top: 120px; /* Default header height */
    min-height: calc(100vh - 120px);
}

@media (min-width: 768px) and (max-width: 991px) {
    .main-content {
        margin-top: 115px;
        min-height: calc(100vh - 115px);
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .main-content {
        margin-top: 110px;
        min-height: calc(100vh - 110px);
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .main-content {
        margin-top: 105px;
        min-height: calc(100vh - 105px);
    }
}

/* Gallery Styles for Hotels Detail */
.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

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

.gallery-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.btn-zoom {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-zoom:hover {
    background: white;
    transform: scale(1.05);
}

.gallery-nav-below {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.gallery-nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.gallery-thumbnails {
    margin-top: 20px;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
    max-width: 100%;
}

.thumbnail-item {
    position: relative;
    width: 100%;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    padding: 0;
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.thumbnail-item:hover .thumbnail-overlay {
    opacity: 1;
}

/* Lightbox Styles */
.lightbox-image {
    width: 100%;
    height: 80vh;
    object-fit: contain;
    background: #000;
}

.room-lightbox-modal .modal-content {
    background: #000;
    border: none;
}

.room-lightbox-modal .modal-header {
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid #333;
}

.room-lightbox-modal .modal-title {
    color: white;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-image-wrapper {
        height: 300px;
    }
    
    .thumbnails-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 8px;
    }
    
    .thumbnail-item {
        height: 60px;
    }
    
    .lightbox-image {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .gallery-image-wrapper {
        height: 250px;
    }
    
    .thumbnails-grid {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 6px;
    }
    
    .thumbnail-item {
        height: 50px;
    }
    
    .lightbox-image {
        height: 50vh;
    }
}

/* About page main content full width */
body.about-page .main-content {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

/* Mobile responsive for about page */
@media (max-width: 768px) {
    body.about-page .main-content {
        margin-top: 120px; /* Reduced margin for mobile */
    }
}

@media (max-width: 576px) {
    body.about-page .main-content {
        margin-top: 70px; /* Further reduced for small mobile */
    }
}

/* Hero Section - no negative margin needed */
.hero-section {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 600px;
    overflow: hidden;
    padding-top: 120px;
}

@media (max-width: 767px) {
    .hero-section {
        height: calc(100vh - 100px);
        min-height: 500px;
        padding-top: 100px;
    }
}

/* Override hero to stick to very top under fixed header */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    padding-top: 0;
}

/* If hero is the first block inside main content, pull it up under the fixed header */
.main-content .hero-section:first-child {
    margin-top: -120px;
}

@media (max-width: 767px) {
    .main-content .hero-section:first-child {
        margin-top: -100px;
    }
}

/* Desktop: Header top-bar'ın altında başlasın */

/* Mobile: Header en üstte */
@media (max-width: 767px) {
    .header {
        top: 0 !important;
    }
    
    .main-content {
        margin-top: 140px !important; /* Header height */
        min-height: calc(100vh - 140px) !important;
    }
    
    .hero-section {
        margin-top: 0;
    }
}

.header.scrolled {
    background: rgba(139, 0, 0, 0.95) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

/* Dark theme header/navbar overrides */
[data-theme="dark"] .header {
    background: var(--dark-color);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(18, 18, 18, 0.9);
}

[data-theme="dark"] .navbar-nav .nav-link {
    color: var(--white-color) !important;
}

[data-theme="dark"] .navbar-nav .nav-link:hover,
[data-theme="dark"] .navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.header.scroll-up {
    transform: translateY(0); /* Show header */
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.header.scroll-down {
    transform: translateY(-100%); /* Hide header completely */
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Header entrance animation */
.header.animate-in {
    animation: headerSlideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Masaüstü için navbar-nav düzeni */
@media (min-width: 992px) {
    .navbar .navbar-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 1rem;
        padding-left: 0;
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        padding: 0 2rem;
    }
    
    .navbar-nav {
        flex-direction: row;
        align-items: center;
        gap: 0.3rem;
        margin: 0;
        padding: 0;
        flex: 0 0 auto;
        justify-content: flex-start;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
        padding: 0;
        flex-shrink: 0;
    }
    
    .navbar-brand {
        flex-shrink: 0;
        margin-right: 0;
        margin-left: 0;
    }
    
    .logo img {
        height: 80px !important;
        width: auto;
        max-width: none;
    }
    
    .navbar-nav .nav-link {
        padding: 0.6rem 0.8rem !important;
        margin: 0;
        font-size: 0.9rem;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 0.2rem;
        color: #FFD700 !important;
        text-decoration: none;
        position: relative;
        z-index: 10;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link.active {
        background: rgba(212, 175, 55, 0.2) !important;
        color: #ffffff !important;
        border-radius: 8px;
        font-weight: 600;
        z-index: 11;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(212, 175, 55, 0.15) !important;
        color: #ffffff !important;
        transform: translateY(-1px);
        z-index: 11;
    }
    
    .navbar-nav .nav-link:hover * {
        color: #ffffff !important;
    }
    
    .navbar-nav .nav-link i {
        color: #ffffff !important;
        z-index: 12;
        position: relative;
    }
    
    .navbar-nav .nav-link:hover i {
        color: #ffffff !important;
    }
}

/* Masaüstü için nav-item düzeni */
@media (min-width: 992px) {
    .navbar-nav .nav-item {
        order: unset;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }
}

.reservation-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none !important;
    color: var(--white-color);
    font-weight: 600;
    padding: 0.5rem 1.2rem !important;
    border-radius: 36px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    font-size: 0.9rem;
    white-space: nowrap;
    margin-left: 0;
    order: unset;
}

.reservation-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    background: var(--primary-color) !important;
    color: #ffffff !important;
}

/* Desktop-only header spacing adjustments */
@media (min-width: 992px) {
    .reservation-btn {
        margin-left: 0.3rem;
    }
    
    .nav-item.dropdown:last-child {
        margin-left: 0.3rem;
        order: unset;
    }
}

/* Dropdown Styles */
.dropdown-menu {
    background-color: var(--white-color) !important;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 220px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    z-index: 1000;
    position: absolute;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 1001;
}

/* Ensure dropdown opens on hover for desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }
}

.dropdown-item {
    color: var(--text-primary) !important;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.dropdown-item:hover {
    background-color: rgba(139, 0, 0, 0.1) !important;
    color: var(--primary-color) !important;
    transform: translateX(5px);
    z-index: 11;
}

/* Küçük çözünürlükler için header düzenlemesi (1024x768 gibi) */
@media (min-width: 992px) and (max-width: 1199px) {
    .header {
        min-height: 60px !important;
    }
    
    .navbar {
        padding: 0.4rem 0 !important;
    }
    
    .navbar .navbar-container {
        max-width: 100%;
        padding: 0 0.5rem;
        gap: 0.3rem;
        margin: 0;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .logo img {
        height: 45px !important;
        max-width: 90px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.25rem 0.3rem !important;
        font-size: 0.7rem;
        white-space: nowrap;
    }
    
    .reservation-btn {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.65rem;
        margin-left: 0.1rem;
    }
    
    .nav-text {
        font-size: 0.7rem;
    }
    
    .navbar-nav {
        gap: 0.05rem;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .navbar-nav .nav-item {
        flex-shrink: 1;
    }
    
    .navbar-nav .nav-item.dropdown .nav-link {
        padding: 0.3rem 0.4rem !important;
    }
}

/* Çok küçük çözünürlükler için (800x600 gibi) */
@media (min-width: 992px) and (max-width: 1023px) {
    .header {
        min-height: 55px !important;
    }
    
    .navbar {
        padding: 0.3rem 0 !important;
    }
    
    .navbar .navbar-container {
        padding: 0 0.25rem;
        gap: 0.25rem;
    }
    
    .logo img {
        height: 45px !important;
        max-width: 90px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.25rem 0.3rem !important;
        font-size: 0.7rem;
    }
    
    .reservation-btn {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.7rem;
    }
    
    .nav-text {
        font-size: 0.7rem;
    }
}

/* Çok küçük geniş ekranlar için (1600x600 gibi) */
@media (min-width: 1200px) and (max-width: 1600px) and (max-height: 800px) {
    .header {
        min-height: 50px !important;
    }
    
    .navbar {
        padding: 0.25rem 0 !important;
    }
    
    .navbar .navbar-container {
        padding: 0 0.5rem;
        gap: 0.2rem;
        max-width: 100%;
    }
    
    .logo img {
        height: 40px !important;
        max-width: 80px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.2rem 0.25rem !important;
        font-size: 0.65rem;
    }
    
    .reservation-btn {
        padding: 0.2rem 0.4rem !important;
        font-size: 0.6rem;
    }
    
    .nav-text {
        font-size: 0.65rem;
    }
    
    .reservation-text {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
    }
    
    .reservation-line-1 {
        font-size: 0.6rem;
    }
    
    .navbar-nav {
        gap: 0.02rem;
    }
}

/* Responsive Header Düzenlemeleri */
@media (min-width: 1200px) {
    .navbar .navbar-container {
        max-width: 1200px;
        padding: 0 2rem;
        gap: 2.5rem;
        margin: 0 auto;
    }
    
    .logo img {
        height: 85px !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.8rem 1.2rem !important;
        font-size: 1rem;
    }
    
    .reservation-btn {
        padding: 0.7rem 1.6rem !important;
        font-size: 1rem;
    }
}

@media (min-width: 1400px) {
    .navbar .navbar-container {
        max-width: 1400px;
        padding: 0 3rem;
        gap: 3rem;
        margin: 0 auto;
    }
    
    .logo img {
        height: 90px !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.9rem 1.4rem !important;
        font-size: 1.05rem;
    }
    
    .reservation-btn {
        padding: 0.8rem 1.8rem !important;
        font-size: 1.05rem;
    }
}

/* Dil değiştirirken sabit kalması için */
.navbar-nav {
    transition: none !important;
}

.navbar-nav .nav-item {
    transition: none !important;
}

.navbar-nav .nav-link {
    transition: all 0.3s ease !important;
    color: #ffffff !important;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.navbar-nav .nav-link:hover * {
    color: #ffffff !important;
}

.navbar-nav .nav-link i {
    color: #ffffff !important;
}

.navbar-nav .nav-link:hover i {
    color: #ffffff !important;
}

/* Daha güçlü CSS kuralları */
.navbar .navbar-nav .nav-link,
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:active {
    color: #ffffff !important;
}

.navbar .navbar-nav .nav-link *,
.navbar .navbar-nav .nav-link:hover *,
.navbar .navbar-nav .nav-link:focus *,
.navbar .navbar-nav .nav-link:active * {
    color: #ffffff !important;
}

.navbar .navbar-nav .nav-link i,
.navbar .navbar-nav .nav-link:hover i,
.navbar .navbar-nav .nav-link:focus i,
.navbar .navbar-nav .nav-link:active i {
    color: #ffffff !important;
}

/* Main content için header yüksekliği */
.main-content {
    margin-top: 120px;
    min-height: calc(100vh - 120px);
}

/* Küçük çözünürlükler için main content margin ayarı */
@media (min-width: 992px) and (max-width: 1199px) {
    .main-content {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
    }
}

@media (min-width: 992px) and (max-width: 1023px) {
    .main-content {
        margin-top: 55px;
        min-height: calc(100vh - 55px);
    }
}

@media (min-width: 1200px) {
    .main-content {
        margin-top: 130px;
        min-height: calc(100vh - 130px);
    }
}

@media (min-width: 1400px) {
    .main-content {
        margin-top: 160px;
        min-height: calc(100vh - 160px);
    }
}

/* Mobil cihazlar için navbar düzenlemesi */
@media (max-width: 991px) {
    .navbar .navbar-container {
        justify-content: space-between;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar .navbar-container {
        padding: 0 0.5rem;
    }
}

/* Navbar Genel Stil */
/* Modern Navbar */
.navbar {
    background: linear-gradient(135deg, #8B0000, #A52A2A, #8B0000) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Modern Navbar Container */
.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.8rem 2rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar .container-fluid .navbar-brand {
    flex-shrink: 0;
    z-index: 10;
}

.navbar .container-fluid .navbar-nav {
    flex: 1;
    justify-content: center;
    gap: 0.5rem;
}

/* Logo Modern Styling */
.navbar-brand .logo {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

/* Modern Navbar Bottom Border */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 20%, 
        rgba(255, 215, 0, 0.8) 50%, 
        rgba(255, 215, 0, 0.3) 80%, 
        transparent 100%
    );
    opacity: 0.8;
}

/* Navbar Hover veya Aktifken Alt Çizgi Açılması */
.navbar:hover::before,
.navbar.active::before {
    width: 100%;
}

/* Ultra Wide Screens (1600px+) */

/* Large Desktop (1200px - 1599px) */




.navbar:hover::before {
    width: 100%;
}

/* Navbar Brand Genel Stil */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white-color);
    margin-right: auto;
    margin-left: 0px; /* Logoyu sağa kaydır */
}

/* Logo İçin Stil */
.navbar-brand .logo img {
    height: 70px; /* Masaüstü için daha küçük */
    transition: height 0.3s ease;
}

/* Mobil Cihazlar (max-width: 768px) */
@media (max-width: 768px) {
    .navbar-brand {
        margin-left: 0; /* Mobilde margin'i sıfırla */
        justify-content: center; /* Logoyu ortala */
        width: 100%; /* Tam genişlik */
    }
    
    .navbar-brand .logo img {
        height: 50px; /* Mobilde logo daha küçük */
    }
}

/* Logo ikon ve diğer düzenlemeler */
.navbar-brand .logo {
    display: flex;
    align-items: center;
}

.navbar-brand .logo-icon {
    margin-right: 10px; /* Eğer yanında metin olacaksa boşluk */
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.logo:hover {
    transform: scale(1.05);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-letter {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    background: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo-letter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo:hover .logo-letter {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.logo:hover .logo-letter::before {
    opacity: 1;
}

.logo-stars {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    gap: 2px;
}

.logo-stars i {
    font-size: 0.6rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    animation: twinkle 2s infinite;
}

.logo-stars i:nth-child(1) { animation-delay: 0s; }
.logo-stars i:nth-child(2) { animation-delay: 0.2s; }
.logo-stars i:nth-child(3) { animation-delay: 0.4s; }
.logo-stars i:nth-child(4) { animation-delay: 0.6s; }
.logo-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.logo:hover .logo-stars i {
    animation: none;
    transform: scale(1.3);
    color: var(--white-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--light-color);
    font-weight: 400;
    line-height: 1;
}

/* Altın Gradient Efekti */
.gold-text {
    font-weight: bold;
    background: linear-gradient(
        45deg, 
        #fff 10%,   /* parlama için beyaz kısım */
        #ffd700 30%, 
        #daa520 50%, 
        #ffd700 70%, 
        #fff 90%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}


.theme-toggle {
    background: none;
    border: none !important;
    color: #FFD700 !important;
    padding: 0.7rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none !important;
}

/* Theme Toggle - YENİ YAPISI */
.theme-toggle {
    background: #FFD700 !important;
    border: 2px solid #DAA520 !important;
    border-radius: 8px !important;
    color: #000 !important;
    padding: 8px 12px !important;
    margin: 0 0.2rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    height: 40px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    overflow: visible !important;
}

/* İkon için ekstra güçlü stil */
.theme-toggle::before {
    content: '\f186'; /* Font Awesome moon icon */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    color: #000 !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
}

.theme-toggle:hover {
    background: #DAA520 !important;
    color: #FFD700 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.theme-toggle:hover::before {
    color: #FFD700 !important;
}

.theme-toggle:active {
    transform: translateY(0) !important;
}

/* İkon - KESIN GÖRÜNÜRLÜK */
.theme-toggle i {
    font-size: 20px !important;
    color: #000 !important;
    display: inline-block !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 20px !important;
    height: 20px !important;
    text-align: center !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.theme-toggle:hover i {
    color: #FFD700 !important;
}

/* Dark mode */
[data-theme="dark"] .theme-toggle {
    background: #2c3e50 !important;
    border-color: #34495e !important;
    color: #FFD700 !important;
}

[data-theme="dark"] .theme-toggle::before {
    content: '\f185'; /* Font Awesome sun icon */
    color: #FFD700 !important;
}

[data-theme="dark"] .theme-toggle:hover {
    background: #34495e !important;
    color: #fff !important;
}

[data-theme="dark"] .theme-toggle:hover::before {
    color: #fff !important;
}

/* About Buttons Styling */
.about-buttons {
    margin-top: 2rem;
}

.about-buttons .btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-buttons .btn i {
    font-size: 1.1rem;
}

/* Contact Hero Section - Orijinal tasarım, sadece yapı temizlendi */
.contact-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B0A3A, #C41E3A);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    padding: 5rem 0;
}

.hero-text-content {
    color: white;
}

.hero-badge {
    background: #0066CC;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-main-title .title-line-1,
.hero-main-title .title-line-2 {
    display: block;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #0066CC;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.feature-content p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

.hero-visual-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(160, 28, 32, 0.3);
    border: 2px solid rgba(160, 28, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A01C20, #8B0000);
    border-radius: 20px 20px 0 0;
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(160, 28, 32, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(160, 28, 32, 0.15);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.quick-info-item:hover {
    background: rgba(160, 28, 32, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(160, 28, 32, 0.2);
}

.quick-info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #A01C20, #8B0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(160, 28, 32, 0.3);
}

.info-icon i {
    font-size: 1.25rem;
    color: white;
}

.info-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #A01C20;
}

.info-content p {
    font-size: 0.875rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-visual-card {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-hero-content {
        padding: 3rem 0;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .feature-item {
    text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-visual-card {
        padding: 1.5rem;
    }
}

.navbar-nav {
    display: flex;
    flex-direction: column;
}

/* Navbar Items */
.navbar-nav .nav-item {
    order: 998;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.theme-toggle::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.5s ease;
}

.theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px) rotate(180deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.theme-toggle:hover::before {
    left: 100%;
}

.theme-toggle:hover i {
    transform: scale(1.2);
}

.reservation-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none !important;
    color: var(--white-color);
    font-weight: 600;
    padding: 0.6rem 1.4rem !important;
    border-radius: 36px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    font-size: 0.95rem;
    white-space: nowrap;
}

.reservation-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    background: var(--primary-color) !important;
    color: #ffffff !important;
}

.reservation-btn:hover::before {
    left: 100%;
}

/* Desktop-only header spacing adjustments */

/* Dropdown Styles */
.dropdown-menu {
    background-color: var(--white-color);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 220px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ensure dropdown opens on hover for desktop */

.dropdown-item {
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-item:hover {
    background-color: transparent;
    color: var(--white-color);
    transform: translateX(5px);
}

.dropdown-item:hover::before {
    width: 100%;
}

/* Theme-aware Form Controls (global) */
/* Ensure inputs/selects/textareas adapt to light/dark theme site-wide */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
select,
textarea,
.form-control,
.form-select {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.6rem 0.75rem;
    transition: var(--transition);
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Focus states */
input:focus,
select:focus,
textarea:focus,
.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(128, 0, 32, 0.15); /* uses primary hue */
    background-color: var(--bg-tertiary);
}

/* Date/time native pickers color scheme */
input[type="date"],
input[type="time"],
input[type="datetime-local"] {
    color-scheme: light;
}

[data-theme="dark"] input[type="date"],
[data-theme="dark"] input[type="time"],
[data-theme="dark"] input[type="datetime-local"] {
    color-scheme: dark;
}

/* Dark theme dropdown */
/* Ensure proper contrast for dark mode */
[data-theme="dark"] .dropdown-menu {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

[data-theme="dark"] .dropdown-item {
    color: var(--text-primary);
}

[data-theme="dark"] .dropdown-item:hover {
    color: var(--white-color);
}

/* Main Content */
.main-content {
    margin-top: 120px;
    min-height: calc(100vh - 120px);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--white-color);
}

.hero-line-1 {
    display: block;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--white-color);
}

.hero-line-2 {
    display: block;
    font-size: 4.5rem;
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white-color);
}

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

.btn {
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--warning-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 20;
}


.hero-nav-btn {
    background: var(--primary-color) !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white-color);
    border: none;
    font-size: 1.5rem; /* Default size */
    width: 40px; /* Fixed width */
    height: 40px; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10; /* Ensure buttons are above other elements */
}

.hero-nav-btn.prev {
    left: 1rem; /* Adjusted for better spacing */
}

.hero-nav-btn.next {
    right: 1rem; /* Adjusted for better spacing */
}

@media (max-width: 768px) {
    .hero-nav-btn {
        font-size: 1rem; /* Smaller font size for mobile */
        width: 32px; /* Smaller button size */
        height: 32px; /* Smaller button size */
        border-radius: 50%; /* Circular buttons for better touch targets */
    }

    .hero-nav-btn.prev {
        left: 0.5rem; /* Closer to edge on mobile */
    }

    .hero-nav-btn.next {
        right: 0.5rem; /* Closer to edge on mobile */
    }
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active,
.indicator:hover {
    background: var(--white-color);
    transform: scale(1.2);
}

/* Features Section */
.features-section {
    padding: 5rem 0;

}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

/* Dark theme - feature cards */
[data-theme="dark"] .feature-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}
[data-theme="dark"] .feature-card h3 {
    color: var(--text-primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

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

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.hotel-details-paragraph {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(160, 28, 32, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.hotel-details-paragraph p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-secondary);
}

.hotel-info-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.hotel-info-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hotel-info-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Room Features Section */
.room-features-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #e9ecef;
}

.room-features-section h4 {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-category h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
}

.feature-category ul li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.feature-category ul li:hover {
    background: rgba(160, 28, 32, 0.05);
    padding-left: 0.5rem;
    border-radius: 5px;
}

.feature-category ul li:last-child {
    border-bottom: none;
}

.feature-category ul li i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .room-features-section {
        padding: 1.5rem;
    }
    
    .feature-category {
        margin-bottom: 2rem;
    }
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Rooms Section */
.rooms-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Dark theme - section header */
[data-theme="dark"] .section-header h2 {
    color: var(--white-color);
}

.room-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

/* Dark theme - room cards */
[data-theme="dark"] .room-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}
[data-theme="dark"] .room-content h3 {
    color: var(--text-primary);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.room-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.room-content {
    padding: 1.5rem;
}

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

.room-features {
    list-style: none;
    margin: 1rem 0;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.room-features i {
    color: var(--accent-color);
    width: 16px;
}

/* Rooms page filters - responsive layout */
.rooms-filters .row.g-3 {
    row-gap: 1rem;
}

/* Ensure buttons line can wrap nicely */
.rooms-filters .d-flex.gap-2 {
    flex-wrap: wrap;
    gap: 0.5rem !important;
}

.rooms-filters .d-flex.gap-2 .btn {
    min-width: 140px;
}

/* Filter buttons (type shortcuts) responsive group */
.rooms-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.rooms-filter-buttons .btn {
    margin: 0;
}

@media (max-width: 992px) {
    /* On tablets, give filters more breathing room */
    .rooms-filters .col-md-3,
    .rooms-filters .col-md-2,
    .rooms-filters .col-12 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    /* On small phones, stack all fields full width */
    .rooms-filters .col-md-3,
    .rooms-filters .col-md-2,
    .rooms-filters .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .rooms-filters .d-flex.gap-2 .btn {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .rooms-filter-buttons .btn {
        flex: 1 1 calc(50% - 0.5rem);
    }
}

/* Blog Detail Styles */
.blog-detail-hero {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.7), rgba(163, 67, 67, 0.6));
    z-index: 1;
}

.blog-detail-hero .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem 2rem;
    color: white;
}

.blog-detail-hero .category-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-detail-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.blog-detail-hero .meta-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.95;
}

.blog-detail-hero .meta-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-content h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.5rem;
}

.blog-content h4 {
    font-size: 1.25rem;
}

.blog-content blockquote {
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    font-style: italic;
    position: relative;
}

.blog-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: 15px;
    opacity: 0.3;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin: 2rem 0;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-share-buttons {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    margin: 2rem 0;
    text-align: center;
}

.blog-share-buttons h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.blog-share-buttons .btn {
    margin: 0.25rem;
    min-width: 120px;
    transition: all 0.3s ease;
}

.blog-share-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.blog-author-box {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.blog-author-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.blog-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-right: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.blog-author-info h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.blog-author-info .text-muted {
    font-size: 0.95rem;
}

.blog-navigation {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid var(--border-color);
}

.blog-navigation .nav-item {
    flex: 1;
    text-align: center;
}

.blog-navigation .nav-item.prev {
    text-align: left;
}

.blog-navigation .nav-item.next {
    text-align: right;
}

.blog-navigation .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-navigation .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.related-posts {
    margin-top: 4rem;
}

.related-posts h4 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.related-posts h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.related-post-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.related-post-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover img {
    transform: scale(1.05);
}

.related-post-card .card-body {
    padding: 1.5rem;
}

.related-post-card h6 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.related-post-card h6 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-card h6 a:hover {
    color: var(--accent-color);
}

/* Sidebar Enhancements */
.blog-sidebar .card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.blog-sidebar .card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.blog-sidebar .card-header {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-bottom: none;
}

.blog-sidebar .list-group-item {
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.blog-sidebar .list-group-item:hover {
    background: var(--bg-secondary);
    padding-left: 2rem;
}

.blog-sidebar .list-group-item:last-child {
    border-bottom: none;
}

.blog-sidebar .list-group-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-sidebar .list-group-item a:hover {
    color: var(--accent-color);
}

.blog-sidebar .list-group-item i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.blog-sidebar .list-group-item:hover i {
    transform: translateX(5px);
}

/* Dark theme adjustments */
[data-theme="dark"] .blog-content {
    color: var(--text-primary);
}

[data-theme="dark"] .blog-content h2,
[data-theme="dark"] .blog-content h3,
[data-theme="dark"] .blog-content h4 {
    color: var(--white-color);
}

[data-theme="dark"] .blog-share-buttons,
[data-theme="dark"] .blog-author-box,
[data-theme="dark"] .blog-navigation {
    background: var(--bg-tertiary);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .related-post-card {
    background: var(--bg-secondary);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .blog-sidebar .card {
    background: var(--bg-secondary);
    border-color: rgba(255, 255, 255, 0.08);
}

/* Rooms Detail */

/* Breadcrumb polish for detail */
.breadcrumb {
    background: transparent;
    margin-bottom: 1rem;
}
.breadcrumb .breadcrumb-item a {
    color: var(--accent-color);
    text-decoration: none;
}
.breadcrumb .breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Detail header */
.card-header.bg-primary {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 1.25rem 1.5rem;
}
.card-header.bg-primary h2 {
    color: var(--white-color);
    font-size: 1.75rem;
    margin: 0;
}
.card-header.bg-primary p {
    color: rgba(255,255,255,0.9);
    margin: 0.25rem 0 0 0;
}

/* Detail image */
.room-detail-image {
    position: relative;
    height: 420px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}
.room-detail-image img,
.room-detail .card-body > img.img-fluid {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Info blocks */
.room-detail .card-body h5 {
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}
.room-detail .card-body p {
    margin-bottom: 1rem;
}

/* Amenities */
.amenities .badge {
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}
[data-theme="dark"] .amenities .badge {
    background: var(--bg-tertiary) !important;
    border-color: rgba(255,255,255,0.08);
}

/* Booking side card (existing: .card.sticky-top) */
.card.sticky-top {
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}
.card.sticky-top .card-body {
    padding: 1.75rem !important;
}
.card.sticky-top h3 {
    color: var(--primary-color);
}
.card.sticky-top .btn {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-weight: 700;
}
.card.sticky-top .btn.btn-primary {
    background: var(--gradient-accent);
}
.card.sticky-top .btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Sticky fine-tune */
.sticky-top {
    top: 100px;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .room-detail-image,
    .card-body > img.img-fluid {
        height: 320px;
    }
}
@media (max-width: 576px) {
    .room-detail-image,
    .card-body > img.img-fluid {
        height: 240px;
    }
    .card.sticky-top .card-body {
        padding: 1.25rem !important;
    }
}

/* Blogs Section */
.blogs-section {
    padding: 5rem 0;
    background-color: var(--white-color);
}

/* Dark theme - blogs section */
[data-theme="dark"] .blogs-section {
    background-color: var(--bg-primary);
}

.blog-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

/* Dark theme - blog cards */
[data-theme="dark"] .blog-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.blog-card.featured {
    border: 2px solid var(--accent-color);
    position: relative;
}

.blog-card.featured::before {
    content: 'Öne Çıkan';
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 5;
}

.blog-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
}

.blog-date i {
    color: var(--accent-color);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--accent-color);
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: var(--accent-color);
    width: 14px;
}

.blog-author {
    color: var(--text-secondary);
}

.blog-read-time {
    color: var(--text-light);
}

/* Reservation Section */
.reservation-page .reservation-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
}

.reservation-page .reservation-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reservation-page .reservation-section .section-header h2 {
    color: var(--white-color);
}

.form-group {
    margin-bottom: 1rem;
}

.reservation-page .reservation-section .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--white-color);
}

.reservation-page .reservation-section .form-control,
.reservation-page .reservation-section .form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    transition: var(--transition);
}

.reservation-page .reservation-section .form-control:focus,
.reservation-page .reservation-section .form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.2);
}

.reservation-page .reservation-section .form-control::placeholder,
.reservation-page .reservation-section .form-select::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact-section {
    padding: 31px;
    background-color: var(--light-color);
}

.contact-info {
    text-align: center;
    padding: 2rem;
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
}

/* Dark theme - contact info cards */
[data-theme="dark"] .contact-info {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}
[data-theme="dark"] .contact-info h3 {
    color: var(--text-primary);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--accent-color);
    width: 16px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
}

.footer-top {
    padding: 3rem 0;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-color);
}

.copyright p {
    color: var(--text-light);
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title,
    .hero-line-1,
    .hero-line-2 {
                font-size: 3rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* Gölge sadece mobilde */
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: left;
    }
    
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    
    .reservation-btn {
        margin: 1rem auto;
        display: block;
        text-align: center;
        width: 90%;
        max-width: 280px;
        order: 999;
    }

    
    /* Card spacing for mobile */
    .room-card,
    .blog-card,
    .feature-card {
        margin-bottom: 1.5rem !important;
    }
    
    .room-card:last-child,
    .blog-card:last-child,
    .feature-card:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Row spacing for mobile */
    .row > [class*="col-"] {
        margin-bottom: 1.5rem;
    }
    
    .row > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
    
    /* Section spacing for mobile */
    .rooms-section,
    .blogs-section,
    .features-section {
        padding: 3rem 0;
    }
    
    /* Blog responsive */
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .blog-card.featured::before {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    /* Mobile dropdown stilleri */
    .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        position: static !important;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 0.5rem;
    }
    
    .dropdown-item {
        color: var(--white-color) !important;
        padding: 0.5rem 1rem;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: none;
    }
    
    .dropdown-item::before {
        display: none;
    }
    
    /* Theme toggle mobile */
    .theme-toggle {
        margin: 0.5rem auto;
        display: block;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-line-1 {
        font-size: 1.75rem;
    }
    
    .hero-line-2 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    
    .reservation-form-wrapper {
        padding: 2rem 1rem;
    }
    
    .logo-name {
        font-size: 1.25rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    /* Enhanced mobile card spacing */
    .room-card,
    .blog-card,
    .feature-card {
        margin-bottom: 2rem !important;
        border: 1px solid var(--border-color);
    }
    
    .room-card:last-child,
    .blog-card:last-child,
    .feature-card:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Container padding for small screens */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Hero features mobile responsive */
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
        width: 100%;
        min-width: auto;
        justify-content: center;
    }
    
    /* Section padding for small screens */
    .rooms-section,
    .blogs-section,
    .features-section {
        padding: 2rem 0;
    }
    
    /* Blog mobile */
    .blog-content {
        padding: 1rem;
    }
    
    .blog-content h3 {
        font-size: 1.25rem;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-category,
    .blog-date {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Loading Animation */
body:not(.loaded) {
    overflow: hidden;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(50px);
    transition: all 0.6s ease;
}
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 1rem;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-item:nth-child(odd)::before {
    right: -8px;
}

.timeline-item:nth-child(even)::before {
    left: -8px;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.timeline-year {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Dark theme adjustments */
.dark-theme .timeline-content {
    background: var(--card-bg-dark);
    color: var(--text-light);
}

.dark-theme .timeline-title {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 4rem;
    }
    
    .timeline-item::before {
        left: 1.25rem !important;
    }
}

/* About Hero Section Styles */
.about-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--gradient-primary);
    width: 100vw;
    margin: 0;
    padding: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -120px;
    padding-top: 120px;
}

.about-hero-container {
    position: relative;
    height: 100%;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--hero-overlay-start) 0%, var(--hero-overlay-end) 100%);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    top: 40%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.about-hero-content {
    position: relative;
    z-index: 10;
    padding: 6rem 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-section .container {
    max-width: 1200px;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
}

.hero-text-content {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 245, 240, 0.2);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 245, 240, 0.3);
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line-1 {
    display: block;
    color: var(--light-color);
    font-size: 2.5rem;
}

.title-line-2 {
    display: block;
    color: white;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 1;
    color: white;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: white;
    background: rgba(160, 28, 32, 0.15);
    padding: 1rem 1.25rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(160, 28, 32, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    min-width: auto;
    white-space: nowrap;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #A01C20, #8B0000);
    border-radius: 15px 15px 0 0;
}

.feature-item:hover {
    background: rgba(160, 28, 32, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(160, 28, 32, 0.3);
    border-color: rgba(160, 28, 32, 0.5);
}

.feature-item i {
    font-size: 1.25rem;
    color: white;
    background: linear-gradient(45deg, #A01C20, #8B0000);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(160, 28, 32, 0.4);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-visual-content {
    position: relative;
}

.hero-image-stack {
    position: relative;
}

.hero-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-stats-card {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-box {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-section {
        min-height: calc(100vh - 40px);
        margin-top: -120px;
        padding-top: 140px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .title-line-1 {
        font-size: 2rem;
    }
    
    .hero-stats-card {
        position: static;
        margin-top: 2rem;
    }
    
    .hero-image-main img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        margin-top: -100px;
        padding-top: 100px;
        min-height: calc(100vh - 20px);
    }
    
    .about-hero-content {
        padding: 2rem 1rem;
    }
    
    .about-hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .title-line-1 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        justify-content: flex-start;
        width: 100%;
        min-width: auto;
    }
}

/* Extra small mobile devices */
@media (max-width: 576px) {
    .about-hero-section {
        margin-top: -100px;
        padding-top: 110px;
        min-height: calc(100vh - 10px);
    }
    
    .about-hero-content {
        padding: 1.5rem 0.75rem;
    }
    
    .hero-main-title {
        font-size: 1.75rem;
    }
    
    .title-line-1 {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .quick-info-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    /* Contact Hero Features Responsive */
    .contact-hero-section .hero-features {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
    
    .contact-hero-section .feature-item {
        min-width: auto;
        padding: 1rem;
        margin: 0;
    }
    
    .contact-hero-section .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-hero-section .feature-icon i {
        font-size: 1.25rem;
    }
}

/* Misyon Hero Section Styles */
.misyon-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--gradient-primary);
    width: 100vw;
    margin: 0;
    padding: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -120px;
    padding-top: 120px;
}

.misyon-hero-container {
    position: relative;
    height: 100%;
}

.misyon-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--hero-overlay-start) 0%, var(--hero-overlay-end) 100%);
    z-index: 2;
}

.misyon-hero-content {
    position: relative;
    z-index: 10;
    padding: 6rem 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.misyon-hero-section .container {
    max-width: 1200px;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
}

/* Misyon Content Section */
.misyon-content-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.misyon-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.misyon-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.misyon-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.misyon-section-header .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Misyon Visual Card */
.misyon-visual-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.misyon-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.visual-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
}

.visual-icon i {
    font-size: 2.5rem;
    color: var(--white-color);
}

.misyon-visual-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.misyon-visual-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Values Section */
.values-section {
    margin-top: 4rem;
}

.values-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.values-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.value-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--white-color);
}

.value-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Dark Theme Support */
[data-theme="dark"] .misyon-content-section {
    background: var(--bg-primary);
}

[data-theme="dark"] .misyon-section-header h2,
[data-theme="dark"] .values-section h3 {
    color: var(--white-color);
}

[data-theme="dark"] .misyon-visual-card,
[data-theme="dark"] .value-card {
    background: var(--bg-secondary);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .misyon-visual-card h3,
[data-theme="dark"] .value-card h4 {
    color: var(--white-color);
}

[data-theme="dark"] .misyon-section-header .lead,
[data-theme="dark"] .misyon-visual-card p,
[data-theme="dark"] .value-card p {
    color: var(--text-primary);
}

/* Misyon Hero Responsive Design */
@media (max-width: 992px) {
    .misyon-hero-section {
        min-height: calc(100vh - 40px);
        margin-top: -120px;
        padding-top: 140px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .title-line-1 {
        font-size: 2rem;
    }
    
    .hero-stats-card {
        position: static;
        margin-top: 2rem;
    }
    
    .hero-image-main img {
        height: 300px;
    }
    
    .misyon-visual-card {
        padding: 2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    /* Mobile slider navigation */
    .misyon-hero-section .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .misyon-hero-section .hero-nav-btn.prev {
        left: 1rem;
    }
    
    .misyon-hero-section .hero-nav-btn.next {
        right: 1rem;
    }
    
    .misyon-hero-section .hero-indicators {
        bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .misyon-hero-section .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 768px) {
    .misyon-hero-section {
        margin-top: -100px;
        padding-top: 100px;
        min-height: calc(100vh - 20px);
    }
    
    .misyon-hero-content {
        padding: 2rem 1rem;
    }
    
    .misyon-hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .title-line-1 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        justify-content: flex-start;
        width: 100%;
        min-width: auto;
    }
    
    .misyon-section-header h2 {
        font-size: 2rem;
    }
    
    .values-section h3 {
        font-size: 1.8rem;
    }
    
    .misyon-visual-card {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .visual-icon {
        width: 80px;
        height: 80px;
    }
    
    .visual-icon i {
        font-size: 2rem;
    }
    
    .value-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    

}

@media (max-width: 576px) {
    .misyon-hero-section {
        margin-top: -100px;
        padding-top: 110px;
        min-height: calc(100vh - 10px);
    }
    
    .misyon-hero-content {
        padding: 1.5rem 0.75rem;
    }
    
    .hero-main-title {
        font-size: 1.75rem;
    }
    
    .title-line-1 {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 0.7rem 0.75rem;
        justify-content: flex-start;
    }
    
    .misyon-section-header h2 {
        font-size: 1.75rem;
    }
    
    .values-section h3 {
        font-size: 1.5rem;
    }
    
    .misyon-visual-card h3 {
        font-size: 1.5rem;
    }
    
    .value-card h4 {
        font-size: 1.2rem;
    }
    

}

/* Vizyon Hero Section Styles */
.vizyon-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--gradient-primary);
    width: 100vw;
    margin: 0;
    padding: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -120px;
    padding-top: 120px;
}

.vizyon-hero-container {
    position: relative;
    height: 100%;
}

.vizyon-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--hero-overlay-start) 0%, var(--hero-overlay-end) 100%);
    z-index: 2;
}

.vizyon-hero-content {
    position: relative;
    z-index: 10;
    padding: 6rem 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.vizyon-hero-section .container {
    max-width: 1200px;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
}

/* Vizyon Content Section */
.vizyon-content-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.vizyon-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.vizyon-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.vizyon-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.vizyon-section-header .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Vizyon Visual Card */
.vizyon-visual-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.vizyon-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.vizyon-visual-card .visual-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
}

.vizyon-visual-card .visual-icon i {
    font-size: 2.5rem;
    color: var(--white-color);
}

.vizyon-visual-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.vizyon-visual-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Dark theme support for vizyon */
[data-theme="dark"] .vizyon-visual-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .vizyon-section-header h2,
[data-theme="dark"] .vizyon-visual-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .vizyon-section-header .lead,
[data-theme="dark"] .vizyon-visual-card p {
    color: var(--text-primary);
}

/* Vizyon Hero Responsive Design */
@media (max-width: 992px) {
    .vizyon-hero-section {
        min-height: calc(100vh - 40px);
        margin-top: -120px;
        padding-top: 140px;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .title-line-1 {
        font-size: 2rem;
    }
    
    .vizyon-visual-card {
        padding: 2rem;
    }
    
    .vizyon-visual-card .visual-icon {
        width: 80px;
        height: 80px;
    }
    
    .vizyon-visual-card .visual-icon i {
        font-size: 2rem;
    }
    
}

/* Vizyon Hero Responsive Design - Tablet */

@media (max-width: 768px) {
    .vizyon-hero-section {
        margin-top: -100px;
        padding-top: 100px;
        min-height: calc(100vh - 20px);
    }
    
    .vizyon-hero-content {
        padding: 2rem 1rem;
    }
    
    .vizyon-hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .title-line-1 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        justify-content: flex-start;
        width: 100%;
        min-width: auto;
    }
    
    .vizyon-section-header h2 {
        font-size: 2rem;
    }
    
    .vizyon-visual-card {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .vizyon-visual-card .visual-icon {
        width: 70px;
        height: 70px;
    }
    
    .vizyon-visual-card .visual-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .vizyon-hero-section {
        margin-top: -100px;
        padding-top: 110px;
        min-height: calc(100vh - 10px);
    }
    
    .vizyon-hero-content {
        padding: 1.5rem 0.75rem;
    }
    
    .hero-main-title {
        font-size: 1.75rem;
    }
    
    .title-line-1 {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 0.7rem 0.75rem;
        justify-content: flex-start;
    }
    
    .vizyon-section-header h2 {
        font-size: 1.75rem;
    }
    
    .vizyon-visual-card h3 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-nav,
    .hero-indicators,
    .back-to-top {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .hero-section {
        height: auto;
        min-height: auto;
    }
    
    .hero-content {
        position: static;
        background: none;
        color: var(--text-primary);
    }
    
    .hero-title {
        color: var(--text-primary);
    }
}


/* KVKK Page Styles - Clean Design */
.kvkk-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B0000 100%);
    margin-top: -60px;
    padding-top: 120px;
}

.kvkk-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

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

.kvkk-hero-section .hero-content {
    text-align: center;
    color: white;
}

.kvkk-hero-section .hero-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #FFD700;
}

.kvkk-hero-section .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.kvkk-hero-section .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.kvkk-content-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* KVKK New Clean Design */
.kvkk-info-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.kvkk-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.kvkk-info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: fit-content;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.kvkk-info-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.kvkk-info-card .card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B0000 100%);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.kvkk-info-card .card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.kvkk-info-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.kvkk-info-card .card-header h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.kvkk-info-card .card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.info-item:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.info-item div {
    flex: 1;
    color: #495057;
    line-height: 1.6;
}

.info-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.data-category {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    flex-shrink: 0;
}

.data-category h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-category h4 i {
    font-size: 1rem;
}

.data-category ul {
    margin: 0;
    padding-left: 20px;
}

.data-category li {
    color: #6c757d;
    margin-bottom: 8px;
    line-height: 1.5;
}

.purpose-item, .right-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.purpose-item:hover, .right-item:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.purpose-item i, .right-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 20px;
}

.purpose-item div, .right-item div {
    flex: 1;
}

.purpose-item strong, .right-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.purpose-item p, .right-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.contact-info {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info p {
    color: #495057;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #8B0000;
    transform: translateY(-2px);
}

.contact-method i {
    font-size: 1.1rem;
}

.contact-method span {
    font-weight: 500;
}

.response-time {
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
}

/* Dark Theme Support */
[data-theme="dark"] .kvkk-info-section {
    background: #1a1a1a;
}

[data-theme="dark"] .kvkk-info-card {
    background: #2d2d2d;
    border-color: #404040;
}

[data-theme="dark"] .kvkk-info-card .card-content {
    color: #e9ecef;
}

[data-theme="dark"] .info-item {
    background: #3a3a3a;
    color: #e9ecef;
}

[data-theme="dark"] .info-item:hover {
    background: #404040;
}

[data-theme="dark"] .info-item div {
    color: #e9ecef;
}

[data-theme="dark"] .data-category {
    background: #3a3a3a;
}

[data-theme="dark"] .data-category li {
    color: #adb5bd;
}

[data-theme="dark"] .purpose-item, 
[data-theme="dark"] .right-item {
    background: #3a3a3a;
    color: #e9ecef;
}

[data-theme="dark"] .purpose-item:hover, 
[data-theme="dark"] .right-item:hover {
    background: #404040;
}

[data-theme="dark"] .purpose-item p, 
[data-theme="dark"] .right-item p {
    color: #adb5bd;
}

[data-theme="dark"] .contact-info p {
    color: #e9ecef;
}

[data-theme="dark"] .response-time {
    color: #adb5bd;
}

/* KVKK Mobile Responsive */
@media (max-width: 768px) {
    .kvkk-info-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .kvkk-info-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .kvkk-info-card {
        min-height: auto;
        height: auto;
    }
    
    .kvkk-info-card .card-header {
        padding: 20px;
        gap: 12px;
    }
    
    .kvkk-info-card .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .kvkk-info-card .card-header h3 {
        font-size: 1.2rem;
    }
    
    .kvkk-info-card .card-content {
        padding: 20px;
    }
    
    .info-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .info-item i {
        font-size: 1rem;
        min-width: 18px;
    }
    
    .data-category {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .data-category h4 {
        font-size: 1rem;
    }
    
    .purpose-item, .right-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .purpose-item i, .right-item i {
        font-size: 1.1rem;
        min-width: 18px;
    }
    
    .purpose-item strong, .right-item strong {
        font-size: 1rem;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .contact-method {
        padding: 12px 18px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}


/* Videos Page Styles */
.videos-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B0000 100%);
    padding-top: 130px;
}

.videos-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.videos-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.videos-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.videos-hero-content {
    position: relative;
    z-index: 3;
    padding: 50px 0 100px 0;
}

.videos-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.video-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Videos Hero Features */
.videos-hero-section .hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.videos-hero-section .feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
}

.videos-hero-section .feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.videos-hero-section .feature-item i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
    color: #FFD700;
}

.videos-hero-section .feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

.category-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(160, 28, 32, 0.3);
}

.category-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(160, 28, 32, 0.3);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 400px));
    gap: 30px;
    justify-content: center;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 450px;
    display: flex;
    flex-direction: column;
}

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

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background: #8B0000;
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.video-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.video-description {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.video-category, .video-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-category i, .video-date i {
    color: var(--primary-color);
}

.no-videos {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-videos-icon {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 20px;
}

.no-videos h3 {
    color: #6c757d;
    margin-bottom: 10px;
}

.no-videos p {
    color: #adb5bd;
}

/* Video Modal */
.video-player-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Dark Theme Support */
[data-theme="dark"] .videos-section {
    background: #1a1a1a;
}

[data-theme="dark"] .video-card {
    background: #2d2d2d;
    border-color: #404040;
}

[data-theme="dark"] .video-title {
    color: #e9ecef;
}

[data-theme="dark"] .video-description {
    color: #adb5bd;
}

[data-theme="dark"] .video-meta {
    color: #adb5bd;
}

[data-theme="dark"] .category-btn {
    background: #2d2d2d;
    border-color: var(--primary-color);
    color: #e9ecef;
}

[data-theme="dark"] .category-btn:hover {
    background: var(--primary-color);
    color: white;
}

[data-theme="dark"] .no-videos h3 {
    color: #e9ecef;
}

[data-theme="dark"] .no-videos p {
    color: #adb5bd;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .videos-hero-section {
        padding-top: 110px;
    }
    
    .videos-hero-content {
        padding: 30px 0 60px 0;
    }
    
    .videos-section {
        padding: 60px 0;
    }
    
    .videos-container {
        padding: 0 15px;
    }
    
    .video-categories {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-content {
        padding: 20px;
    }
    
    .video-title {
        font-size: 1.2rem;
    }
    
    .video-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .video-player-container {
        height: 300px;
    }
    
    .videos-hero-section .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 20px;
    }
    
    .videos-hero-section .feature-item {
        padding: 12px 8px;
    }
    
    .videos-hero-section .feature-item i {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .videos-hero-section .feature-item span {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .videos-hero-section {
        padding-top: 100px;
    }
    
    .videos-hero-content {
        padding: 20px 0 50px 0;
    }
    
    .videos-hero-section .hero-main-title {
        font-size: 1.8rem;
    }
    
    .videos-hero-section .title-line-1 {
        font-size: 1.2rem;
    }
    
    .videos-hero-section .title-line-2 {
        font-size: 1.6rem;
    }
}

/* Modern History Section Styles */
.history-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.history-header {
    margin-bottom: 60px;
}

.history-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.history-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.history-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.history-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.history-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.history-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

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

.history-image-container:hover .history-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(139, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.history-image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.timeline-container {
    position: relative;
}

.timeline {
    position: relative;
    border-left: 4px solid var(--primary-color);
    margin-left: 40px;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: -52px;
    top: 0;
}

.marker-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 4px solid #f8f9fa;
}

.timeline-item:hover .marker-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

.timeline-content {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.timeline-year {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.timeline-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Dark Theme Support */
[data-theme="dark"] .history-section {
    background: #1a1a1a;
}

[data-theme="dark"] .timeline-content {
    background: #2d2d2d;
    color: #e9ecef;
}

[data-theme="dark"] .timeline-description {
    color: #adb5bd;
}

[data-theme="dark"] .history-subtitle {
    color: #adb5bd;
}

[data-theme="dark"] .marker-icon {
    border-color: #1a1a1a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .history-section {
        padding: 60px 0;
    }
    
    .history-title {
        font-size: 2rem;
    }
    
    .timeline-container {
        margin-top: 40px;
    }
    
    .timeline {
        margin-left: 30px;
        padding-left: 25px;
    }
    
    .timeline-item {
        margin-bottom: 25px;
    }
    
    .timeline-marker {
        left: -47px;
    }
    
    .marker-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        padding: 20px 25px;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-item:hover .timeline-content {
        transform: none;
    }
    
    .history-image img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .history-title {
        font-size: 1.8rem;
    }
    
    .timeline-content {
        padding: 15px 20px;
    }
    
    .timeline {
        margin-left: 25px;
        padding-left: 20px;
    }
    
    .timeline-item {
        margin-bottom: 20px;
    }
    
    .timeline-marker {
        left: -42px;
    }
    
    .marker-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .timeline-content {
        padding: 15px 20px;
    }
}

.kvkk-intro-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .kvkk-intro-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.kvkk-intro-card .card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.kvkk-intro-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.kvkk-intro-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.kvkk-section {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

[data-theme="dark"] .kvkk-section {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.kvkv-section-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kvkv-section-header:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* KVKK Section Header Styles - Clean Design */
.kvkk-section-header {
    background: var(--primary-color);
    color: white;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(160, 28, 32, 0.15);
    border: 1px solid rgba(160, 28, 32, 0.2);
}

.kvkk-section-header:hover {
    background: #8B0000;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(160, 28, 32, 0.25);
}

/* Dark Theme Support for KVKK Section Header */
[data-theme="dark"] .kvkk-section-header {
    background: #2d1b2e;
    border-color: rgba(45, 27, 46, 0.3);
    box-shadow: 0 4px 15px rgba(45, 27, 46, 0.2);
}

[data-theme="dark"] .kvkk-section-header:hover {
    background: #4a2c4a;
    box-shadow: 0 6px 20px rgba(45, 27, 46, 0.3);
}

.kvkk-section-header .header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.kvkk-section-header .header-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.kvkk-section-header:hover .header-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.kvkk-section-header .header-text h2 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.kvkk-section-header .header-text p {
    color: rgba(255, 255, 255, 0.85);
    margin: 3px 0 0 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.kvkk-section-header .toggle-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.kvkk-section-header.active .toggle-icon {
    transform: rotate(180deg);
}

.kvkk-section-header:hover .toggle-icon {
    color: white;
}

/* KVKK Collapsible Content Styles */
.kvkk-collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.kvkk-collapsible-content.active {
    max-height: none;
    padding: 30px;
    animation: slideDown 0.3s ease;
}

.kvkk-intro-card {
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.05) 0%, rgba(163, 67, 67, 0.1) 100%);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.kvkk-intro-card:hover {
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.08) 0%, rgba(163, 67, 67, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 0, 32, 0.15);
}

.kvkk-intro-card .card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.kvkk-intro-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.kvkk-intro-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.kvkk-intro-card p {
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

/* Dark Theme Support for KVKK Intro Card */
[data-theme="dark"] .kvkk-intro-card {
    background: linear-gradient(135deg, rgba(45, 27, 46, 0.3) 0%, rgba(74, 44, 74, 0.2) 100%);
    border: 1px solid #4a2c4a;
}

[data-theme="dark"] .kvkk-intro-card:hover {
    background: linear-gradient(135deg, rgba(45, 27, 46, 0.4) 0%, rgba(74, 44, 74, 0.3) 100%);
    box-shadow: 0 8px 25px rgba(45, 27, 46, 0.2);
}

[data-theme="dark"] .kvkk-intro-card .card-icon {
    color: #a855f7;
}

[data-theme="dark"] .kvkk-intro-card h3 {
    color: #a855f7;
}

.kvkv-section-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.kvkv-section-header .section-icon {
    font-size: 1.5rem;
    opacity: 0.9;
}

.kvkv-section-header .toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.kvkv-section-header.active .toggle-icon {
    transform: rotate(180deg);
}

.kvkv-section-content {
    padding: 30px;
    display: none;
}

.kvkv-section-content.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kvkv-section-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
}

.kvkv-section-content h4:first-child {
    margin-top: 0;
}

.kvkv-section-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.kvkv-section-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.kvkv-section-content ul li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.kvkv-section-content ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
    margin-top: 4px;
    min-width: 16px;
}

.kvkv-contact-card {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c3e50 100%);
    color: white;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 40px;
}

.kvkv-contact-card .card-header {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 25px;
    text-align: center;
}

.kvkv-contact-card .card-header .card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.kvkv-contact-card .card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.kvkv-contact-card .card-body {
    padding: 30px;
}

.kvkv-contact-card .card-body p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 25px;
}

.kvkv-contact-info {
    display: grid;
    gap: 15px;
}

.kvkv-contact-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.kvkv-contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.kvkv-contact-item i {
    font-size: 1.2rem;
    margin-right: 15px;
    color: var(--accent-color);
    min-width: 20px;
}

.kvkv-contact-item span {
    color: white;
    font-weight: 500;
}

/* Certificate Section Responsive */
@media (max-width: 768px) {
    .certificates-section {
        padding: 60px 0;
    }
    
    .certificates-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .certificate-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .certificate-image {
        min-height: 120px;
        padding: 15px;
    }
    
    .certificate-image img {
        max-height: 100px;
    }
    
    .certificate-info h5 {
        font-size: 1.1rem;
    }
    
    .certificate-info p {
        font-size: 0.9rem;
    }
    
    /* KVKK Mobile Responsive */
    .kvkk-hero-section {
        min-height: calc(100vh - 20px);
        margin-top: -50px;
        padding-top: 100px;
    }
    
    .kvkk-hero-content {
        padding: 2rem 0;
    }
    
    .kvkk-hero-section .hero-title {
        font-size: 2.2rem;
    }
    
    .kvkk-hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .kvkk-hero-section .hero-icon {
        font-size: 3rem;
    }
    
    .kvkk-content-section {
        padding: 60px 0;
    }
    
    .kvkk-intro-card {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .kvkk-intro-card h2 {
        font-size: 2rem;
    }
    
    .kvkk-intro-card .card-icon {
        font-size: 2.5rem;
    }
    
    .kvkv-section-header {
        padding: 20px;
    }
    
    .kvkv-section-header h3 {
        font-size: 1.2rem;
    }
    
    .kvkv-section-content {
        padding: 20px;
    }
    
    .kvkv-contact-card .card-header {
        padding: 20px;
    }
    
    .kvkv-contact-card .card-body {
        padding: 20px;
    }
    
    .kvkv-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .kvkv-contact-item i {
        margin-right: 0;
    }
    
    /* KVKK Section Header Mobile */
    .kvkk-section-header {
        padding: 15px 20px;
        margin-bottom: 15px;
    }
    
    .kvkk-section-header .header-content {
        gap: 12px;
    }
    
    .kvkk-section-header .header-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .kvkk-section-header .header-text h2 {
        font-size: 1.2rem;
    }
    
    .kvkk-section-header .header-text p {
        font-size: 0.85rem;
    }
    
    .kvkk-section-header .toggle-icon {
        font-size: 1rem;
    }
    
    .kvkk-collapsible-content.active {
        padding: 20px;
    }
    
    .kvkk-intro-card {
        padding: 25px 20px;
    }
    
    .kvkk-intro-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .certificates-section {
        padding: 40px 0;
    }
    
    .certificates-section .section-title {
        font-size: 1.75rem;
    }
    
    .certificate-card {
        padding: 20px 15px;
    }
    
    .kvkk-hero-section {
        margin-top: -50px;
        padding-top: 110px;
        min-height: calc(100vh - 10px);
    }
    
    .kvkk-hero-content {
        padding: 1.5rem 0;
    }
    
    .kvkk-hero-section .hero-title {
        font-size: 1.8rem;
    }
    
    .kvkk-intro-card {
        padding: 25px 15px;
    }
    
    .kvkk-intro-card h2 {
         font-size: 1.75rem;
     }
 }

/* Timeline Styles */
.timeline-section {
    padding: 40px 0;
}

.timeline-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
    margin-right: 0;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px white, 0 0 20px rgba(0,0,0,0.2);
    z-index: 2;
}

.timeline-marker .year {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.timeline-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

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

.timeline-card .card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.timeline-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.timeline-card p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Value Items */
.value-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(139, 0, 0, 0.1);
    transform: translateX(5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.value-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Timeline Mobile Responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-marker {
        left: 30px;
        width: 60px;
        height: 60px;
    }
    
    .timeline-marker .year {
        font-size: 0.9rem;
    }
    
    .timeline-card {
        padding: 20px;
    }
    
    .timeline-card .card-icon {
        font-size: 2rem;
    }
    
    .timeline-card h4 {
        font-size: 1.3rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .value-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
    }
    
    .value-icon i {
        font-size: 1.2rem;
    }
}

/* KVKK Hero Section Styles */
.kvkk-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100vw;
    margin: 0;
    padding: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -60px;
    padding-top: 120px;
}

.kvkk-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.kvkk-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 1;
}

.kvkk-hero-content {
    position: relative;
    z-index: 3;
    padding: 100px 0;
}

.kvkk-visual-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white-color);
}


.header-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.highlight-box {
    background: var(--gradient-secondary);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-box i {
    color: var(--secondary-color);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white-color);
    margin-bottom: 15px;
}


.purpose-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white-color);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.right-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white-color);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white-color);
    flex-shrink: 0;
}
.goals-section h3 {
    position: relative;
}

.goals-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.goal-card {
    background: var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.goal-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


.goal-card:hover .goal-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.4);
}

.goal-icon i {
    font-size: 2.2rem;
    color: var(--white-color);
}

.goal-card h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.goal-card:hover h4 {
    color: var(--secondary-color);
}

.goal-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Dark Theme Support for Goal Cards */
[data-theme="dark"] .goal-card {
    background: var(--bg-secondary);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .goal-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .goal-card h4 {
    color: #FF6B6B;
}

[data-theme="dark"] .goal-card:hover h4 {
    color: var(--secondary-color);
}

[data-theme="dark"] .goal-card p {
    color: var(--text-primary);
}

/* Goal Cards Responsive Design */
@media (max-width: 992px) {
    .goal-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .goal-icon {
        width: 80px;
        height: 80px;
    }
    
    .goal-icon i {
        font-size: 2rem;
    }
    
    .goals-section h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .goal-card {
        padding: 1.8rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .goal-icon {
        width: 70px;
        height: 70px;
    }
    
    .goal-icon i {
        font-size: 1.8rem;
    }
    
    .goal-card h4 {
        font-size: 1.4rem;
    }
    
    .goal-card p {
        font-size: 1rem;
    }
    
    .goals-section h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .goal-card {
        padding: 1.5rem 1rem;
    }
    
    .goal-icon {
        width: 60px;
        height: 60px;
    }
    
    .goal-icon i {
        font-size: 1.5rem;
    }
    
    .goal-card h4 {
        font-size: 1.3rem;
    }
    
    .goal-card p {
        font-size: 0.95rem;
    }
    
    .goals-section h3 {
        font-size: 1.8rem;
    }
}

/* Promo Video Section */
.promo-video-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.video-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.video-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.video-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: var(--white-color);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.instagram-embed-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    position: relative;
}

.instagram-iframe {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
    max-width: 540px;
    margin: 0 auto;
    display: block;
}

/* Dark theme iframe styling */
[data-theme="dark"] .instagram-iframe {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Dark theme support */
[data-theme="dark"] .promo-video-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .video-header .section-title {
    color: var(--white-color);
}

[data-theme="dark"] .video-header .section-subtitle {
    color: var(--text-secondary);
}

[data-theme="dark"] .video-container {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media (max-width: 992px) {
    .promo-video-section {
        padding: 4rem 0;
    }
    
    .video-header .section-title {
        font-size: 2.2rem;
    }
    
    .video-container {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .promo-video-section {
        padding: 3rem 0;
    }
    
    .video-header .section-title {
        font-size: 2rem;
    }
    
    .video-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .video-container {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .instagram-embed-wrapper {
        min-height: 500px;
    }
    
    .instagram-iframe {
        height: 500px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .promo-video-section {
        padding: 2rem 0;
    }
    
    .video-header .section-title {
        font-size: 1.8rem;
    }
    
    .video-header .section-subtitle {
        font-size: 1rem;
    }
    
    .video-container {
        padding: 0.75rem;
        border-radius: 12px;
    }
    
    .instagram-embed-wrapper {
        min-height: 400px;
    }
    
    .instagram-iframe {
        height: 400px;
        max-width: 100%;
    }
}

/* Sosyal Sorumluluk Hero Section Styles */
.sosyal-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--gradient-primary);
    width: 100vw;
    margin: 0;
    padding: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -120px;
    padding-top: 120px;
}

.sosyal-hero-container {
    position: relative;
    height: 100%;
}

.sosyal-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 1;
}

.sosyal-hero-content {
    position: relative;
    z-index: 10;
    padding: 6rem 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.sosyal-hero-section .container {
    max-width: 1200px;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
}

/* RTL Dil Desteği */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .navbar-nav {
    margin-right: 0;
    margin-left: auto;
}

[dir="rtl"] .dropdown-menu {
    right: 0;
    left: auto;
}

[dir="rtl"] .nav-link {
    padding-right: 0.5rem;
    padding-left: 1rem;
}

[dir="rtl"] .nav-link i {
    margin-left: 0.5rem;
    margin-right: 0;
}

[dir="rtl"] .btn i {
    margin-left: 0.5rem;
    margin-right: 0;
}

[dir="rtl"] .card-body {
    text-align: right;
}

[dir="rtl"] .form-label {
    text-align: right;
}

[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-right: 0;
    padding-left: 0.5rem;
    content: "\\";
}

[dir="rtl"] .modal-header .btn-close {
    margin: -0.5rem 0.5rem -0.5rem auto;
}

[dir="rtl"] .alert-dismissible .btn-close {
    right: auto;
    left: 0;
}

/* Dil değiştirici için özel stiller */
.language-switcher .dropdown-item.active {
    background-color: var(--bs-primary);
    color: white;
}

.language-switcher .dropdown-item:hover {
    background-color: var(--bs-light);
}

/* Sosyal Content Section */
.sosyal-content-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.sosyal-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sosyal-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.sosyal-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.sosyal-section-header .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Sosyal Visual Card */
.sosyal-visual-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.sosyal-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.sosyal-visual-card .visual-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sosyal-visual-card .visual-icon i {
    font-size: 2.5rem;
    color: white;
}

.sosyal-visual-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.sosyal-visual-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Projects Section */
.projects-section {
    margin-top: 4rem;
}

.project-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.project-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.project-icon i {
    font-size: 2rem;
    color: white;
}

.project-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.project-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Dark theme support for sosyal */
[data-theme="dark"] .sosyal-visual-card,
[data-theme="dark"] .project-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .sosyal-section-header h2,
[data-theme="dark"] .sosyal-visual-card h3,
[data-theme="dark"] .project-card h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .sosyal-section-header .lead,
[data-theme="dark"] .sosyal-visual-card p,
[data-theme="dark"] .project-card p {
    color: var(--text-primary);
}

/* Sosyal Hero Responsive Design */
@media (max-width: 992px) {
    .sosyal-hero-section {
        min-height: calc(100vh - 40px);
        margin-top: -120px;
        padding-top: 140px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .title-line-1 {
        font-size: 2rem;
    }
    
    .hero-stats-card {
        position: static;
        margin-top: 2rem;
    }
    
    .hero-image-main img {
        height: 300px;
    }
    
    .sosyal-visual-card {
        padding: 2rem;
    }
    
    .project-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .sosyal-hero-section {
        margin-top: -100px;
        padding-top: 100px;
        min-height: calc(100vh - 20px);
    }
    
    .sosyal-hero-content {
        padding: 2rem 1rem;
    }
    
    .sosyal-hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .title-line-1 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        justify-content: flex-start;
        width: 100%;
        min-width: auto;
    }
    
    .sosyal-section-header h2 {
        font-size: 2rem;
    }
    
    .sosyal-visual-card {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .sosyal-visual-card .visual-icon {
        width: 80px;
        height: 80px;
    }
    
    .sosyal-visual-card .visual-icon i {
        font-size: 2rem;
    }
    
    .project-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .project-icon {
        width: 60px;
        height: 60px;
    }
    
    .project-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .sosyal-hero-section {
        margin-top: -100px;
        padding-top: 110px;
        min-height: calc(100vh - 10px);
    }
    
    .sosyal-hero-content {
        padding: 1.5rem 0.75rem;
    }
    
    .hero-main-title {
        font-size: 1.75rem;
    }
    
    .title-line-1 {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 0.7rem 0.75rem;
        justify-content: flex-start;
    }
    
    .sosyal-section-header h2 {
        font-size: 1.75rem;
    }
    
    .sosyal-visual-card h3 {
        font-size: 1.5rem;
    }
    
    .project-card h4 {
         font-size: 1.2rem;
     }
 }

/* Sürdürülebilirlik Hero Section Styles */
.surdurulebilirlik-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--gradient-primary);
    width: 100vw;
    margin: 0;
    padding: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -120px;
    padding-top: 120px;
}

.surdurulebilirlik-hero-container {
    position: relative;
    height: 100%;
}

.surdurulebilirlik-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 1;
}

.surdurulebilirlik-hero-content {
    position: relative;
    z-index: 10;
    padding: 6rem 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.surdurulebilirlik-hero-section .container {
    max-width: 1200px;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
}

/* Sürdürülebilirlik Content Section */
.surdurulebilirlik-content-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.surdurulebilirlik-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.surdurulebilirlik-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.surdurulebilirlik-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.surdurulebilirlik-section-header .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Sürdürülebilirlik Visual Card */
.surdurulebilirlik-visual-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.surdurulebilirlik-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #228B22, #32CD32);
}

.surdurulebilirlik-visual-card .visual-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #228B22, #32CD32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.3);
}

.surdurulebilirlik-visual-card .visual-icon i {
    font-size: 2.5rem;
    color: white;
}

.surdurulebilirlik-visual-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.surdurulebilirlik-visual-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Sustainability Areas Section */
.sustainability-areas-section {
    margin-top: 4rem;
}

.sustainability-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sustainability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #228B22, #32CD32);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.sustainability-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #228B22, #32CD32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.sustainability-icon i {
    font-size: 2rem;
    color: white;
}

.sustainability-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.sustainability-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Dark theme support for sürdürülebilirlik */
[data-theme="dark"] .surdurulebilirlik-visual-card,
[data-theme="dark"] .sustainability-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .surdurulebilirlik-section-header h2,
[data-theme="dark"] .surdurulebilirlik-visual-card h3,
[data-theme="dark"] .sustainability-card h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .surdurulebilirlik-section-header .lead,
[data-theme="dark"] .surdurulebilirlik-visual-card p,
[data-theme="dark"] .sustainability-card p {
    color: var(--text-primary);
}

/* Sürdürülebilirlik Hero Responsive Design */
@media (max-width: 992px) {
    .surdurulebilirlik-hero-section {
        min-height: calc(100vh - 40px);
        margin-top: -120px;
        padding-top: 140px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .title-line-1 {
        font-size: 2rem;
    }
    
    .hero-stats-card {
        position: static;
        margin-top: 2rem;
    }
    
    .hero-image-main img {
        height: 300px;
    }
    
    .surdurulebilirlik-visual-card {
        padding: 2rem;
    }
    
    .sustainability-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .surdurulebilirlik-hero-section {
        margin-top: -100px;
        padding-top: 100px;
        min-height: calc(100vh - 20px);
    }
    
    .surdurulebilirlik-hero-content {
        padding: 2rem 1rem;
    }
    
    .surdurulebilirlik-hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .title-line-1 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        justify-content: flex-start;
        width: 100%;
        min-width: auto;
    }
    
    .surdurulebilirlik-section-header h2 {
        font-size: 2rem;
    }
    
    .surdurulebilirlik-visual-card {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .surdurulebilirlik-visual-card .visual-icon {
        width: 80px;
        height: 80px;
    }
    
    .surdurulebilirlik-visual-card .visual-icon i {
        font-size: 2rem;
    }
    
    .sustainability-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .sustainability-icon {
        width: 60px;
        height: 60px;
    }
    
    .sustainability-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .surdurulebilirlik-hero-section {
        margin-top: -100px;
        padding-top: 110px;
        min-height: calc(100vh - 10px);
    }
    
    .surdurulebilirlik-hero-content {
        padding: 1.5rem 0.75rem;
    }
    
    .hero-main-title {
        font-size: 1.75rem;
    }
    
    .title-line-1 {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 0.7rem 0.75rem;
        justify-content: flex-start;
    }
    
    .surdurulebilirlik-section-header h2 {
        font-size: 1.75rem;
    }
    
    .surdurulebilirlik-visual-card h3 {
        font-size: 1.5rem;
    }
    
    .sustainability-card h4 {
        font-size: 1.2rem;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Contact Page Hero Features */
.contact-hero-section .hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

.contact-hero-section .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(160, 28, 32, 0.15);
    padding: 1rem 1.25rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(160, 28, 32, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
    min-width: auto;
    box-shadow: 0 4px 15px rgba(160, 28, 32, 0.2);
}

.contact-hero-section .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #A01C20, #8B0000);
    border-radius: 15px 15px 0 0;
}

.contact-hero-section .feature-item:hover {
    background: rgba(160, 28, 32, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(160, 28, 32, 0.3);
    border-color: rgba(160, 28, 32, 0.5);
}

.contact-hero-section .feature-item i {
    font-size: 1.25rem;
    color: white;
    background: linear-gradient(45deg, #A01C20, #8B0000);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(160, 28, 32, 0.4);
    flex-shrink: 0;
}

.contact-hero-section .feature-item span {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 7/24 Badge için özel büyütme */
.contact-hero-section .feature-item:first-child {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(160, 28, 32, 0.4);
}

.contact-hero-section .feature-item:first-child i {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
}

.contact-hero-section .feature-item:first-child span {
    font-size: 1.1rem;
    font-weight: 800;
}

[data-theme="dark"] .contact-hero-section .feature-item {
    background: var(--card-bg);
    border: 1px solid rgba(var(--primary-color-rgb), 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-hero-section .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.2);
    background: var(--white-color);
}

[data-theme="dark"] .contact-hero-section .feature-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: var(--card-bg-hover);
}

.contact-hero-section .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.contact-hero-section .feature-icon i {
    color: var(--white-color);
    font-size: 1.5rem;
}

.contact-hero-section .feature-item:hover .feature-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.contact-hero-section .feature-content h4 {
    color: #333333;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-hero-section .feature-content p {
    color: #666666;
    margin: 0;
    font-size: 0.9rem;
}

[data-theme="dark"] .contact-hero-section .feature-content h4 {
    color: #ffffff;
}

[data-theme="dark"] .contact-hero-section .feature-content p {
    color: #cccccc;
}

.contact-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 1;
}

.contact-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/contact-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

[data-theme="dark"] .contact-hero-background {
    background: var(--gradient-primary);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.contact-quick-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quick-info-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.quick-info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.info-content h5 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.info-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Content Section */
.contact-content-section {
    padding: 5rem 0;
    background: var(--light-color);
}

[data-theme="dark"] .contact-content-section {
    background: var(--bg-primary);
}

.contact-form-wrapper {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

[data-theme="dark"] .contact-form-wrapper {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-wrapper .section-header {
    margin-bottom: 2rem;
    text-align: left;
}

.contact-form-wrapper .section-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper .section-header p {
    color: var(--text-secondary);
    margin: 0;
}

[data-theme="dark"] .contact-form-wrapper .section-header h2 {
    color: var(--accent-color);
}

[data-theme="dark"] .contact-form-wrapper .section-header p {
    color: var(--text-secondary);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

[data-theme="dark"] .contact-form .form-group label {
    color: var(--text-primary);
}

.contact-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--white-color);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

[data-theme="dark"] .contact-form .form-control {
    background: var(--bg-primary);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

[data-theme="dark"] .contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-check {
    margin-bottom: 1.5rem;
}

.contact-form .form-check-input {
    margin-right: 0.5rem;
}

.contact-form .form-check-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

[data-theme="dark"] .contact-form .form-check-label {
    color: var(--text-secondary);
}

[data-theme="dark"] .contact-form .form-check-label a {
    color: var(--accent-color);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    position: sticky;
    top: 2rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(160, 28, 32, 0.3);
    border: 2px solid rgba(160, 28, 32, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A01C20, #8B0000);
    border-radius: 20px 20px 0 0;
}

[data-theme="dark"] .contact-info-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(160, 28, 32, 0.2);
}

.header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #A01C20, #8B0000);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(160, 28, 32, 0.4);
}

.header-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #A01C20;
    margin: 0;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(160, 28, 32, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(160, 28, 32, 0.15);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(160, 28, 32, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(160, 28, 32, 0.2);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #A01C20, #8B0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(160, 28, 32, 0.3);
}

.info-icon i {
    font-size: 1.25rem;
    color: white;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #A01C20;
}

.info-content p {
    font-size: 0.875rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.contact-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

[data-theme="dark"] .contact-info-card h3 {
    color: var(--accent-color);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

[data-theme="dark"] .contact-detail {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    color: var(--white-color);
    font-size: 1.25rem;
}

.contact-detail-content h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-detail-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

[data-theme="dark"] .contact-detail-content h5 {
    color: var(--text-primary);
}

[data-theme="dark"] .contact-detail-content p {
    color: var(--text-secondary);
}

.contact-social-card {
    background: var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
}

.contact-social-card h4 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.contact-social-card .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-social-card .social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-social-card .social-link:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Map Section */
.contact-map-section {
    position: relative;
}

.map-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    max-width: 300px;
}

[data-theme="dark"] .map-overlay {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.map-info p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

[data-theme="dark"] .map-info h3 {
    color: var(--accent-color);
}

[data-theme="dark"] .map-info p {
    color: var(--text-secondary);
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: var(--transition);
}

.map-container iframe:hover {
    filter: grayscale(0%);
}

/* Alert Messages */
.alert-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    animation: slideInRight 0.3s ease-out;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

[data-theme="dark"] .alert-success {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border-color: rgba(39, 174, 96, 0.3);
}

[data-theme="dark"] .alert-danger {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.3);
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.btn-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design for Contact */
@media (max-width: 992px) {
    .contact-hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .contact-info-sidebar {
        position: static;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 1rem;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .contact-hero-content {
        padding: 1rem 0;
    }
    
    .contact-quick-info {
        padding: 1.5rem;
    }
    
    .quick-info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-content-section {
        padding: 3rem 0;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-detail {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .map-wrapper {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        padding: 2rem 0;
    }
    
    .contact-quick-info {
        padding: 1rem;
    }
    
    .quick-info-item {
        padding: 0.75rem;
    }
    
    .contact-form-wrapper {
        padding: 1rem;
    }
    
    .contact-info-card {
        padding: 1rem;
    }
    
    .contact-social-card {
        padding: 1.5rem;
    }
    
    .contact-social-card .social-links {
        gap: 0.75rem;
    }
    
    .contact-social-card .social-link {
        width: 45px;
        height: 45px;
    }
}

/* ===== SERTİFİKA MODAL STİLLERİ ===== */
/* SERTİFİKA MODAL STİLLERİ - TEMA UYUMLU */
.certificates-section {
    background: var(--bg-primary);
    padding: 4rem 0;
}

.certificate-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--bg-secondary);
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.certificate-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}

.certificate-image img {
    transition: var(--transition);
    width: 100%;
    height: 280px; /* more vertical space */
    object-fit: contain; /* show entire document */
    background-color: transparent;
}

.certificate-clickable {
    cursor: pointer !important;
}

.certificate-clickable:hover {
    transform: scale(1.05);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}


.certificate-overlay i {
    color: var(--white-color);
    font-size: 2rem;
    transform: scale(0.8);
    transition: var(--transition);
}

.certificate-image:hover .certificate-overlay {
    opacity: 1;
}

.certificate-image:hover .certificate-overlay i {
    transform: scale(1);
}

.certificate-info {
    padding: 1.5rem;
    text-align: center;
}

.certificate-info h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.certificate-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}
/* SERTİFİKA MODAL TEMA UYUMLU STİLLERİ */
#certificateModal .modal-content {
    border: none;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-2xl);
    background: var(--bg-secondary);
    color: var(--text-primary);
}

#certificateModal .modal-header {
    background: var(--gradient-primary);
    color: var(--white-color);
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    border-bottom: 1px solid var(--border-color);
}

#certificateModal .modal-header .btn-close {
    filter: invert(1);
    opacity: 1;
}

#certificateModal .modal-body {
    padding: 2rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

#certificateModalImage {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

#certificateModalImage:hover {
    transform: scale(1.02);
}

#certificateModalTitle {
    color: var(--text-primary);
    font-weight: 700;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.5rem;
}

#certificateModalSubtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

#certificateModalLinkBtn {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    color: white;
}

#certificateModalLinkBtn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* Koyu tema için özel stiller */
[data-theme="dark"] #certificateModal .modal-content {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

[data-theme="dark"] #certificateModal .modal-body {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

[data-theme="dark"] #certificateModalTitle {
    color: var(--text-primary);
}

[data-theme="dark"] #certificateModalSubtitle {
    color: var(--text-primary);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    #certificateModal .modal-body {
        padding: 1rem;
    }
    
    #certificateModalImage {
        max-height: 50vh;
    }
    
    #certificateModalTitle {
        font-size: 1.3rem;
    }
    
    #certificateModalSubtitle {
        font-size: 1rem;
    }
}

    .language-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 9999; /* Navbar'dan daha yüksek z-index */
        justify-content: center;
        align-items: center;
    }
    
    .language-modal.active {
        display: flex;
    }
    
    .language-modal-content {
        background-color: #fff;
        border-radius: 8px;
        padding: 20px;
        width: 90%;
        max-width: 400px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        position: relative;
    }
    
    .language-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    
    .language-modal-title {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
    }
    
    .language-modal-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #777;
    }
    
    .language-options {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .language-option {
        display: flex;
        align-items: center;
        padding: 10px 15px;
        text-decoration: none;
        color: #333;
        border-radius: 4px;
        transition: background-color 0.2s;
    }
    
    .language-option:hover {
        background-color: #f5f5f5;
    }
    
    .language-option.active {
        background-color: #e9ecef;
        font-weight: 600;
    }
    
    .language-flag {
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    /* Masaüstü görünümü için düzenlemeler */

        /* Yeni Mobil Menü Stilleri */
        .ypotel-mobile-menu {
            display: none;
        }
        
        
        /* Tablet ve Mobil - Mobil menüyü göster */
        @media (max-width: 991.98px) {
            /* Mevcut mobil menüyü gizle */
            .navbar-toggler, .navbar-close {
                display: none !important;
            }
            
            /* Navigation Menu'i sadece masaüstünde göster */
            .navbar-collapse {
                display: none !important;
            }
            
            /* Yeni mobil menüyü göster */
            .ypotel-mobile-menu {
                display: block;
                position: fixed;
                bottom: 20px;
                right: 20px;
                z-index: 10000;
            }
            
            /* Ana menü butonu - Tablet */
            .ypotel-menu-btn {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                color: white;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 24px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
                cursor: pointer;
                transition: all 0.3s ease;
                z-index: 10001;
                position: relative;
            }
            
            /* Mobil (max-width: 767px) */
            @media (max-width: 767px) {
                .ypotel-menu-btn {
                    width: 55px;
                    height: 55px;
                    font-size: 22px;
                    bottom: 15px;
                    right: 15px;
                }
            }
            
            /* Small Mobile (max-width: 480px) */
            @media (max-width: 480px) {
                .ypotel-menu-btn {
                    width: 50px;
                    height: 50px;
                    font-size: 20px;
                    bottom: 10px;
                    right: 10px;
                }
            }
            
            .ypotel-menu-btn.active {
                transform: rotate(45deg);
                background: linear-gradient(135deg, var(--gold-dark), var(--gold-color));
            }
            
            /* Menü items - Tablet */
            .ypotel-menu-items {
                position: absolute;
                bottom: 70px;
                right: 0;
                width: 220px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(20px);
                transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                z-index: 10002;
            }
            
            /* Mobil (max-width: 767px) */
            @media (max-width: 767px) {
                .ypotel-menu-items {
                    width: 200px;
                    bottom: 65px;
                }
            }
            
            /* Small Mobile (max-width: 480px) */
            @media (max-width: 480px) {
                .ypotel-menu-items {
                    width: 180px;
                    bottom: 60px;
                }
            }
            
            .ypotel-menu-items.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            
            .ypotel-menu-item {
                display: flex;
                align-items: center;
                padding: 10px 12px;
                margin-bottom: 8px;
                background: white;
                border-radius: 8px;
                box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
                transform: translateX(20px);
                opacity: 0;
                transition: all 0.3s ease;
                color: var(--text-primary);
                text-decoration: none;
                font-size: 14px;
            }
            
            /* Mobil (max-width: 767px) */
            @media (max-width: 767px) {
                .ypotel-menu-item {
                    padding: 8px 10px;
                    margin-bottom: 6px;
                    font-size: 13px;
                }
            }
            
            /* Small Mobile (max-width: 480px) */
            @media (max-width: 480px) {
                .ypotel-menu-item {
                    padding: 6px 8px;
                    margin-bottom: 5px;
                    font-size: 12px;
                }
            }
            
            .ypotel-menu-items.active .ypotel-menu-item {
                transform: translateX(0);
                opacity: 1;
            }
            
            .ypotel-menu-item i {
                margin-right: 10px;
                font-size: 16px;
                width: 20px;
                text-align: center;
                color: #D4AF37 !important; /* Altın rengi */
            }
            
            .ypotel-menu-item span {
                font-weight: 600;
                color: #D4AF37 !important; /* Altın rengi */
                background: linear-gradient(
                    45deg, 
                    #fff 10%,   /* parlama için beyaz kısım */
                    #ffd700 30%, 
                    #daa520 50%, 
                    #ffd700 70%, 
                    #fff 90%
                );
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                background-size: 200% auto;
                animation: shine 3s linear infinite;
            }
            
            .ypotel-menu-item.reservation {
                background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                border: none;
                color: var(--white-color);
            }
            
            .ypotel-menu-item.reservation i,
            .ypotel-menu-item.reservation span {
                color: var(--white-color) !important;
            }
            
            /* Dil ve tema seçenekleri */
            .ypotel-menu-options {
                display: flex;
                justify-content: space-around;
                margin-top: 12px;
                opacity: 0;
                transform: translateY(10px);
                transition: all 0.4s ease 0.2s;
            }
            
            .ypotel-menu-items.active .ypotel-menu-options {
                opacity: 1;
                transform: translateY(0);
            }
            
            .ypotel-option-btn {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: white;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
                cursor: pointer;
                transition: all 0.3s ease;
                color: #D4AF37 !important; /* Altın rengi */
            }
            
            .ypotel-option-btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
                background: var(--primary-color);
                color: white;
            }
            
            /* Kapanış alanı - z-index düzeltildi */
            .ypotel-menu-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 9999; /* Menüden daha düşük, diğer içerikten yüksek */
            }
            
            .ypotel-menu-overlay.active {
                opacity: 1;
                visibility: visible;
            }
            
            /* Animasyon gecikmeleri */
            .ypotel-menu-item:nth-child(1) { transition-delay: 0.05s; }
            .ypotel-menu-item:nth-child(2) { transition-delay: 0.1s; }
            .ypotel-menu-item:nth-child(3) { transition-delay: 0.15s; }
            .ypotel-menu-item:nth-child(4) { transition-delay: 0.2s; }
            .ypotel-menu-item:nth-child(5) { transition-delay: 0.25s; }
            .ypotel-menu-item:nth-child(6) { transition-delay: 0.3s; }
            
            /* Koyu tema desteği */
            body[data-theme="dark"] .ypotel-menu-item {
                background: #2d3748;
                color: #e2e8f0;
            }
            
            body[data-theme="dark"] .ypotel-menu-item span {
                color: #FFD700 !important; /* Açık altın rengi */
                background: linear-gradient(
                    45deg, 
                    #fff 10%,   /* parlama için beyaz kısım */
                    #ffd700 30%, 
                    #daa520 50%, 
                    #ffd700 70%, 
                    #fff 90%
                );
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                background-size: 200% auto;
                animation: shine 3s linear infinite;
            }
            
            body[data-theme="dark"] .ypotel-menu-item i {
                color: #FFD700 !important; /* Açık altın rengi */
            }
            
            body[data-theme="dark"] .ypotel-option-btn {
                background: #2d3748;
                color: #FFD700 !important; /* Açık altın rengi */
            }
            
            body[data-theme="dark"] .ypotel-option-btn:hover {
                background: var(--primary-color);
                color: white;
            }

            /* Dil Seçimi Modal Stilleri */
            .language-modal {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.7);
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 10010;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            .language-modal.active {
                opacity: 1;
                visibility: visible;
            }
            
            .language-modal-content {
                background: white;
                border-radius: 12px;
                padding: 20px;
                width: 90%;
                max-width: 320px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
                transform: translateY(-20px);
                transition: all 0.3s ease;
            }
            
            .language-modal.active .language-modal-content {
                transform: translateY(0);
            }
            
            .language-modal-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 15px;
                padding-bottom: 10px;
                border-bottom: 1px solid var(--border-color);
            }
            
            .language-modal-title {
                font-size: 18px;
                font-weight: 600;
                color: var(--text-primary);
            }
            
            .language-modal-close {
                background: none;
                border: none;
                font-size: 20px;
                cursor: pointer;
                color: var(--text-secondary);
            }
            
            .language-options {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
            
            .language-option {
                display: flex;
                align-items: center;
                padding: 12px 15px;
                border-radius: 8px;
                background: var(--bg-secondary);
                text-decoration: none;
                color: var(--text-primary);
                transition: all 0.2s ease;
            }
            
            .language-option:hover {
                background: var(--primary-color);
                color: white;
            }
            
            .language-option.active {
                background: var(--primary-color);
                color: white;
            }

            .language-flag {
                margin-right: 10px;
                font-size: 20px;
            }
            
            body[data-theme="dark"] .language-modal-content {
                background: #2d3748;
            }
            
            body[data-theme="dark"] .language-modal-title {
                color: #e2e8f0;
            }
            
            body[data-theme="dark"] .language-option {
                background: #4a5568;
                color: #e2e8f0;
            }
        }

        /* Mobil Dropdown Menü Stilleri */
        .ypotel-menu-dropdown {
            position: relative;
        }

        /* Bootstrap link stillerini override et */
        .ypotel-dropdown-menu a,
        .ypotel-dropdown-menu a:link,
        .ypotel-dropdown-menu a:visited,
        .ypotel-dropdown-menu a:hover,
        .ypotel-dropdown-menu a:active,
        .ypotel-dropdown-menu a:focus {
            color: #D4AF37 !important; /* Altın rengi */
            text-decoration: none !important;
        }

        body[data-theme="dark"] .ypotel-dropdown-menu a,
        body[data-theme="dark"] .ypotel-dropdown-menu a:link,
        body[data-theme="dark"] .ypotel-dropdown-menu a:visited,
        body[data-theme="dark"] .ypotel-dropdown-menu a:hover,
        body[data-theme="dark"] .ypotel-dropdown-menu a:active,
        body[data-theme="dark"] .ypotel-dropdown-menu a:focus {
            color: #FFD700 !important; /* Açık altın rengi */
            text-decoration: none !important;
            }

            .ypotel-dropdown-toggle {
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .ypotel-dropdown-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .ypotel-dropdown-toggle i {
            color: #D4AF37 !important; /* Altın rengi */
            }

            .ypotel-dropdown-toggle span {
            color: #D4AF37 !important; /* Altın rengi */
            font-weight: 600;
            background: linear-gradient(
                45deg, 
                #fff 10%,   /* parlama için beyaz kısım */
                #ffd700 30%, 
                #daa520 50%, 
                #ffd700 70%, 
                #fff 90%
            );
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shine 3s linear infinite;
            }

            .ypotel-dropdown-arrow {
                margin-left: auto;
            transition: transform 0.3s ease;
            font-size: 12px;
            }

        .ypotel-dropdown-toggle.active .ypotel-dropdown-arrow {
                transform: rotate(180deg);
            }

        .ypotel-dropdown-menu {
                max-height: 0;
                overflow: hidden;
            transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
            background: rgba(0, 0, 0, 0.1);
            margin: 0 10px;
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
        }

        .ypotel-dropdown-menu.active {
            max-height: 60vh;
            opacity: 1;
            visibility: visible;
            margin-top: 5px;
            margin-bottom: 5px;
            transform: translateY(0);
            overflow-y: auto;
            overflow-x: hidden;
        }

        /* Custom scrollbar for dropdown */
        .ypotel-dropdown-menu::-webkit-scrollbar {
            width: 4px;
        }

        .ypotel-dropdown-menu::-webkit-scrollbar-track {
            background: transparent;
        }

        .ypotel-dropdown-menu::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
        }

        .ypotel-dropdown-menu::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
            }

            .ypotel-dropdown-item {
                display: flex;
                align-items: center;
            padding: 12px 20px;
                text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 6px;
            margin: 2px 5px;
            position: relative;
        }

        .ypotel-dropdown-item:hover {
            background: rgba(255, 255, 255, 0.15);
            text-decoration: none;
        }

        .ypotel-dropdown-item {
            color: #D4AF37 !important; /* Altın rengi */
            }

            .ypotel-dropdown-item i {
            margin-right: 12px;
                font-size: 14px;
                width: 16px;
                text-align: center;
            color: #D4AF37 !important; /* Altın rengi */
        }

        .ypotel-dropdown-item span {
            font-size: 14px;
            font-weight: 600;
            color: #D4AF37 !important; /* Altın rengi */
            background: linear-gradient(
                45deg, 
                #fff 10%,   /* parlama için beyaz kısım */
                #ffd700 30%, 
                #daa520 50%, 
                #ffd700 70%, 
                #fff 90%
            );
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shine 3s linear infinite;
        }

        .ypotel-dropdown-item:hover {
            color: #D4AF37 !important; /* Altın rengi */
        }

        .ypotel-dropdown-item:hover i {
            color: #D4AF37 !important; /* Altın rengi */
            }

            .ypotel-dropdown-item:hover span {
            color: #D4AF37 !important; /* Altın rengi */
        }

        /* Dark theme için dropdown stilleri */
        body[data-theme="dark"] .ypotel-dropdown-menu {
            background: rgba(0, 0, 0, 0.3);
        }

        body[data-theme="dark"] .ypotel-dropdown-item {
            color: #FFD700 !important; /* Açık altın rengi */
        }

        body[data-theme="dark"] .ypotel-dropdown-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #FFD700 !important; /* Açık altın rengi */
        }

        body[data-theme="dark"] .ypotel-dropdown-item i {
            color: #FFD700 !important; /* Açık altın rengi */
        }

        body[data-theme="dark"] .ypotel-dropdown-item span {
            color: #FFD700 !important; /* Açık altın rengi */
            background: linear-gradient(
                45deg, 
                #fff 10%,   /* parlama için beyaz kısım */
                #ffd700 30%, 
                #daa520 50%, 
                #ffd700 70%, 
                #fff 90%
            );
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shine 3s linear infinite;
        }

        body[data-theme="dark"] .ypotel-dropdown-item:hover i {
            color: #FFD700 !important; /* Açık altın rengi */
        }

        body[data-theme="dark"] .ypotel-dropdown-item:hover span {
            color: #FFD700 !important; /* Açık altın rengi */
        }

        body[data-theme="dark"] .ypotel-dropdown-toggle i {
            color: #FFD700 !important; /* Açık altın rengi */
        }

        body[data-theme="dark"] .ypotel-dropdown-toggle span {
            color: #FFD700 !important; /* Açık altın rengi */
            background: linear-gradient(
                45deg, 
                #fff 10%,   /* parlama için beyaz kısım */
                #ffd700 30%, 
                #daa520 50%, 
                #ffd700 70%, 
                #fff 90%
            );
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shine 3s linear infinite;
        }

        /* Dark theme scrollbar */
        body[data-theme="dark"] .ypotel-dropdown-menu::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
        }

        body[data-theme="dark"] .ypotel-dropdown-menu::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        /* Animasyon gecikmeleri */
        .ypotel-dropdown-item:nth-child(1) { transition-delay: 0.05s; }
        .ypotel-dropdown-item:nth-child(2) { transition-delay: 0.1s; }
        .ypotel-dropdown-item:nth-child(3) { transition-delay: 0.15s; }
        .ypotel-dropdown-item:nth-child(4) { transition-delay: 0.2s; }
        .ypotel-dropdown-item:nth-child(5) { transition-delay: 0.25s; }
        .ypotel-dropdown-item:nth-child(6) { transition-delay: 0.3s; }
        .ypotel-dropdown-item:nth-child(7) { transition-delay: 0.35s; }
        .ypotel-dropdown-item:nth-child(8) { transition-delay: 0.4s; }

        /* Responsive ayarlar */
        @media (max-width: 576px) {
            .ypotel-dropdown-menu {
                margin: 0 5px;
            }
            
            .ypotel-dropdown-menu.active {
                max-height: 50vh;
            }
            
            .ypotel-dropdown-item {
                padding: 10px 15px;
                margin: 1px 3px;
            }
            
            .ypotel-dropdown-item i {
                margin-right: 10px;
                font-size: 13px;
            }
            
            .ypotel-dropdown-item span {
                font-size: 13px;
            }
        }

        /* Çok küçük ekranlar için */
        @media (max-width: 480px) {
            .ypotel-dropdown-menu.active {
                max-height: 45vh;
            }
            
            .ypotel-dropdown-item {
                padding: 8px 12px;
                margin: 1px 2px;
            }
            
            .ypotel-dropdown-item i {
                margin-right: 8px;
                font-size: 12px;
            }
            
            .ypotel-dropdown-item span {
                font-size: 12px;
            }
        }

        /* Yatay ekranlar için */
        @media (max-height: 500px) and (orientation: landscape) {
            .ypotel-dropdown-menu.active {
                max-height: 40vh;
            }
        }

        /* YP Timeline Özel Stilleri */
.yp-timeline {
    position: relative;
    padding-left: 0;
    list-style: none;
  }
  
  .yp-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 4px;
    background: #d6d6d6;
  }
  
  .yp-timeline-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
  }
  
  .yp-timeline-marker {
    position: relative;
    z-index: 2;
    margin-right: 20px;
    flex-shrink: 0;
  }
  
  .yp-timeline-marker .marker-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #c19b76;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px #f8f5f0;
  }
  
  .yp-timeline-content {
    flex-grow: 1;
    background: #f8f5f0;
    padding: 20px;
    border-radius: 8px;
    position: relative;
  }
  
  .yp-timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #f8f5f0;
  }
  
  .yp-timeline-year {
    color: #c19b76;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
  }
  
  .yp-timeline-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .yp-timeline-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  /* Dikey hizalamayı düzeltmek için */
  .row.align-items-center {
    align-items: flex-start !important;
  }
  
  /* Responsive düzenlemeler */
  @media (max-width: 991px) {
    .yp-timeline::before {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .yp-timeline-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .yp-timeline-marker {
      margin-right: 0;
      margin-bottom: 15px;
    }
    
    .yp-timeline-content::before {
      display: none;
    }
  }

/* Spa & Wellness Styles */
.spa-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.spa-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.spa-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/spa-bg.jpg') center/cover no-repeat;
    z-index: 1;
}

.spa-hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.spa-services-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.spa-intro-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spa-intro-card .card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

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

.service-category {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.category-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

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

.service-item h5 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-item p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.price {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.spa-info-section {
    padding: 80px 0;
    background: white;
}

.spa-info-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.spa-info-content .lead {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.spa-info-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.spa-stats .stat-item {
    text-align: center;
}

.spa-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.spa-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.spa-info-card {
    background: var(--gradient-primary);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(128, 0, 32, 0.3);
}

.spa-info-card .card-icon {
    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 20px;
    font-size: 2rem;
}

.spa-info-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.spa-info-card p {
    font-size: 1.1rem;
    color: white !important;
    opacity: 0.9;
    line-height: 1.6;
}

.spa-features-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.spa-contact-section {
    padding: 80px 0;
    background: white;
}

.contact-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-card .text-muted {
    color: var(--text-secondary) !important;
    font-size: 0.95rem;
}

/* Responsive Design for Spa */
@media (max-width: 768px) {
    .spa-hero-content {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-items {
        grid-template-columns: 1fr;
    }
    
    .spa-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .spa-info-content h2 {
        font-size: 2rem;
    }
    
    .spa-intro-card,
    .service-category,
    .contact-card {
        padding: 25px;
    }
}

/* ========================================
   HEADER OPTIMIZATION FOR 1600x900
   ======================================== */



/* Fix for RTL languages (Arabic) */
[dir="rtl"] .navbar-nav {
    direction: rtl;
}

[dir="rtl"] .navbar-nav .nav-item {
    margin-right: 0;
    margin-left: 0.1rem;
}

[dir="rtl"] .navbar-nav .nav-item:last-child {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* Ensure language dropdown doesn't shift */
.navbar-nav .nav-item.dropdown .nav-link {
    min-width: 120px;
    justify-content: center;
}

/* Modern Hover Effects */
.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 8px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8);
}

.navbar-nav .nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-nav .nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Modern Icon Effects */
.navbar-nav .nav-link i {
    margin-right: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover i {
    transform: scale(1.1) rotate(3deg);
    color: #ffffff;
}

.navbar-nav .nav-link.active i {
    transform: scale(1.05);
    color: #ffffff;
}

/* Modern Dropdown Menus */
.navbar-nav .dropdown-menu {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.98));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 0.8rem 0;
    backdrop-filter: blur(10px);
    min-width: 220px;
}

.navbar-nav .dropdown-item {
    color: #FFD700;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    margin: 0.1rem 0.8rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.navbar-nav .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

.navbar-nav .dropdown-item:hover::before {
    left: 100%;
}

.navbar-nav .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    color: #FFD700;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

/* Logo positioning */
.navbar-brand {
    flex-shrink: 0;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand .logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}



/* Fix for dropdown text */
.navbar-nav .dropdown-toggle::after {
    margin-left: 0.3em;
}

/* Ensure container has proper spacing */
.navbar .container,
.navbar .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
}


/* Container-fluid specific optimizations */
.navbar .container-fluid {
    max-width: 100%;
    margin: 0 auto;
}


/* Modern Reservation Button */
.navbar-nav .reservation-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: var(--white-color) !important;
    border: none !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 0.8rem 2rem !important;
    margin-left: 1rem !important;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
    letter-spacing: 0.5px;
}

.navbar-nav .reservation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.5);
    background: var(--primary-color) !important;
    color: #ffffff !important;
}

.navbar-nav .reservation-btn i {
    margin-right: 0.5rem;
    color: var(--white-color) !important;
}

.navbar-nav .reservation-btn span {
    color: var(--white-color) !important;
    font-size: 1rem;
    font-weight: 700;
}

.navbar-nav .reservation-btn {
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: unset !important;
    max-width: none !important;
    min-width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.navbar-nav .nav-item:last-child {
    margin-left: auto !important;
    flex-shrink: 0 !important;
    order: 999 !important;
}

/* Ensure language button stays on the right */
.navbar-nav .nav-item.dropdown:last-child {
    margin-left: auto !important;
    order: 999 !important;
}

/* Force language button to stay on the right side */
.navbar-nav .nav-item:last-of-type {
    margin-left: auto !important;
    order: 999 !important;
    flex-shrink: 0 !important;
}

/* Prevent language button from shifting */
.navbar-nav .nav-item.dropdown:last-child {
    margin-left: auto !important;
    flex-shrink: 0 !important;
    order: 999 !important;
}

/* Ensure navbar-nav uses flexbox properly */

/* Hotelrunners Widget Styles */
.hotelrunners-widget-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.hotelrunners-widget-container:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Hotelrunners widget responsive ayarları */
#hr_search_widget {
    min-height: 500px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Hotelrunners widget içindeki form elemanları */
#hr_search_widget input,
#hr_search_widget select,
#hr_search_widget button {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

#hr_search_widget input:focus,
#hr_search_widget select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
    outline: none;
}

#hr_search_widget button {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#hr_search_widget button:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Hotelrunners widget içindeki tarih seçicileri */
#hr_search_widget input[type="date"] {
    background: white;
    cursor: pointer;
}

#hr_search_widget input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    color: #007bff;
}

/* Hotelrunners widget içindeki dropdown'lar */
#hr_search_widget select {
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Dropdown toggle butonları */
#hr_search_widget .dropdown-toggle {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    position: relative;
}

#hr_search_widget .dropdown-toggle:after {
    content: '▾';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #007bff;
    font-size: 16px;
}

#hr_search_widget .dropdown-toggle:hover {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

#hr_search_widget .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

#hr_search_widget .dropdown-menu.show {
    display: block;
}

#hr_search_widget .dropdown-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

#hr_search_widget .dropdown-item:hover {
    background: #f8f9fa;
    color: #007bff;
}

#hr_search_widget .dropdown-item:last-child {
    border-bottom: none;
}

/* Hotelrunners widget içindeki label'lar */
#hr_search_widget label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

/* Hotelrunners widget içindeki form grupları */
#hr_search_widget .form-group,
#hr_search_widget .form-row,
#hr_search_widget .row {
    margin-bottom: 15px;
}

/* Hotelrunners widget içindeki grid layout */
#hr_search_widget .col-md-6,
#hr_search_widget .col-sm-6,
#hr_search_widget .col-12 {
    padding: 0 10px;
}

/* Hotelrunners widget içindeki butonlar */
#hr_search_widget .btn-primary,
#hr_search_widget .btn-search,
#hr_search_widget button[type="submit"] {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#hr_search_widget .btn-primary:hover,
#hr_search_widget .btn-search:hover,
#hr_search_widget button[type="submit"]:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Hotelrunners widget içindeki input grupları */
#hr_search_widget .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

#hr_search_widget .input-group .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

/* Hotelrunners widget içindeki icon'lar */
#hr_search_widget .fa,
#hr_search_widget .fas,
#hr_search_widget .far,
#hr_search_widget .fab {
    color: #007bff;
    margin-right: 8px;
}

/* Custom Rezervasyon Formu */
.custom-reservation-form {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.custom-reservation-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.custom-reservation-form .form-control,
.custom-reservation-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.custom-reservation-form .form-control:focus,
.custom-reservation-form .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.custom-reservation-form .btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.custom-reservation-form .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Arama sonuçları stilleri */
.search-results {
    border-top: 2px solid #e9ecef;
    padding-top: 20px;
}

.room-card {
    border: 1px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.room-card .card-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.room-card .card-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.room-card .amenities .badge {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;
    margin-bottom: 5px;
}

.room-card .text-primary {
    font-size: 24px;
    font-weight: 700;
    color: #007bff !important;
}

.room-card .btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.room-card .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Hotelrunners Gömülü Sayfa Stilleri */
.hotelrunners-embedded-page {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.embedded-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.embedded-header h3 {
    color: white !important;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.75rem;
}

.embedded-header p {
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.embedded-iframe-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 2px solid #e9ecef;
    background: #f8f9fa;
}

.embedded-iframe-container iframe {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
}

.embedded-iframe-container iframe:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Responsive gömülü sayfa */
@media (max-width: 768px) {
    .hotelrunners-embedded-page {
        padding: 20px;
    }
    
    .embedded-header {
        padding: 20px;
    }
    
    .embedded-header h3 {
        font-size: 1.5rem;
    }
    
    .embedded-header p {
        font-size: 1rem;
    }
    
    .embedded-iframe-container iframe {
        height: 800px !important;
    }
}

@media (max-width: 576px) {
    .hotelrunners-embedded-page {
        padding: 15px;
    }
    
    .embedded-header {
        padding: 15px;
    }
    
    .embedded-iframe-container iframe {
        height: 700px !important;
    }
}

/* Modal stilleri */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 20px 30px;
}

.modal-footer .btn {
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
}

.modal-footer .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
}

.modal-footer .btn-success:hover {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40,167,69,0.3);
}

/* Widget container responsive */
@media (max-width: 768px) {
    .hotelrunners-widget-container {
        padding: 1rem;
        margin: 1rem 0;
        border-radius: 10px;
    }
    
    #hr_search_widget {
        min-height: 400px;
        padding: 15px;
    }
    
    #hr_search_widget input,
    #hr_search_widget select,
    #hr_search_widget button {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .hotelrunners-widget-container {
        padding: 0.75rem;
        margin: 0.5rem 0;
    }
    
    #hr_search_widget {
        min-height: 350px;
        padding: 10px;
    }
    
    #hr_search_widget input,
    #hr_search_widget select,
    #hr_search_widget button {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* Hotelrunners widget loading state */
.hotelrunners-widget-container:empty::before {
    content: "Rezervasyon formu yükleniyor...";
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: #6c757d;
    font-style: italic;
}

/* Widget info alert styling */
.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border: 1px solid #bee5eb;
    color: #0c5460;
    border-radius: 10px;
    padding: 1.5rem;
}

.alert-info i {
    color: #0c5460;
}

/* Hotelrunners widget integration success message */
.hotelrunners-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.hotelrunners-success i {
    color: #155724;
    margin-right: 0.5rem;
}

.navbar-nav {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

/* Modern Language Button */
.navbar-nav .nav-item:last-child .nav-link {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 0.6rem 1.2rem !important;
    margin-left: 1rem !important;
    min-width: 110px !important;
    text-align: center !important;
    white-space: nowrap !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.navbar-nav .nav-item:last-child .nav-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

