
:root {
    --primary: #763626;
    /* Kurumsal Kahve/Bordo */
    --accent: #A88E6E;
    /* Altın/Kum */
    --bg-light: #FFFFFF;
    --bg-beige: #F9F8F6;
    --font-heading: 'Marcellus', serif;
    --font-body: 'Jost', sans-serif;
    --transition: all 0.3s ease;
    --header-height: 84px;
}

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

body {
    background-color: var(--bg-light);
    color: #333;
    font-family: var(--font-body);
    animation: fadeInPage 0.4s ease-out;
}

main {
    padding-top: var(--header-height);
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Tam ekran header ve slider için geniş container */
.container-fluid {
    width: 100%;
    padding: 0 4%;
    /* Ekranın yanlarından ferah bir boşluk */
}

/* --- Header Base --- */
/* İlk giriş için beyaz arka plan */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-light);
    padding: 12px 0;
    /* Sabit bir başlangıç paddingi */
    transition: padding 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    border-top: 5px solid #3d3b41;
    box-shadow: none;
}

/* Sayfa yüklendiğinde efektin oynamaması için */
header.no-transition {
    transition: none !important;
}

header.no-transition .logo img {
    transition: none !important;
}

/* Aşağı kaydırınca sticky hali */
header.sticky {
    padding: 8px 0;
    /* Daha az fark, daha az zıplama */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
    transition: height 0.2s ease;
}

.logo-mobile {
    display: none !important;
}

header.sticky .logo img {
    height: 48px;
    /* Daha az küçülme, daha stabil görüntü */
}

/* --- Menü (Nav Links) --- */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
    /* Menü elemanları arası boşluk */
    list-style: none;
    align-items: center;
}

.nav-links>li>a {
    color: var(--primary);
    /* Kurumsal renk */
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    /* İkon ve yazı arası boşluk */
    transition: var(--transition);
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    opacity: 0.8;
    color: var(--accent);
}

/* --- Hizmetler Dropdown --- */
.has-dropdown {
    position: relative;
    padding: 10px 0;
    /* Hover alanını genişletmek için */
}

.has-dropdown>a {
    cursor: default;
    /* Mobil ve Tıklama hissiyatı için */
}

.has-dropdown>a i {
    font-size: 9px;
    margin-top: 2px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0b0b0b;
    /* Görüntüdeki siyah zemin */
    min-width: 220px;
    list-style: none;
    padding: 15px 0;
    margin-top: 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Hover durumunda açılma */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    color: #ffffff !important;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 400;
    display: block;
    text-transform: none;
    /* Sitedeki gibi kelime ilk harfi büyük */
    transition: var(--transition);
}

.dropdown li a:hover {
    color: var(--accent) !important;
    padding-left: 30px;
    /* Hafif bir kayma efekti */
}

/* --- Sağ Taraf İkon ve Butonlar --- */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    /* Elemanlar arası boşluk */
}

