/* Genel Stiller */
:root {
    --primary-color: #1a2235; /* Koyu lacivert */
    --secondary-color: #bfa76f; /* Altın */
    --accent-color: #e6c77b; /* Açık altın */
    --background-color: #f5f3ef; /* Fildişi */
    --card-bg: #232b3e; /* Antrasit */
    --text-color: #7a7a7a;
    --heading-color: #f5f3ef;
    --white: #FFFFFF;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
}

/* Header Stili */
.site-header {
    width: 100%;
    background: linear-gradient(90deg, #1a2235 50%, #bfa76f 200%);
    box-shadow: 0 4px 24px rgba(26,34,53,0.12);
    min-height: 80px;
    height: auto;
}

.header-top {
    background: transparent;
    padding: 4px 0;
    font-size: 13px;
    color: var(--accent-color);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.contact-info-left {
    flex: 0 1 auto;
}

.contact-info-right {
    flex: 0 1 auto;
    margin-left: auto;
}

.contact-info-left a,
.contact-info-right a {
    color: var(--accent-color);
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
}

.contact-info-left a:hover,
.contact-info-right a:hover {
    color: #ffffff;
}

.header-top .social-links {
    display: flex;
    gap: 15px;
}

.header-top .social-links a {
    color: var(--accent-color);
    font-size: 16px;
    transition: var(--transition);
    background: rgba(191,167,111,0.08);
}

.header-top .social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.header-main {
    padding: 10px 0;
    background: transparent;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(191,167,111,0.15));
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    padding: 3px 0;
    letter-spacing: 1px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.weather-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(191,167,111,0.08);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    color: var(--secondary-color);
}

.weather-widget .weather-icon {
    width: 24px;
    height: 24px;
}

.weather-widget .weather-title,
.weather-widget .weather-temp {
    color: var(--secondary-color);
}

.header-actions .btn {
    padding: 8px 16px;
    font-size: 13px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
    border: none;
    box-shadow: 0 2px 8px rgba(191,167,111,0.15);
}

.header-actions .btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #1a2235 80%, #bfa76f 200%);
    padding: 40px 30px 30px;
    transition: right 0.3s ease-in-out;
    z-index: 999;
    overflow-y: auto;
    box-shadow: 0 8px 32px 0 rgba(26,34,53,0.25);
    backdrop-filter: blur(2px);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.mobile-menu-header .logo {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
}

.mobile-menu-header .logo img {
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(191,167,111,0.15));
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s, transform 0.3s;
}

.mobile-menu-close:hover {
    color: var(--secondary-color);
    transform: scale(1.2) rotate(90deg);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 32px;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    display: block;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(191,167,111,0.1);
    transition: color 0.3s, padding-left 0.3s;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(26,34,53,0.10);
    position: relative;
}

.mobile-nav a:hover {
    color: var(--secondary-color);
    padding-left: 18px;
}

.mobile-nav a::after {
    content: '\2192';
    opacity: 0;
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    color: var(--secondary-color);
    font-size: 18px;
    transition: opacity 0.3s, right 0.3s;
}

.mobile-nav a:hover::after {
    opacity: 1;
    right: 0;
}

.mobile-weather {
    display: none !important;
}

/* Modern mobil hava durumu kartı */
.mobile-weather-card {
    background: rgba(35, 43, 62, 0.55);
    box-shadow: 0 8px 32px 0 rgba(191,167,111,0.10);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    border: 1.5px solid rgba(191,167,111,0.18);
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
    padding: 22px 28px;
}
.weather-icon-wrap {
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px 4px rgba(191,167,111,0.25);
    position: relative;
}
.weather-icon-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(191,167,111,0.12) 0%, rgba(191,167,111,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.mobile-weather-card .weather-icon {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1;
}
.weather-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.weather-city {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
}
.weather-temp {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 0 2px 8px rgba(191,167,111,0.10);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .site-header {
        background: none !important;
        background-color: transparent !important;
        box-shadow: none !important;
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    .header-main {
        background: none !important;
        background-color: transparent !important;
        box-shadow: none !important;
    }

    .header-top {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        position: fixed !important;
        top: 24px;
        right: 24px;
        left: auto;
        z-index: 2000;
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 10px;
    }

    .weather-widget {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 20px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body {
        background: url('mobil.jpg') no-repeat center center fixed !important;
        background-size: cover !important;
        background-color: transparent !important;
    }

    body.menu-open .site-header .logo {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .places-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .mobile-menu {
        max-width: 100%;
    }
}

/* Overlay for mobile menu */
.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: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Bölümü */
.hero {
    background: linear-gradient(rgba(41, 35, 17, 0.85), rgba(0, 0, 0, 0.15)), url('images/mobil.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 100px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--accent-color);
    text-shadow: 0 4px 24px rgba(26,34,53,0.25);
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
    color: var(--background-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 5%;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Özellikler Bölümü */
.features {
    padding: 100px 0;
    background: var(--background-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 4px 24px rgba(26,34,53,0.10);
    transition: var(--transition);
    overflow: hidden;
    color: var(--accent-color);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(191,167,111,0.15);
}

.feature-image {
    position: relative;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.feature-item:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 25px;
}

.feature-content h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.feature-content p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.8;
}

.feature-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.feature-link:hover {
    color: var(--accent-color);
}

.feature-link i {
    transition: var(--transition);
    color: var(--secondary-color);
}

.feature-link:hover i {
    transform: translateX(5px);
    color: var(--accent-color);
}

/* Harita Bölümü */
.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f6f2 100%);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    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 100 100"><defs><pattern id="map-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23bfa76f" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23map-pattern)"/></svg>');
    pointer-events: none;
}

.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26,34,53,0.12);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(191,167,111,0.1);
    background: var(--white);
    max-width: 1000px;
    margin: 0 auto;
}

.map-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(191,167,111,0.05) 0%, rgba(26,34,53,0.02) 100%);
    pointer-events: none;
    z-index: 1;
}

.map-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(191,167,111,0.2);
    border-color: rgba(191,167,111,0.3);
}

.map-container:hover::before {
    opacity: 1;
}

.map-container iframe {
    display: block;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 500px;
    border: none;
}

.map-container:hover iframe {
    transform: scale(1.01);
}