.contact-phone {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    font-family: var(--font-body);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #25D366;
    color: #fff !important;
    border-radius: 50%;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.cta-btn {
    background-color: var(--primary);
    color: #fff !important;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-body);
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #5c2a1d;
}

/* Header Specific Button Style */
.header-right .cta-btn {
    background-color: var(--primary);
    color: #fff !important;
}

.header-right .cta-btn:hover {
    background-color: var(--accent);
}

.header-right .cta-btn:active {
    background-color: #5c2a1d;
    transform: scale(0.95);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
}

.lang-item {
    color: var(--primary);
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
}

.lang-item.active {
    opacity: 1;
    cursor: default;
    pointer-events: none;
}

.lang-item:not(.active) {
    opacity: 0.4;
}

.lang-item:not(.active):hover {
    opacity: 0.8;
}

.lang-separator {
    color: var(--primary);
    opacity: 0.3;
    font-weight: 300;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* --- Hero --- */
.hero-slider {
    padding-top: 0;
    /* Header boşluğu kaldırıldı, slider headerın altına girsin */
}

.slide {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Alt kısımdan yukarı doğru koyudan açığa yumuşak bir degrade */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-text {
    text-align: center;
    color: #fff;
    z-index: 2;
    position: relative;
    max-width: 800px;
}

.hero-text span {
    display: block;
    color: var(--accent);
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

/* Hero Button Enhancement */
.hero-slider .play-video-trigger {
    padding: 18px 40px;
    font-size: 16px;
    letter-spacing: 2px;
    background-color: var(--primary);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-slider .play-video-trigger:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.hero-slider .play-video-trigger i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hero-slider .play-video-trigger:hover i {
    transform: scale(1.2);
}

/* --- Page Header (Subpages) --- */
.page-header {
    height: 60dvh;
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    padding-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* Elegant overlay */
    z-index: 1;
}

.plaj-hero-bg {
    background-image: url('../images/Pool-Ana-Sayfa.webp');
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-subtitle {
    display: block;
    color: var(--accent);
    letter-spacing: 4px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Mobile adjustments for page header */
@media (max-width: 768px) {
    .page-header {
        height: 50dvh;
        background-attachment: scroll;
        background-position: center bottom;
    }

    .page-description {
        font-size: 15px;
    }

    .plaj-hero-bg {
        background-image: url('../images/Pool-Ana-Sayfa-mobile.webp') !important;
    }

    .hero-slider .play-video-trigger {
        padding: 12px 24px;
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .hero-slider .play-video-trigger i {
        font-size: 11px;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/plaj.webp');
    background-size: cover;
    background-position: center;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 5%;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.close-menu:hover {
    transform: rotate(90deg);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.mobile-menu-content a {
    color: #fff;
    font-size: 24px;
    font-family: var(--font-heading);
    text-transform: capitalize;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-menu-content a:hover,
.mobile-menu-content a.active {
    color: var(--accent);
    transform: scale(1.05);
}

.mobile-menu-extras {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 80%;
}

.mobile-menu-extras a {
    font-size: 18px;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-lang {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.mobile-lang .lang-item {
    color: #fff;
    font-size: 18px;
    font-family: var(--font-body);
    text-transform: uppercase;
    transition: var(--transition);
}

.mobile-lang .lang-item.active {
    opacity: 1;
    font-weight: 700;
    pointer-events: none;
}

.mobile-lang .lang-item:not(.active) {
    opacity: 0.5;
}

.mobile-lang .lang-separator {
    color: #fff;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 1200px) {
    :root {
        --header-height: 74px;
    }
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    /* Telefondaki kalabalığı azaltma */
    .contact-phone,
    .lang-switch {
        display: none;
    }

    .logo img {
        height: 45px;
    }

    header.sticky .logo img {
        height: 40px;
    }

    .whatsapp-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .cta-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 500px) {
    .header-right {
        gap: 6px;
    }

    .cta-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .whatsapp-btn {
        width: 32px;
        height: 32px;
    }

    .whatsapp-btn i {
        font-size: 16px;
    }

    .logo-desktop {
        max-height: 35px;
    }
}

@media (max-width: 768px) {
    .logo-desktop {
        display: none !important;
    }

    .logo-mobile {
        display: block !important;
        height: 35px;
    }
}

/* --- Promo Popup --- */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    /* JS ile açılacak */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.promo-popup-content {
    position: relative;
    max-width: 700px;
    width: 100%;
    animation: popupFadeIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.promo-popup-content img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 36px;
    height: 36px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
    line-height: 0;
    padding-bottom: 2px; /* Visual centering adjustment for &times; */
}

.promo-close:hover {
    background: var(--accent);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 768px) {
    .promo-popup-content {
        max-width: 95%;
    }

    .promo-close {
        top: -15px;
        right: -5px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

/* --- Room Detail Page --- */
.room-detail-hero {
    margin-top: 0 !important;
    padding-top: 0;
    background: #f9f8f6;
}

.room-detail-gallery {
    width: 100%;
    max-height: 70dvh;
    overflow: hidden;
}

.room-detail-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 70dvh;
}

.room-detail-section {
    padding: 80px 0;
    background: #fff;
}

.room-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.room-main-info .room-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 20px;
}

.room-main-info .room-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.room-amenities-group {
    margin-bottom: 30px;
}

.room-amenities-group h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.room-amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
}

.room-amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #444;
}

.room-amenities-list li i {
    color: var(--accent);
    font-size: 18px;
    width: 25px;
    text-align: center;
}

.room-main-info .room-features {
    justify-content: flex-start;
}

.room-main-info .room-desc {
    max-width: 100%;
}

.room-sidebar {
    position: sticky;
    top: 120px;
}

.room-quick-info {
    background: #f9f8f6;
    padding: 35px 30px 25px;
    border-radius: 8px;
    border-top: 4px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.room-quick-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

.room-quick-info-list {
    list-style: none;
    margin-bottom: 0;
}

.room-quick-info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 15px;
    color: #333;
}

.room-quick-info-list li:last-child {
    border-bottom: none;
}

.room-quick-info-list li i {
    color: var(--accent);
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.room-sidebar .cta-btn {
    display: block;
    text-align: center;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .room-detail-grid {
        grid-template-columns: 1fr;
    }

    .room-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .room-amenities-list {
        grid-template-columns: 1fr;
    }
}

/* --- About Section --- */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-beige);
    /* Hafif kırık beyaz/krem arka plan */
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-subtitle {
    display: block;
    color: var(--accent);
    letter-spacing: 3px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.section-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    max-width: 800px;
    margin: 20px auto 30px auto;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--accent);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background-color: rgba(168, 142, 110, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 50%;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--accent);
    color: white;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive adjustments for Features Grid */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 60px 0;
    }
}

/* --- Video Section --- */
.video-section {
    padding: 100px 0 50px 0;
    background-color: var(--bg-light);
}

.video-container-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
}

.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

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

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
    z-index: 2;
}

.video-thumb:hover .play-button {
    background: var(--primary);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* --- Video Modal --- */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    /* JS ile açılacak */
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    max-width: 1100px;
    width: 100%;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    transition: var(--transition);
}

.video-modal-close:hover {
    color: var(--accent);
}

.video-responsive-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

@media (max-width: 600px) {
    .video-section {
        padding: 60px 0 30px 0;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 80px 0 100px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-slider {
    padding: 20px 0 60px 0;
    position: relative;
    /* Arrow buttons position adjustment */
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    /* Elegant subtle radius */
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    background-color: #000;
    /* Dark background before loading */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Swiper navigation custom styling */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    background: #fff;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    color: #fff !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
    /* Hide default icon */
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 20px;
}

/* --- Lightbox Modal --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 85%;
    max-height: 85dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85dvh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.lightbox-overlay.active .lightbox-content img.loaded {
    opacity: 1;
    transform: scale(1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 30px;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-nav:hover {
    color: #fff;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        padding: 10px;
        font-size: 24px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
}

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

.rooms-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.rooms-header-left .about-subtitle {
    margin-bottom: 10px;
}

.rooms-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
}

.rooms-header-right .cta-btn.accent-btn {
    background-color: #b7a38b;
    /* Koyu Kum Rengi */
    padding: 12px 30px;
    font-size: 14px;
    letter-spacing: 1px;
}

.rooms-header-right .cta-btn.accent-btn:hover {
    background-color: #a08c75;
}

.rooms-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.room-item {
    display: flex;
    border: 1px solid #ebebeb;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.room-item.reversed {
    flex-direction: row-reverse;
}

.room-image {
    flex: 1;
    min-width: 50%;
    position: relative;
    overflow: hidden;
}

.room-swiper {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/10;
}

.room-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-swiper .swiper-button-next,
.room-swiper .swiper-button-prev {
    opacity: 0;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}


.room-image:hover .room-swiper img {
    transform: scale(1.08);
}

.room-image:hover .room-swiper .swiper-button-next,
.room-image:hover .room-swiper .swiper-button-prev,
.room-detail-gallery:hover .swiper-button-next,
.room-detail-gallery:hover .swiper-button-prev {
    opacity: 1;
}

.room-swiper .swiper-button-next:hover,
.room-swiper .swiper-button-prev:hover {
    background: var(--primary) !important;
    color: #fff !important;
}


/* On detail page, maybe we want them slightly more visible by default or larger */
.room-detail-gallery .swiper-button-next,
.room-detail-gallery .swiper-button-prev {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary);
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
}


.room-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.room-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent);
}

.room-content {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.room-name {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 400;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    margin-bottom: 30px;
}

.room-features span {
    line-height: 1;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-features i {
    vertical-align: middle;
    margin-top: -2px; /* Subtle nudge for visual centering */
    color: #888;
    font-size: 14px;
}

.room-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 90%;
}

.room-link-btn {
    border-bottom: 1px solid var(--accent);
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    padding-bottom: 5px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.room-link-btn:hover {
    color: var(--accent);
    border-color: var(--primary);
}

@media(max-width: 992px) {
    .rooms-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .room-item,
    .room-item.reversed {
        flex-direction: column;
    }

    .room-image {
        width: 100%;
        min-width: auto;
    }

    .room-content {
        padding: 40px 20px;
    }

    .room-swiper .swiper-button-next,
    .room-swiper .swiper-button-prev {
        opacity: 1;
        width: 35px !important;
        height: 35px !important;
    }
}

/* --- Unified Services Area --- */
.services-area {
    background-color: var(--bg-beige);
    padding: 100px 0 120px 0;
    border-top: 1px solid #ebebeb;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.detailed-services-part {
    margin-bottom: 80px;
}

.services-icons-part {
    margin-bottom: 80px;
}

.services-icons-part:last-child {
    margin-bottom: 0;
}

.services-header .about-subtitle {
    margin-bottom: 10px;
}

.services-header .rooms-title {
    margin-bottom: 20px;
}

.services-grid,
.services-icons-part .container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    line-height: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(118, 54, 38, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    line-height: 0;
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(118, 54, 38, 0.2);
}

.service-name {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    color: #333;
}

@media(max-width: 1024px) {
    .services-grid,
    .services-icons-part .container {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 20px;
    }
}

@media(max-width: 768px) {
    .services-grid,
    .services-icons-part .container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
    }

    .service-name {
        font-size: 13px;
    }
}

@media(max-width: 480px) {
    .services-grid,
    .services-icons-part .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Detailed Services Part (Resimli Linkler) --- */
.detailed-services-part {
    margin-bottom: 80px;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    /* Adjust gap to match the design */
}

.service-image-card {
    position: relative;
    aspect-ratio: 0.75;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

/* Inner gold border from design */
.service-image-card::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(168, 142, 110, 0.6);
    /* var(--accent) semi-transparent */
    z-index: 3;
    transition: var(--transition);
    pointer-events: none;
}

.service-image-card:hover::after {
    border-color: var(--accent);
}

.service-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-image-card:hover img {
    transform: scale(1.08);
}

.service-image-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    transition: var(--transition);
}

.service-image-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
}

.service-image-card .card-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 4;
    padding: 0 20px;
}

.service-image-card .card-content h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 400;
}

.service-image-card .card-content span {
    display: block;
    color: #ccc;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .services-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Service Features Part --- */
.service-features-part {
    /* No extra padding needed as it's part of services-area */
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

.s-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 20px;
    transition: var(--transition);
}

.s-feature-item:hover {
    transform: translateY(-5px);
}

.s-feature-item .s-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 5px;
}

.s-feature-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

@media (max-width: 991px) {
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Combined Stats & Newsletter Section --- */
.combined-cta-section {
    position: relative;
    padding: 120px 0 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

/* Alt sayfalar için sade newsletter alanı */
.footer-newsletter-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

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

.combined-cta-section .container,
.footer-newsletter-section .container {
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center !important;
}

/* Stats Part */
.stats-part {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-subtitle {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 500;
}

.stats-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 60px;
    font-weight: 400;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Divider */
.cta-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 80px 0;
    width: 100%;
}

/* Newsletter Part */
.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.newsletter-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.22rem);
    font-weight: 400;
    line-height: 1.3;
}

.newsletter-right {
    flex: 0 0 500px;
}

.newsletter-right .input-group {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.newsletter-right input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-right input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-right button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.newsletter-right button:hover {
    color: var(--accent);
}

.newsletter-right .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-right input[type="checkbox"] {
    appearance: none;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.newsletter-right input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 3px;
    height: 7px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(40deg);
}

@media (max-width: 991px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .newsletter-right {
        flex: 1;
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .cta-divider {
        margin: 60px 0;
    }

    .combined-cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3.5rem;
    }
}

/* --- Footer Section --- */
.site-footer {
    background-color: #111111;
    /* Koyu arka plan */
    color: #fff;
    padding: 60px 0 30px 0;
}

.site-footer .container-fluid {
    max-width: 1500px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col:last-child {
    border-right: none;
}

.footer-subtitle {
    display: block;
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.6;
    transition: var(--transition);
}

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

.footer-col.email-col a strong {
    font-weight: 500;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    line-height: 0; /* Important for centering &times; and icons */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-menu a:hover,
.footer-menu a.active {
    color: var(--accent);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-col {
        border-right: none;
    }

    .footer-bottom {
    display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* --- Contact Page --- */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

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

.contact-info-item i {
    width: 45px;
    height: 45px;
    background: var(--bg-beige);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-item:hover i {
    background: var(--primary);
    color: #fff;
}

.contact-info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item p,
.contact-info-item a {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    display: block;
}

.contact-form-card {
    padding: 50px;
    background: var(--bg-beige);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-form-card p {
    color: #777;
    font-size: 15px;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    color: #333;
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

textarea.form-control {
    resize: none;
}

.contact-form-card .cta-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.map-container {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-card {
        padding: 30px;
    }
}

/* --- Sustainability Page --- */
.sustainability-section {
    padding: 80px 0;
    background-color: #fff;
}

.sus-main-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.sus-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.sus-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.sus-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pdf-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-beige);
    color: var(--primary);
    border: 1px solid rgba(118, 54, 38, 0.2);
    padding: 15px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}

.pdf-btn:hover {
    background-color: var(--primary);
    color: #fff;
}

/* Info Card Modern (Image 4 Style) */
.info-card-modern {
    background-color: #FDFBF8;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(168, 142, 110, 0.2);
}

.info-card-modern h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.info-card-modern .mt-40 {
    margin-top: 40px;
}

.info-card-modern .subtitle-text {
    color: #666;
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
}

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

.info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #333;
    font-size: 15px;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    color: var(--accent);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.full-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--primary);
    color: #fff;
    padding: 16px;
    margin-top: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    font-weight: 500;
}

.full-btn:hover {
    background-color: var(--accent);
    color: #fff;
}

/* Principles Grid */
.sus-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.sus-principle {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.sus-principle:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sus-principle .icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-beige);
    color: var(--primary);
    border-radius: 50%;
    font-size: 24px;
    transition: var(--transition);
}

.sus-principle:hover .icon-wrap {
    background: var(--primary);
    color: #fff;
}

.sus-principle h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.sus-principle p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Form Container */
.sus-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.sus-form-container h2 {
    font-family: var(--font-body);
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 500;
    text-align: center;
}

.rating-question {
    margin-bottom: 40px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 30px;
}

.rating-question:last-of-type {
    border-bottom: none;
}

.rating-question label {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.rating-scale {
    max-width: 350px;
}

.rating-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.rating-options input[type="radio"] {
    display: none;
}

.rating-options label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    margin: 0;
    transition: all 0.2s ease;
    font-weight: 400;
}

.rating-options input[type="radio"]:checked+label {
    border-color: var(--primary);
    background-color: var(--primary);
    color: #fff;
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.text-question label {
    margin-bottom: 15px;
}

.green-btn {
    background-color: #22c55e;
    color: #fff;
    padding: 15px 50px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

.green-btn:hover {
    background-color: #16a34a;
    color: #fff;
}

.form-submit-row {
    text-align: center;
    margin-top: 20px;
}

@media(max-width: 992px) {
    .sus-main-grid {
        grid-template-columns: 1fr;
    }

    .sus-principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .sus-principles-grid {
        grid-template-columns: 1fr;
    }

    .sus-form-container {
        padding: 30px 20px;
    }

    .pdf-buttons {
        grid-template-columns: 1fr;
    }
}

/* Swup Transitions */
.transition-fade {
    transition: 0.4s;
    opacity: 1;
}

html.is-animating .transition-fade {
    opacity: 0;
    min-height: 100dvh;
}

/* Bodrum Page Styles */

.bodrum-intro {
    padding: 80px 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.bodrum-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.bodrum-intro p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.bodrum-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.bodrum-section:nth-child(even) {
    background: var(--bg-beige);
}

.bodrum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bodrum-grid.reverse {
    direction: rtl;
}

.bodrum-grid.reverse>* {
    direction: ltr;
}

.bodrum-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bodrum-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.bodrum-images img:nth-child(2) {
    margin-top: 40px;
}

.bodrum-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.bodrum-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.bodrum-banner {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    text-align: center;
    position: relative;
    color: #ffffff;
}

.bodrum-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.bodrum-banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.bodrum-banner h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.activity-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3/4;
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 20px;
}

.activity-overlay::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(216, 190, 142, 0.6);
    pointer-events: none;
    z-index: 1;
    transition: border-color 0.3s ease;
}

.activity-card:hover .activity-overlay::after {
    border-color: rgba(216, 190, 142, 1);
}

.activity-overlay h4 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
    z-index: 2;
}

@media (max-width: 992px) {
    .bodrum-grid {
        grid-template-columns: 1fr;
    }

    .bodrum-grid.reverse {
        direction: ltr;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .bodrum-images img:nth-child(2) {
        margin-top: 20px;
    }
}

/* --- Scroll To Top Button --- */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* Sağa alındı */
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    /* Kare yapıldı */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.scroll-to-top i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top i {
        font-size: 16px;
    }
}

/* --- Cookie Consent Banner --- */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-banner.hidden {
    display: none !important;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.cookie-policy-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-policy-link:hover {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.cookie-btn-primary {
    background-color: var(--primary);
    color: #fff;
}

.cookie-btn-primary:hover {
    background-color: #5c2a1d;
}

.cookie-btn-ghost {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.cookie-btn-ghost:hover {
    background-color: var(--primary);
    color: #fff;
}

.cookie-btn-link {
    background-color: transparent;
    color: #555;
    padding: 10px;
}

.cookie-btn-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

@media (min-width: 769px) {
    .cookie-consent-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .cookie-content {
        flex: 1;
        padding-right: 20px;
    }
    .cookie-buttons {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 12px 12px 0 0;
        padding: 20px;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cookie-btn {
        width: 100%;
    }
}

/* ==========================================================================
   Utility Classes - Lüks Tasarım & Ferah Boşluklar
   ========================================================================== */

/* Boşluk Sınıfları */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mt-80 { margin-top: 80px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mr-10 { margin-right: 10px; }
.ml-5 { margin-left: 5px; }
.pt-100 { padding-top: 100px; }
.pb-60 { padding-bottom: 60px; }

/* Tipografi ve Düzen Sınıfları */
.text-2rem { font-size: 2rem !important; }
.text-1-5rem { font-size: 1.5rem !important; }
.text-10px { font-size: 10px !important; }
.text-accent { color: var(--accent) !important; }
.font-medium { font-weight: 500 !important; }
.d-inline-block { display: inline-block !important; }
.section-title-md { font-family: var(--font-heading); font-size: 2.5rem; color: var(--primary); }
.body-text { color: #555; font-size: 16px; line-height: 1.8; }
.body-text-sm { color: #666; font-size: 14px; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.align-start { align-items: flex-start; }
.pos-static { position: static !important; }
.flex-col-center { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }
.bg-beige { background-color: var(--bg-beige) !important; }
.mr-10 { margin-right: 10px !important; }
.items-center { align-items: center !important; }

/* Kutu ve Padding Sınıfları */
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* --- Content Grid 2 Columns --- */
.content-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 992px) {
    .content-grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Görsel ve Kutu Sınıfları */
.img-rounded-shadow {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Premium Section Enhancements --- */
.premium-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.premium-content-block:last-child {
    margin-bottom: 0;
}

.premium-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.premium-image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.premium-image:hover img {
    transform: scale(1.06);
}

.premium-text {
    padding: 0 10px;
}

.premium-text .about-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: var(--accent);
}

.premium-text h3 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 400;
}

.premium-text p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.premium-text .room-amenities-list {
    margin-top: 30px;
    gap: 20px;
}

.premium-text .room-amenities-list li {
    font-size: 14px;
    color: #666;
}

@media (max-width: 992px) {
    .premium-content-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .premium-content-block.mobile-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .premium-text h3 {
        font-size: 2.2rem;
    }
}

/* --- Toast Notifications --- */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-notification {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 4px solid var(--primary);
    color: #333;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: auto;
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-notification.error {
    border-left-color: #e74c3c;
}

.toast-notification i {
    font-size: 20px;
    color: var(--primary);
}

.toast-notification.success i {
    color: #27ae60;
}

.toast-notification.error i {
    color: #c0392b;
}

/* --- Button Loading State --- */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
    transition: none !important;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Validation Highlight */
input.invalid, textarea.invalid, select.invalid {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(118, 54, 38, 0.1) !important;
}

input, textarea, select {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloader img {
    width: 120px;
    height: auto;
    animation: preloader-pulse 2s infinite ease-in-out;
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
}

@keyframes preloader-pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}
/* --- 404 Error Page --- */
.error-page-section {
    position: relative;
    height: 100dvh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: calc(-1 * var(--header-height)); /* Header'ın altına girmesi için */
}

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

.error-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.error-title {
    font-family: var(--font-heading);
    font-size: clamp(8rem, 20vw, 15rem);
    line-height: 1;
    margin-bottom: 10px;
    color: var(--accent);
    opacity: 0.9;
    letter-spacing: -5px;
}

.error-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.error-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.error-actions .cta-btn.outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff !important;
}

.error-actions .cta-btn.outline:hover {
    background-color: #fff;
    color: var(--primary) !important;
}

@media (max-width: 768px) {
    .error-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .error-actions .cta-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .error-title {
        font-size: 8rem;
    }
    
    .error-text {
        font-size: 16px;
    }
}

/* Picture Image Mobile Optimization */
picture {
    display: block;
    width: 100%;
    height: 100%;
}
picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main#swup {
    min-height: 100dvh;
    /* İçerik değişirken layout shift'i engeller */
    display: flex;
    flex-direction: column;
}

/* --- Menu Topbar --- */
.menu-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--bg-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.menu-back-btn {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.menu-back-btn:hover {
    color: var(--accent);
}

.menu-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* --- Digital Menu --- */
#digital-menu {
    background-color: var(--bg-light);
}

.menu-tabs-wrapper {
    width: 100%;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    /* Yatay kaydırmayı sarmalayıcıya veriyoruz */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.menu-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
    /* Elemanların genişliği kadar yer kaplamasını sağla */
    min-width: max-content;
    padding: 0 10px;
}

.menu-tab {
    font-family: var(--font-heading);
    font-size: 16px;
    color: #666;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    user-select: none;
    white-space: nowrap; /* Metnin kırılmasını önle */
    flex-shrink: 0; /* Mobilde sıkışıp küçülmesini engelle */
}

/* Mobil görünümde ortalamayı kaldırıp sola yaslıyoruz */
@media (max-width: 768px) {
    .menu-tabs {
        justify-content: flex-start;
        padding: 0 20px;
    }
}

.menu-tab:hover {
    color: var(--primary);
}

.menu-tab.active {
    color: var(--primary);
    font-weight: 600;
}

.menu-tab.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
}

.menu-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-tab-content.active {
    display: block;
}

.menu-category-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 8px;
    margin-top: 40px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-category-title:first-of-type {
    margin-top: 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
}

.menu-item-info {
    flex: 1;
    padding-right: 20px;
    flex-shrink: 1;
    min-width: 0;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.menu-item-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.4;
}

.menu-item-price {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-desc-price {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .menu-tabs {
        justify-content: flex-start;
    }
}

/* --- Dijital Menü Mobil Kaydırma Düzeltmesi --- */
.menu-tabs-wrapper {
    width: 100%;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.menu-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
    min-width: max-content;
    padding: 0 10px;
}

.menu-tab {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .menu-tabs {
        justify-content: flex-start;
        padding: 0 20px;
    }
}

/* --- Dijital Menü Üst Bar ve Sayfa Düzeni --- */
.menu-topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.menu-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.menu-back-btn {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.menu-back-btn:hover {
    color: var(--accent);
}

/* Menü sayfasının mobilde üst barın altında kalmaması için genel padding ayarı */
#digital-menu {
    padding-top: 80px; 
}

/* --- SPA Menu Section --- */
.spa-menu-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.spa-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .spa-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .spa-menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.spa-service-card {
    background-color: var(--bg-beige, #fcfaf8);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.spa-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.spa-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.spa-card-icon {
    font-size: 24px;
    color: var(--primary, #333);
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.spa-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-dark, #222);
    line-height: 1.3;
}

.spa-card-body {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light, #555);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.spa-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-family: var(--font-body);
    font-weight: 500;
}

.spa-card-duration {
    color: var(--text-light, #555);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spa-card-price {
    color: var(--primary, #333);
    font-size: 1.05rem;
}

/* Multi-price layout Support */
.spa-card-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.spa-card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}
.spa-card-price-row:not(:last-child) {
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}


/* --- Safari Webkit & UI Fixes --- */
/* Form and button appearance reset to avoid native iOS styling */
button, input, select, textarea, .menu-tab, .menu-back-btn, .cta-btn, .accent-btn {
    -webkit-appearance: none;
    appearance: none;
}

/* Explicit flex properties for Safari calculation bugs */
.menu-tab, .menu-tab-content {
    flex-shrink: 0;
    flex-basis: auto;
}

/* Fallback flex prefixes for older Safari versions */
.menu-tabs, .menu-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}