/* Map Section Header */
.map-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.map-section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.map-section-header p {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Map Location Info */
.map-location-info {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(26,34,53,0.08);
    border: 1px solid rgba(191,167,111,0.1);
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.map-location-info h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

.map-location-details {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.map-location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-location-item:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.map-location-item i {
    color: var(--secondary-color);
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* Map Container Loading Animation */
.map-container.loading {
    position: relative;
}

.map-container.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(191,167,111,0.2);
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 3;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Map Styles */
@media (max-width: 1200px) {
    .map-container {
        max-width: 900px;
    }
    
    .map-container iframe {
        height: 450px;
    }
}

@media (max-width: 991px) {
    .map-section {
        padding: 80px 0;
    }
    
    .map-container {
        max-width: 100%;
        border-radius: 20px;
    }
    
    .map-container iframe {
        height: 400px;
    }
    
    .map-location-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .map-location-info {
        padding: 25px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-section-header h2 {
        font-size: 28px;
    }
    
    .map-section-header p {
        font-size: 16px;
    }
    
    .map-container {
        border-radius: 15px;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .map-location-info {
        padding: 20px;
        margin-top: 25px;
    }
    
    .map-location-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .map-section {
        padding: 50px 0;
    }
    
    .map-section-header h2 {
        font-size: 24px;
    }
    
    .map-container {
        border-radius: 12px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-location-info {
        padding: 15px;
        margin-top: 20px;
    }
    
    .map-location-item {
        font-size: 14px;
    }
    
    .map-location-item i {
        font-size: 16px;
    }
}

/* WhatsApp Butonu */
.whatsapp-button {
    text-decoration: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 24px rgba(191,167,111,0.15);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-button::after {
    display: none !important;
}

.whatsapp-button:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Footer Stili */
.site-footer {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info h4,
.footer-social h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
}

.footer-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--secondary-color);
    font-size: 18px;
}

.footer-info p a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-info p a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--accent-color);
    font-size: 20px;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(191,167,111,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    position: relative;
}

.social-links a::after {
    display: none !important;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Yakındaki Yerler Bölümü */
.nearby-places {
    padding: 100px 0;
    background: var(--background-color);
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(191,167,111,0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-content h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.feature-content p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 991px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .places-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

.language-selector {
    position: relative;
    margin-left: 20px;
}

.lang-current {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 13px;
}

.lang-current img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.lang-current i {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.lang-current:hover {
    background: rgba(191,167,111,0.1);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--primary-color);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    margin-top: 4px;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-selector.active .lang-current i {
    transform: rotate(180deg);
}

.lang-option {
    background: transparent;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 13px;
}

.lang-option img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.lang-option:hover {
    background: rgba(191,167,111,0.1);
}

.lang-option.active {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Removing the rule that hides EN and RU options */
/* [data-lang="en"], [data-lang="ru"] {
    display: none;
} */ 

/* Gallery Styles */
.gallery-hero {
    position: relative;
    min-height: 60vh;
    background: url('images/oda4.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 120px 0;
}

.gallery-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.gallery-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.gallery-hero .hero-subtitle {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-hero .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gallery-hero .hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.gallery-hero .hero-scroll {
    position: absolute;
    bottom: -250px;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-hero .hero-scroll span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-hero .hero-scroll i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        min-height: 50vh;
        padding: 80px 0;
    }

    .gallery-hero .hero-title {
        font-size: 4.5rem;
    }

    .gallery-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .gallery-hero .hero-description {
        font-size: 1rem;
    }
}

.gallery-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.gallery-link img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-link img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        padding: 80px 0;
    }

    .gallery-hero h1 {
        font-size: 36px;
    }

    .gallery-hero p {
        font-size: 18px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .gallery-link img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-hero h1 {
        font-size: 28px;
    }

    .gallery-hero p {
        font-size: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-link img {
        height: 300px;
    }
}

/* About Hero Styles */
.about-hero {
    background: url('images/manzara.png') no-repeat center center;
    background-size: cover;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.about-content-section .container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive About Page */
@media (max-width: 991px) {
    .about-content-section .container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .about-content-section {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 15px;
    }
}

/* Odalar Sayfası Stilleri */
.rooms-hero {
    background: linear-gradient(rgba(41, 35, 17, 0.85), rgba(0, 0, 0, 0.15)), url('images/oda1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.rooms-section {
    padding: 100px 0;
    background: var(--background-color);
}

.rooms-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.room-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,34,53,0.10);
    transition: var(--transition);
    display: flex;
    flex-direction: row;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(191,167,111,0.15);
}

.room-image,
.room-image-slider {
    position: relative;
    width: 55%;
    min-height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-content {
    width: 45%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-content h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.room-features {
    list-style: none;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.room-features i {
    color: var(--secondary-color);
    font-size: 18px;
}

.room-content p {
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 16px;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .room-card {
        flex-direction: column;
    }

    .room-image,
    .room-image-slider {
        width: 100%;
        min-height: 250px;
    }

    .room-content {
        width: 100%;
        padding: 30px;
    }

    .room-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .room-content {
        padding: 20px;
    }

    .room-content h3 {
        font-size: 24px;
    }
}

/* Hizmetler Sayfası Stilleri */
.services-hero {
    background: linear-gradient(rgba(41, 35, 17, 0.85), rgba(0, 0, 0, 0.15)), url('images/manzara.png');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.services-section {
    padding: 100px 0;
    background: var(--background-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 24px rgba(26,34,53,0.10);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(191,167,111,0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.service-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* İletişim Sayfası Stilleri */
.contact-hero {
    background: linear-gradient(rgba(41, 35, 17, 0.85), rgba(0, 0, 0, 0.15)), url('images/manzara.png');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.contact-info-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, #f8f6f2 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23bfa76f" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 40px rgba(26,34,53,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(191,167,111,0.1);
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(191,167,111,0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(191,167,111,0.15);
    border-color: rgba(191,167,111,0.2);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover::after {
    transform: translate(30%, -30%) scale(1.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(191,167,111,0.2);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(191,167,111,0.3);
}

.contact-card:hover .contact-icon::before {
    opacity: 1;
}

.contact-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon i {
    transform: scale(1.1);
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-content h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
}

.contact-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.4s ease;
}

.contact-card:hover .contact-content h3::after {
    width: 50px;
}

.contact-content p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-content p {
    color: var(--primary-color);
}

.contact-content .btn {
    align-self: flex-start;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.contact-content .btn:hover::before {
    left: 100%;
}

.contact-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191,167,111,0.3);
}

/* Additional Contact Page Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    animation: fadeInUp 0.6s ease forwards;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }

/* Floating animation for icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.contact-icon {
    animation: float 3s ease-in-out infinite;
}

.contact-card:nth-child(1) .contact-icon { animation-delay: 0s; }
.contact-card:nth-child(2) .contact-icon { animation-delay: 0.5s; }
.contact-card:nth-child(3) .contact-icon { animation-delay: 1s; }
.contact-card:nth-child(4) .contact-icon { animation-delay: 1.5s; }

/* Room Image Slider Styles */
.room-image-slider {
    border-radius: 0;
    height: auto;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slider-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 34, 53, 0.5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(4px);
}

.slider-nav:hover {
    background: var(--primary-color);
    border-color: white;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .room-image-slider {
        height: 250px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 576px) {
    .room-image-slider {
        height: 200px;
    }
    
    .slider-nav {
        width: 30px;
        height: 30px;
    }
    
    .slider-nav i {
        font-size: 12px;
    }
}

/* Mobile Language Selector - Fixed Position */
.mobile-language-selector-fixed {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.mobile-lang-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(191,167,111,0.3);
    z-index: 1001;
}

.mobile-lang-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(191,167,111,0.4);
}

.mobile-lang-toggle.active {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transform: scale(1.1);
}

.mobile-lang-toggle .current-flag {
    width: 20px;
    height: auto;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.mobile-lang-toggle i {
    color: var(--primary-color);
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-lang-toggle:hover i,
.mobile-lang-toggle.active i {
    opacity: 1;
}

.mobile-lang-toggle:hover .current-flag,
.mobile-lang-toggle.active .current-flag {
    opacity: 0.7;
}

.mobile-lang-dropdown {
    position: absolute;
    bottom: 60px;
    left: 0;
    background: rgba(26, 34, 53, 0.95);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(191,167,111,0.3);
    backdrop-filter: blur(10px);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom left;
}

.mobile-language-selector-fixed.active .mobile-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.mobile-lang-dropdown .mobile-lang-option {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(191,167,111,0.2);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    text-align: left;
    min-width: 100px;
    margin-bottom: 8px;
}

.mobile-lang-dropdown .mobile-lang-option:last-child {
    margin-bottom: 0;
}

.mobile-lang-dropdown .mobile-lang-option img {
    width: 20px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.mobile-lang-dropdown .mobile-lang-option span {
    flex: 1;
    font-weight: 500;
}

.mobile-lang-dropdown .mobile-lang-option:hover {
    background: rgba(191,167,111,0.1);
    border-color: rgba(191,167,111,0.4);
    transform: translateX(3px);
}

.mobile-lang-dropdown .mobile-lang-option.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(191,167,111,0.3);
}

.mobile-lang-dropdown .mobile-lang-option.active:hover {
    transform: translateX(0);
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

/* Show mobile language selector only on mobile devices */
@media (max-width: 991px) {
    .mobile-language-selector-fixed {
        display: block;
    }
}

@media (max-width: 768px) {
    .mobile-language-selector-fixed {
        bottom: 30px;
        left: 20px;
    }
    
    .mobile-lang-toggle {
        width: 45px;
        height: 45px;
    }
    
    .mobile-lang-dropdown {
        bottom: 55px;
        padding: 12px;
        min-width: 110px;
    }
    
    .mobile-lang-dropdown .mobile-lang-option {
        padding: 8px 10px;
        font-size: 13px;
        gap: 8px;
    }
    
    .mobile-lang-dropdown .mobile-lang-option img {
        width: 18px;
    }
}

@media (max-width: 480px) {
    .mobile-language-selector-fixed {
        bottom: 30px;
        left: 15px;
    }
    
    .mobile-lang-toggle {
        width: 40px;
        height: 40px;
    }
    
    .mobile-lang-toggle .current-flag {
        width: 18px;
    }
    
    .mobile-lang-toggle i {
        font-size: 14px;
    }
    
    .mobile-lang-dropdown {
        bottom: 50px;
        padding: 10px;
        min-width: 100px;
    }
    
    .mobile-lang-dropdown .mobile-lang-option {
        padding: 6px 8px;
        font-size: 12px;
        gap: 6px;
    }
    
    .mobile-lang-dropdown .mobile-lang-option img {
        width: 16px;
    }
}

.hero-location {
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: -10px;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* Müşteri Yorumları Bölümü */
.reviews-section {
    background: #f8f8f8;
    padding: 60px 0 40px 0;
}
.reviews-section .section-header {
    text-align: center;
    margin-bottom: 32px;
}
.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 24px;
}
.review-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 24px 20px 18px 20px;
    max-width: 340px;
    min-width: 260px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}
.review-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.review-author {
    font-weight: 600;
    color: #2d3a4a;
    font-size: 1.08em;
}
.review-rating {
    color: #ffc107;
    font-size: 1.1em;
    letter-spacing: 1px;
}
.review-content {
    color: #444;
    font-size: 1em;
    line-height: 1.6;
}
.reviews-action {
    text-align: center;
}
.reviews-action .btn {
    margin-top: 10px;
    font-size: 1.08em;
    padding: 10px 28px;
    border-radius: 24px;
}
@media (max-width: 900px) {
    .reviews-grid {
        flex-direction: column;
        align-items: center;
    }
    .review-card {
        max-width: 100%;
        width: 100%;
    }
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15em;
    margin-right: 10px;
    box-shadow: 0 2px 8px rgba(191,167,111,0.10);
    letter-spacing: 1px;
    text-transform: uppercase;
} 