/**
 * Yeniçeri Ahmet Ağa Konağı - Ana CSS
 */

/* ============================================
   CSS Variables
============================================ */
:root {
    --primary: #1a3a5c;
    --primary-light: #2a5a8c;
    --primary-dark: #0f2840;
    --accent: #c9a962;
    --accent-light: #d4bc7d;
    --accent-dark: #a8894d;
    --dark: #1c1c1c;
    --light: #f8f6f3;
    --cream: #f5f2ed;
    --text: #5a5a5a;
    --white: #ffffff;
    --success: #27ae60;
    --error: #e74c3c;
    --whatsapp: #25D366;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Global SVG restrictions - prevent oversized icons */
svg {
    max-width: 100%;
    max-height: 100%;
    overflow: visible;
}

/* Ensure all icon SVGs have proper size limits */
.feature-icon svg,
.room-type-badge svg,
.room-feature svg,
.room-card-btn svg,
.video-gallery-play svg,
.video-play-btn svg,
.page-header-icon svg,
.about-list svg,
.gallery-overlay svg,
.highlight-icon svg {
    flex-shrink: 0;
}

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

/* ============================================
   Header
============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s;
}

header.scrolled {
    background: rgba(26,58,92,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

/* Header Top - Logo */
.header-top {
    display: flex;
    justify-content: center;
    padding: 20px 60px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    max-height: 120px;
    overflow: hidden;
    opacity: 1;
}

header.scrolled .header-top {
    max-height: 0;
    padding: 0 60px;
    opacity: 0;
    border-bottom: none;
}

/* Header Bottom - Navigation */
.header-bottom {
    transition: all 0.4s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 60px;
    gap: 40px;
    transition: all 0.4s;
}

header.scrolled .header-inner {
    padding: 8px 60px;
}

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

.logo img {
    width: 55px;
    height: auto;
    transition: all 0.4s;
}

header.scrolled .logo img {
    width: 45px;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    text-align: center;
    transition: all 0.4s;
}

header.scrolled .logo-text {
    font-size: 18px;
}

.logo-text span {
    display: block;
    font-size: 11px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--accent);
    text-transform: uppercase;
    margin-top: 5px;
}

header.scrolled .logo-text span {
    font-size: 9px;
    letter-spacing: 3px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
}

.header-phone svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.lang-switch {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}

.lang-switch:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

.header-btn {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 12px 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--accent);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* Nav Close - Desktop'ta gizli */
.nav-close {
    display: none;
}

/* ============================================
   Page Header (Alt sayfalar)
============================================ */
.page-header {
    position: relative;
    height: 55vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding-top: 120px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 58, 92, 0.7) 0%, rgba(15, 40, 64, 0.85) 100%);
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-header-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.page-title {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb a {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 1px;
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.breadcrumb span {
    color: rgba(255,255,255,0.7);
}

.breadcrumb-current {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    letter-spacing: 1px;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26,58,92,0.3), rgba(15,40,64,0.7));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--accent);
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 60px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* ============================================
   Buttons
============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 16px 35px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--accent);
    transition: all 0.4s ease;
    cursor: pointer;
}

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

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 16px 35px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 16px 35px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* ============================================
   Section Styles
============================================ */
.section-tag,
.section-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--accent);
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-tag::before,
.section-tagline::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-size: 48px;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

/* ============================================
   About Section
============================================ */
.about-section {
    padding: 120px 0;
    background: var(--white);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    width: 85%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 8px;
}

.about-img-small {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 55%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 8px solid var(--white);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-radius: 8px;
}

.about-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 50px rgba(26, 58, 92, 0.3);
    z-index: 10;
}

.about-badge .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.about-badge .text {
    font-size: 10px;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.8;
}

.about-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-list,
.about-features {
    margin: 30px 0;
}

.about-list li,
.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--dark);
}

.about-list svg,
.about-feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ============================================
   Rooms Section
============================================ */
.rooms-section {
    padding: 80px 0 100px;
    background: var(--white);
}

.rooms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.rooms-count {
    font-size: 16px;
    color: var(--text);
}

.rooms-count strong {
    color: var(--dark);
}

.rooms-header .section-title {
    margin-bottom: 0;
}

/* Rooms Grid - 2 Column Layout */
.rooms-section .rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Room Card - Horizontal Layout */
.rooms-section .room-card {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s;
    position: relative;
}

.rooms-section .room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.rooms-section .room-card.featured {
    border: 4px solid var(--accent);
    background: linear-gradient(135deg, #fffcf5 0%, #fff8e8 100%);
}

.rooms-section .room-card .shared-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 12px;
    z-index: 10;
}

.rooms-section .room-card-image {
    position: relative;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

a.room-card-image {
    text-decoration: none;
    color: inherit;
}

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

.rooms-section .room-card:hover .room-card-image img {
    transform: scale(1.08);
}

.room-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 15px;
}

.rooms-section .room-card.featured .room-number {
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 11px;
    padding: 8px 12px;
}

/* Price Badge */
.room-price-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 15px 22px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.room-price-badge .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.room-price-badge .per {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.rooms-section .room-card.featured .room-price-badge {
    background: var(--accent);
    color: var(--primary-dark);
}

/* Family Room Badge */
.room-price-family {
    position: absolute;
    bottom: 115px;
    right: 20px;
    background: var(--primary-light);
    color: var(--white);
    padding: 8px 15px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    z-index: 5;
}

/* Room Card Content */
.rooms-section .room-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-name {
    font-size: 34px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.rooms-section .room-card.featured .room-name {
    font-size: 38px;
    color: var(--accent);
    text-shadow: 1px 1px 0 var(--primary-dark);
}

.room-subtitle {
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.room-desc {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 25px;
}

.rooms-section .room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.rooms-section .room-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
}

.rooms-section .room-feature svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.room-note {
    font-size: 12px;
    color: var(--text);
    font-style: italic;
    padding: 12px 15px;
    background: var(--white);
    margin-bottom: 20px;
    border-left: 3px solid var(--accent);
}

.room-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--primary);
    align-self: flex-start;
    margin-right: 10px;
    margin-bottom: 10px;
}

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

.room-btn-outline {
    background: transparent !important;
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}

.room-btn-outline:hover {
    background: var(--accent) !important;
    color: var(--primary-dark) !important;
}

.room-btn svg {
    width: 16px;
    height: 16px;
}

/* Shared Notice */
.shared-notice {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.shared-notice svg {
    width: 30px;
    height: 30px;
    color: var(--accent);
    flex-shrink: 0;
}

.shared-notice p {
    color: var(--white);
    font-size: 15px;
    margin: 0;
}

.shared-notice strong {
    color: var(--accent);
}

/* ============================================
   Intro Section
============================================ */
.intro-section {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 17px;
    color: var(--text);
    line-height: 1.9;
}

/* ============================================
   Highlights Section
============================================ */
.highlights-section {
    padding: 100px 0;
    background: var(--cream);
}

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

.highlight-card {
    background: var(--white);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

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

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 36px;
    height: 36px;
    color: var(--accent);
}

.highlight-title {
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 15px;
}

.highlight-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
}

/* ============================================
   Services Section
============================================ */
.services-section {
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}

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

.services-header .section-tag {
    justify-content: center;
}

.services-header .section-tag::before,
.services-header .section-tag::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.service-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

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

.service-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15,40,64,0.9) 0%, rgba(26,58,92,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: all 0.4s;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(15,40,64,0.95) 0%, rgba(26,58,92,0.7) 100%);
}

.service-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    opacity: 1;
    transform: translateY(0);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s;
}

.service-card:hover .service-title {
    transform: translateY(0);
}

.service-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s 0.1s;
}

.service-card:hover .service-text {
    opacity: 1;
    transform: translateY(0);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s 0.2s;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ============================================
   Rooms Page Styles
============================================ */
.rooms-intro-section {
    padding: 80px 0;
    background: var(--white);
}

.rooms-intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 17px;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 40px;
}

.room-types {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.room-type-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    padding: 15px 25px;
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
}

.room-type-badge svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.rooms-list-section {
    padding: 80px 0;
    background: var(--cream);
}

.rooms-list-section .rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rooms-list-section .room-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.rooms-list-section .room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.rooms-list-section .room-card.featured {
    border: 3px solid var(--accent);
}

.rooms-list-section .room-card.family .room-card-badge.family {
    background: var(--primary);
}

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

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

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

.room-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.room-card-badge.premium {
    background: var(--accent);
    color: var(--primary-dark);
}

.room-card-shared {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    letter-spacing: 0.5px;
}

.room-card-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    padding: 10px 15px;
    text-align: center;
}

.room-card-price .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.room-card-price .per {
    font-size: 11px;
    color: var(--accent);
}

.rooms-list-section .room-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-card-name {
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 5px;
}

.room-card-subtitle {
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.room-card-desc {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.room-card-features {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text);
}

.room-feature svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.room-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-top: auto;
}

.room-card-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.room-card-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.room-card-btn:hover svg {
    transform: translateX(5px);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* ============================================
   Features Section (Homepage)
============================================ */
.features-section {
    padding: 120px 0;
    background: var(--primary);
}

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

.features-header .section-title {
    color: var(--white);
}

.features-header .section-tag {
    justify-content: center;
}

.features-header .section-tag::before,
.features-header .section-tag::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

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

.feature-item {
    text-align: center;
    padding: 40px 25px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--accent);
}

.feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    max-width: 70px;
    max-height: 70px;
    margin: 0 auto 20px;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-icon svg {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

.feature-title {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.room-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.room-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: block;
}

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

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

.room-card-content {
    padding: 30px;
}

.room-card-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.room-card-title a {
    color: var(--dark);
}

.room-card-title a:hover {
    color: var(--accent);
}

.room-card-subtitle {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 15px;
}

.room-card-details {
    display: flex;
    gap: 20px;
}

.room-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
}

.room-detail svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* ============================================
   Video Section
============================================ */
.video-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.video-text {
    position: relative;
    z-index: 2;
}

.video-text p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 20px;
}

.video-text .highlight {
    font-size: 15px;
    color: var(--primary);
    font-weight: 500;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
    margin: 30px 0;
}

.video-container {
    position: relative;
    min-height: 400px;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.video-play-btn {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: 90px;
    height: 90px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 5;
    cursor: pointer;
}

.video-play-btn svg {
    width: 36px;
    height: 36px;
    color: var(--primary-dark);
    margin-left: 5px;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--white);
}

.video-thumbnail:hover .video-play-btn {
    transform: scale(1.1);
    background: var(--white);
}

/* Video Decorations */
.video-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid var(--accent);
    opacity: 0.3;
    z-index: 1;
}

.video-decoration.top {
    top: -30px;
    right: -30px;
}

.video-decoration.bottom {
    bottom: -30px;
    left: -30px;
}

/* Video Gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.video-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.video-gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.video-gallery-play {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    overflow: hidden;
}

.video-gallery-play svg {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    color: var(--primary-dark);
    margin-left: 3px;
    flex-shrink: 0;
}

.video-gallery-item:hover .video-gallery-play {
    transform: scale(1.1);
    background: var(--white);
}

/* Video Lightbox */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.video-lightbox-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-lightbox-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.video-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 28px;
    color: var(--white);
    line-height: 1;
}

.video-lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

/* Image Lightbox */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.image-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.image-lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 28px;
    color: var(--white);
    line-height: 1;
}

.image-lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

/* ============================================
   Home Page Gallery
============================================ */
.home-gallery {
    padding: 0 !important;
    margin: 0;
}

.home-gallery .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0 !important;
    margin: 0;
    padding: 0;
}

.home-gallery .gallery-item {
    height: 300px;
    margin: 0;
    padding: 0;
    border: none;
}

/* Room Price Badge (for homepage rooms) */
.room-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    font-weight: 600;
    font-size: 18px;
}

.room-price.family-price {
    background: var(--accent);
    color: var(--primary-dark);
}

/* Featured Room Card */
.room-card.featured {
    border: 3px solid var(--accent);
}

/* ============================================
   Gallery Section
============================================ */
.gallery-section {
    padding: 120px 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.gallery-header .section-tag {
    justify-content: center;
}

.gallery-header .section-tag::before,
.gallery-header .section-tag::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

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

.gallery-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

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

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

.gallery-overlay svg {
    width: 50px;
    height: 50px;
    color: var(--white);
}

/* ============================================
   Contact Section
============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

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

.contact-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 40px;
}

.contact-info-list {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--cream);
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
}

.contact-info-content h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

.contact-info-content a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Map */
.contact-visual {
    position: relative;
}

.map-container {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

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

.map-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.map-overlay {
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.map-overlay svg {
    width: 60px;
    height: 60px;
    color: var(--accent);
    margin-bottom: 20px;
}

.map-overlay h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.map-overlay p {
    opacity: 0.8;
    margin-bottom: 25px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.map-btn svg {
    width: 20px;
    height: 20px;
    margin: 0;
}

.contact-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s;
}

.contact-images img:hover {
    transform: scale(1.03);
}

/* ============================================
   Directions Section
============================================ */
.directions-section {
    padding: 100px 0;
    background: var(--cream);
}

.directions-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.directions-header .section-tag {
    justify-content: center;
}

.directions-header .section-tag::before,
.directions-header .section-tag::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

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

.direction-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

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

.direction-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.direction-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.direction-from {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 5px;
}

.direction-to {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
}

.direction-distance {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.direction-distance span {
    font-size: 18px;
    color: var(--text);
}

/* ============================================
   Reservation Form
============================================ */
.reservation-section {
    padding: 100px 0;
    background: var(--cream);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
}

.reservation-form {
    background: var(--white);
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.form-header {
    margin-bottom: 35px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 30px 35px;
    margin: -50px -50px 40px -50px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.form-header h3 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--white);
}

.form-header p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

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

.form-header-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-group label span {
    color: var(--error);
}

.form-control {
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    border: 2px solid #d0d0d0;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--dark);
    background: #fafafa;
    transition: all 0.3s;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: #fffdf5;
}

.form-control::placeholder {
    color: #888;
}

input[type="date"].form-control {
    min-width: 0;
}

.form-control.error {
    border-color: var(--error);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-color: #fafafa;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235a5a5a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    margin-top: 30px;
}

.btn-submit {
    width: 100%;
    padding: 18px 35px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

/* Form Sidebar */
.reservation-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: var(--white);
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.sidebar-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cream);
}

.sidebar-card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.sidebar-card-icon.whatsapp {
    background: var(--whatsapp);
}

.sidebar-card-icon.whatsapp svg {
    color: var(--white);
}

.sidebar-card h4 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 5px;
}

.sidebar-card p {
    font-size: 14px;
    color: var(--text);
}

.sidebar-phone {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
    padding: 15px 20px;
    border: 2px solid var(--primary);
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s;
}

.sidebar-phone:hover {
    background: var(--primary);
    color: var(--white);
}

.sidebar-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.sidebar-feature:last-child {
    margin-bottom: 0;
}

.sidebar-feature-icon {
    width: 45px;
    height: 45px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.sidebar-feature h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}

.sidebar-feature span {
    font-size: 13px;
    color: var(--text);
}

/* ============================================
   Quick Contact Bar
============================================ */
.quick-contact {
    background: var(--primary);
    padding: 25px 0;
}

.quick-contact-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.quick-contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.quick-contact-icon.whatsapp {
    background: var(--whatsapp);
}

.quick-contact-icon.whatsapp svg {
    color: var(--white);
}

.quick-contact-text {
    color: var(--white);
}

.quick-contact-text span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-contact-text a {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.quick-contact-text a:hover {
    color: var(--accent);
}

/* ============================================
   Rating Section
============================================ */
.rating-section {
    padding: 80px 0;
    background: var(--cream);
}

.rating-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.rating-score {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.rating-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 15px 0;
}

.rating-stars svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
}

.rating-label {
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rating-text {
    padding-left: 40px;
    border-left: 3px solid var(--accent);
}

.rating-title {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
}

.rating-desc {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 25px;
}

.rating-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

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

.rating-btn svg {
    width: 20px;
    height: 20px;
}

/* Rating Dark Version */
.rating-section.rating-dark {
    background: var(--primary);
}

.rating-section.rating-dark .rating-score {
    background: rgba(255,255,255,0.1);
    box-shadow: none;
}

.rating-section.rating-dark .rating-number {
    color: var(--accent);
}

.rating-section.rating-dark .rating-label {
    color: rgba(255,255,255,0.7);
}

.rating-section.rating-dark .rating-text {
    border-left-color: var(--accent);
}

.rating-section.rating-dark .rating-title {
    color: var(--white);
}

.rating-section.rating-dark .rating-desc {
    color: rgba(255,255,255,0.8);
}

.rating-section.rating-dark .rating-btn {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.rating-section.rating-dark .rating-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

@media (max-width: 768px) {
    .rating-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .rating-text {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--accent);
        padding-top: 30px;
    }
    
    .rating-number {
        font-size: 56px;
    }
}

/* ============================================
   Award Section
============================================ */
.award-section {
    padding: 100px 0;
    background: var(--cream);
}

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

.award-content .section-tagline {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.award-content .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.award-text {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.award-details {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.award-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 500;
}

.award-detail-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.award-image {
    position: relative;
}

.award-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.award-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.award-badge-year {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.award-badge-text {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .award-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .award-content .section-title {
        font-size: 32px;
    }
    
    .award-image img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .award-section {
        padding: 60px 0;
    }
    
    .award-content .section-title {
        font-size: 28px;
    }
    
    .award-image img {
        height: 300px;
    }
    
    .award-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .award-badge-year {
        font-size: 22px;
    }
}

/* ============================================
   CTA Section
============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 58, 92, 0.95), rgba(15, 40, 64, 0.95)), url('../images/cta-bg.jpg') center/cover;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    white-space: nowrap;
}

.cta-text {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 30px;
}

.cta-phone svg {
    width: 36px;
    height: 36px;
}

.cta-phone:hover {
    color: var(--white);
}

/* ============================================
   Footer
============================================ */
footer {
    background: var(--primary-dark);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .logo {
    margin-bottom: 25px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

.footer-title {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: all 0.3s;
}

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

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

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item span,
.footer-contact-item a,
.footer-contact-item p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* ============================================
   Floating Buttons
============================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.floating-btn.whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    animation: pulse 2s infinite;
}

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

.floating-btn.scroll-top {
    background: var(--primary);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

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

.floating-btn.scroll-top svg {
    width: 24px;
    height: 24px;
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   Lightbox
============================================ */
.video-lightbox,
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.video-lightbox.active,
.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.video-lightbox-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
}

.video-lightbox-content iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.video-lightbox-close,
.image-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 40px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.video-lightbox-close:hover,
.image-lightbox-close:hover {
    color: var(--accent);
}

.image-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.image-lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
}

/* ============================================
   Alert Messages
============================================ */
.alert {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.alert svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Success Message */
.success-message {
    background: var(--white);
    padding: 60px;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon svg {
    width: 50px;
    height: 50px;
    color: var(--white);
}

.success-message h3 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 15px;
}

.success-message p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 30px;
}

/* ============================================
   Stats Section
============================================ */
.stats-section {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   Mobile Menu Overlay
============================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

/* ============================================
   Responsive Design
============================================ */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rooms-list-section .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .video-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .rooms-list-section .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .room-types {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobil Header Top - Ortalama */
    .header-top {
        padding: 15px 20px 12px;
    }
    
    .header-top .logo {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .header-top .logo img {
        width: 45px;
    }
    
    .header-top .logo-text {
        font-size: 16px;
    }
    
    .header-top .logo-text span {
        font-size: 9px;
        letter-spacing: 2px;
    }
    
    .header-inner {
        padding: 15px 20px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        padding: 80px 30px 30px;
        transition: all 0.3s;
        z-index: 999;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    /* Mobil Menü Kapat (X) Butonu */
    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .nav-close svg {
        width: 22px;
        height: 22px;
        color: var(--white);
        transition: all 0.3s;
    }
    
    .nav-close:hover {
        background: rgba(255,255,255,0.1);
        border-color: var(--accent);
    }
    
    .nav-close:hover svg {
        color: var(--accent);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-nav a {
        display: block;
        padding: 15px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-phone {
        display: none;
    }
    
    .lang-switch {
        padding: 6px 12px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .about-grid,
    .video-grid,
    .contact-grid,
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .page-title {
        font-size: 42px;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .directions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 768px) {
    .video-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-gallery-item img {
        height: 200px;
    }
    
    .video-text .section-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    /* Ödüllü Tasarım - Highlights 3'lü alan tek tek */
    .highlights-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .highlight-card {
        padding: 35px 25px;
    }
    
    .highlight-icon {
        width: 70px;
        height: 70px;
    }
    
    .highlight-title {
        font-size: 22px;
    }
    
    /* Ana Sayfa Odalar - Tekli görünüm, foto üstte yazı altta */
    .rooms-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
        padding: 0 15px;
    }
    
    .room-card {
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .room-card-image {
        height: 280px;
        order: -1;
    }
    
    .room-card-image img {
        height: 100%;
        object-fit: cover;
    }
    
    .room-card-content {
        order: 1;
    }
    
    .room-card-title {
        font-size: 24px;
    }
    
    /* Video köşeleri - Mobilde düz */
    .video-thumbnail {
        border-radius: 8px;
        box-shadow: none;
    }
    
    .video-container {
        min-height: auto;
        margin: 0;
    }
    
    .video-play-btn {
        width: 70px;
        height: 70px;
        bottom: 20px;
        left: 20px;
    }
    
    .video-play-btn svg {
        width: 28px;
        height: 28px;
    }
    
    /* Sizin İçin Sunduklarımız - Tekli görünüm & içerik ortalı */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        height: 320px;
    }
    
    .service-card img {
        filter: brightness(0.5);
    }
    
    .service-overlay {
        padding: 25px;
        background: linear-gradient(to top, rgba(15,40,64,0.95) 0%, rgba(26,58,92,0.7) 100%);
        text-align: center;
        align-items: center;
    }
    
    .service-icon {
        opacity: 1;
        transform: translateY(0);
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 24px;
        transform: translateY(0);
    }
    
    .service-text {
        opacity: 1;
        transform: translateY(0);
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .service-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Odalarımız sayfası - 3'lü açıklamalı alan tek tek */
    .room-types {
        flex-direction: column;
        gap: 20px;
    }
    
    .room-type-card {
        width: 100%;
        max-width: 100%;
    }
    
    /* Hakkımızda sayfası düzenlemesi - Foto üstte yazı altta */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
        margin: 0 -15px;
    }
    
    .about-image img {
        width: 100%;
        border-radius: 0;
    }
    
    .about-content {
        padding: 0 5px;
        order: 1;
    }
    
    .about-text {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .about-feature {
        padding: 15px;
    }
    
    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto 0;
        width: 110px;
        height: 110px;
    }
    
    /* Düğmeli Evler Müze & Hikayesi - Foto üstte yazı altta */
    .story-grid,
    .history-grid,
    .museum-grid,
    .explore-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .story-image,
    .history-image,
    .museum-image,
    .explore-image {
        order: -1 !important;
        margin: 0 -15px;
    }
    
    .story-image img,
    .history-image img,
    .museum-image img,
    .explore-image img {
        width: 100%;
        border-radius: 0;
    }
    
    .story-content,
    .history-content,
    .museum-content,
    .explore-content {
        order: 1 !important;
        padding: 0 5px;
    }
    
    /* Intro grid düzenlemesi (Sürdürülebilirlik vs) - Foto üstte yazı altta */
    .intro-grid,
    .sustainability-intro-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .intro-image,
    .sustainability-image {
        order: -1 !important;
        margin: 0 -15px;
    }
    
    .intro-image img,
    .sustainability-image img {
        width: 100%;
        border-radius: 0;
    }
    
    .intro-content,
    .sustainability-content {
        order: 1 !important;
        padding: 0 5px;
    }
    
    .intro-badge,
    .sustainability-badge {
        bottom: -20px;
        right: 20px;
        width: 100px;
        height: 100px;
    }
    
    .intro-badge svg,
    .sustainability-badge svg {
        width: 35px;
        height: 35px;
    }
    
    .intro-badge span,
    .sustainability-badge span {
        font-size: 9px;
    }
    
    /* Galeri - Tam genişlik, tekli görünüm, lightbox uyumlu */
    .gallery-section {
        overflow: hidden;
        padding: 50px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
        padding: 0;
        overflow: hidden;
    }
    
    .gallery-item {
        height: auto;
        aspect-ratio: 4/3;
        border-radius: 8px;
        overflow: hidden;
        margin: 0 15px;
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: pointer;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4/3;
        height: auto;
    }
    
    /* Odalar sayfası düzenlemesi */
    .rooms-list-section .rooms-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
        padding: 0 15px;
    }
    
    .rooms-list-section .room-card {
        margin: 0;
        display: flex;
        flex-direction: column;
    }
    
    .rooms-list-section .room-card-image {
        height: 280px;
        order: -1;
    }
    
    .rooms-list-section .room-card-content {
        order: 1;
    }
    
    /* PDF kartları */
    .pdf-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pdf-card {
        padding: 35px 25px;
    }
    
    /* Values grid */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-about .logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title {
        margin-top: 20px;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-title {
        font-size: 24px;
        white-space: nowrap;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .form-control,
    input[type="date"],
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    
    .reservation-form {
        padding: 25px;
        overflow: hidden;
    }
    
    .form-header {
        margin: -25px -25px 25px -25px;
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .quick-contact-inner {
        flex-direction: column;
        gap: 25px;
    }
    
    .quick-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .quick-contact-text {
        text-align: center;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    /* Form container overflow */
    .reservation-form,
    .form-row,
    .form-group {
        overflow: hidden;
    }
    
    /* Section padding azaltma */
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
        text-transform: none;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    /* Page Header - Menü altında kalma düzeltmesi */
    .page-header {
        min-height: 320px;
        padding-top: 170px;
    }
    
    .page-header-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .page-header-icon svg {
        width: 28px;
        height: 28px;
    }
    
    /* Container overflow düzeltmesi */
    .container {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }
    
    .hero-desc {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-tag {
        font-size: 13px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .btn-primary,
    .btn-outline,
    .btn-secondary {
        padding: 14px 25px;
        font-size: 12px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* Servis kartları */
    .service-card {
        height: 240px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-text {
        font-size: 13px;
    }
    
    /* Oda kartları */
    .room-card-image {
        height: 220px;
    }
    
    .room-card-content {
        padding: 20px;
    }
    
    .room-card-title {
        font-size: 22px;
    }
    
    /* About */
    .about-content {
        padding: 0;
    }
    
    .about-text {
        font-size: 14px;
    }
    
    .about-badge {
        width: 100px;
        height: 100px;
    }
    
    .about-badge .years {
        font-size: 32px;
    }
    
    /* Video */
    .video-section {
        padding: 40px 0;
    }
    
    .video-text {
        padding: 0 10px;
    }
    
    /* CTA */
    .cta-title {
        font-size: 20px;
        white-space: nowrap;
    }
    
    .cta-text {
        font-size: 14px;
    }
    
    /* Rezervasyon form */
    .reservation-form {
        padding: 12px;
        overflow: hidden;
    }
    
    .form-row {
        display: block !important;
        width: 100%;
    }
    
    .form-group {
        width: 100% !important;
        margin-bottom: 15px;
        overflow: hidden;
    }
    
    .form-control {
        padding: 12px 10px;
        font-size: 14px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    input[type="date"],
    select.form-control {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 8px;
    }
    
    .form-group label {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    
    .form-header {
        margin: -12px -12px 20px -12px;
        padding: 15px;
    }
    
    .form-header-title {
        font-size: 22px;
    }
    
    /* Footer */
    .footer-desc {
        font-size: 14px;
    }
    
    /* Page header */
    .page-header {
        min-height: 300px;
        padding-top: 160px;
    }
    
    .page-header-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .page-header-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .breadcrumb {
        font-size: 12px;
        gap: 10px;
    }
}

/* =====================================================
   ROOM DETAIL PAGE STYLES
   ===================================================== */

/* Room Hero */
.room-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

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

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

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15,40,64,.85) 0%, rgba(26,58,92,.4) 35%, transparent 50%, transparent 55%, rgba(26,58,92,.3) 75%, rgba(15,40,64,.9) 100%);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 60px;
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hero-indicator {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: all .3s;
}

.hero-indicator.active {
    background: var(--accent);
    width: 60px;
}

.room-hero-content {
    position: relative;
    z-index: 10;
    padding: 60px;
    width: 100%;
}

.room-hero-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.room-badge {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.room-badge.family-badge {
    background: var(--primary);
    color: var(--white);
}

.room-hero h1 {
    font-size: 72px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1;
}

.room-hero-subtitle {
    font-size: 20px;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.room-hero-price {
    position: absolute;
    bottom: 60px;
    right: 60px;
    background: var(--primary);
    padding: 25px 35px;
    text-align: center;
}

.room-hero-price .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.room-hero-price .per {
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 1px;
}

/* Breadcrumb */
.breadcrumb-bar {
    background: var(--cream);
    padding: 15px 0;
}

.breadcrumb-bar .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-bar a { color: var(--primary); }
.breadcrumb-bar a:hover { color: var(--accent); }
.breadcrumb-bar span { color: var(--text); }

/* Room Content */
.room-content {
    padding: 80px 0;
    background: var(--white);
}

.room-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.room-description {
    font-size: 16px;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Room Detail Image */
.room-detail-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.room-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

.room-detail-image:hover img {
    transform: scale(1.02);
}

.room-warning {
    background: linear-gradient(135deg, #fff8e8 0%, #fff5dc 100%);
    border-left: 4px solid var(--accent);
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.room-warning.shared-warning {
    border-left-color: #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
}

.room-warning p {
    font-size: 14px;
    color: var(--dark);
    font-style: italic;
    margin: 0;
}

/* Features Box */
.features-box {
    background: var(--cream);
    padding: 40px;
}

.features-title {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    font-size: 15px;
    color: var(--dark);
}

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

.features-list svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.book-btn {
    display: block;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 30px;
    border: 2px solid var(--primary);
    transition: all .3s;
}

.book-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

/* Room Gallery */
.gallery-section {
    padding: 80px 0;
    background: var(--cream);
}

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

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
}

.gallery-item-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,58,92,0);
    transition: background .3s;
    pointer-events: none;
}

.gallery-item:hover::after { background: rgba(26,58,92,.3); }

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: transform .3s;
}

.gallery-item:hover .gallery-zoom { transform: translate(-50%,-50%) scale(1); }

.gallery-zoom svg {
    width: 24px;
    height: 24px;
    color: var(--primary-dark);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: color .3s;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .3s;
}

.lightbox-nav:hover { background: var(--white); }
.lightbox-nav svg { width: 24px; height: 24px; color: var(--primary-dark); }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* Other Rooms Slider */
.other-rooms {
    padding: 100px 0;
    background: var(--white);
}

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

.rooms-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.rooms-slider {
    display: flex;
    gap: 25px;
    transition: transform .5s ease;
}

.mini-room-card {
    min-width: calc(25% - 19px);
    background: var(--cream);
    overflow: hidden;
    transition: all .3s;
    flex-shrink: 0;
}

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

.mini-room-card.current {
    border: 3px solid var(--accent);
}

.mini-room-card.current .mini-room-badge {
    background: var(--accent);
    color: var(--primary-dark);
}

.mini-room-card.premium {
    border: 3px solid var(--accent);
}

.mini-room-card.premium .mini-room-badge {
    background: var(--accent);
    color: var(--primary-dark);
}

.mini-room-card.family .mini-room-price {
    background: var(--accent);
    color: var(--primary-dark);
}

.mini-room-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.mini-room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

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

.mini-room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    letter-spacing: 1px;
}

.shared-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
    padding: 4px 8px;
    letter-spacing: .5px;
}

.mini-room-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 12px;
    font-weight: 700;
    font-size: 14px;
}

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

.mini-room-name {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 5px;
}

.mini-room-type {
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all .3s;
}

.slider-nav:hover { background: var(--accent); }
.slider-nav svg { width: 24px; height: 24px; color: var(--white); }
.slider-nav:hover svg { color: var(--primary-dark); }
.slider-prev { left: 0; }
.slider-next { right: 0; }

/* =====================================================
   GALLERY PAGE STYLES
   ===================================================== */

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

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

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s;
    z-index: 2;
    pointer-events: none;
}

.zoom-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.gallery-item:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* =====================================================
   SUSTAINABILITY PAGE STYLES
   ===================================================== */

.sustainability-header {
    background: linear-gradient(135deg, #2d5a3d 0%, var(--primary-dark) 100%) !important;
}

.sustainability-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.sustainability-intro {
    padding: 100px 0;
    background: var(--white);
}

.sustainability-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sustainability-image {
    position: relative;
}

.sustainability-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 30px 60px rgba(0,0,0,.15);
}

.sustainability-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: #2d5a3d;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(45,90,61,.3);
}

.sustainability-badge svg {
    width: 50px;
    height: 50px;
    color: var(--white);
    margin-bottom: 5px;
}

.sustainability-badge span {
    font-size: 11px;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sustainability-content .section-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.sustainability-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 20px;
}

.sustainability-list {
    margin: 30px 0;
    list-style: none;
    padding: 0;
}

.sustainability-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.sustainability-list svg {
    width: 24px;
    height: 24px;
    color: #2d5a3d;
    flex-shrink: 0;
    margin-top: 2px;
}

.sustainability-list span {
    font-size: 15px;
    color: var(--dark);
}

/* PDF Section */
.pdf-section {
    padding: 100px 0;
    background: var(--cream);
}

.pdf-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.pdf-header .section-tag {
    justify-content: center;
}

.pdf-desc-header {
    color: var(--text);
    margin-top: 15px;
}

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

.pdf-card {
    background: var(--white);
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.pdf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2d5a3d, var(--accent));
}

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

.pdf-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #2d5a3d 0%, #3d7a52 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
}

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

.pdf-icon svg {
    width: 45px;
    height: 45px;
    color: var(--white);
}

.pdf-year {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pdf-title {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
}

.pdf-desc {
    font-size: 14px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 25px;
}

.pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2d5a3d;
    color: var(--white);
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all .3s;
}

.pdf-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.pdf-btn svg {
    width: 18px;
    height: 18px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--white);
}

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

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

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--cream);
    transition: all .3s;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #2d5a3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.value-title {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
}

.value-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

.sustainability-cta {
    background: linear-gradient(135deg, #2d5a3d 0%, var(--primary-dark) 100%);
}

/* =====================================================
   EXPLORE PAGES STYLES
   ===================================================== */

.explore-header {
    background-size: cover;
    background-position: center;
}

.explore-content-section {
    padding: 120px 0;
    background: var(--white);
}

.explore-content-section.alt {
    background: var(--cream);
}

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

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

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

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

.explore-images.single {
    grid-template-columns: 1fr;
}

.explore-img {
    overflow: hidden;
    position: relative;
}

.explore-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

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

.explore-img.large {
    grid-row: span 2;
    height: 500px;
}

.explore-img:not(.large):not(.full) {
    height: 240px;
}

.explore-img.full {
    height: 400px;
}

.explore-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 50px rgba(26,58,92,.3);
    z-index: 10;
}

.explore-badge.award {
    width: 160px;
    height: 160px;
    background: var(--accent);
}

.explore-badge .badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.explore-badge.award .badge-number {
    color: var(--primary-dark);
    font-size: 36px;
}

.explore-badge .badge-text {
    font-size: 11px;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.8;
}

.explore-badge.award .badge-text {
    color: var(--primary-dark);
    font-size: 10px;
}

.explore-info .section-tag {
    display: flex;
    align-items: center;
    gap: 15px;
}

.explore-info .section-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.explore-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 20px;
}

.explore-features {
    margin: 35px 0;
}

.explore-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.explore-feature svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.explore-feature span {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

.explore-highlight {
    background: var(--primary);
    padding: 30px;
    margin-top: 30px;
}

.explore-highlight h4 {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 15px;
}

.explore-highlight p {
    font-size: 14px;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    margin: 0;
}

/* Explore Stats */
.explore-stats-section {
    padding: 80px 0;
    background: var(--primary);
}

.explore-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.explore-stat .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.explore-stat .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
}

/* Explore Cards */
.explore-cards-section {
    padding: 100px 0;
    background: var(--white);
}

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

.explore-cards-header .section-tag {
    justify-content: center;
}

.explore-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.explore-card {
    background: var(--cream);
    padding: 40px 30px;
    text-align: center;
    transition: all .3s;
}

.explore-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

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

.explore-card-icon svg {
    width: 35px;
    height: 35px;
    color: var(--accent);
}

.explore-card h4 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
}

.explore-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

/* =====================================================
   RESPONSIVE - NEW STYLES
   ===================================================== */

@media (max-width: 1200px) {
    .room-grid {
        grid-template-columns: 1fr 350px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mini-room-card {
        min-width: calc(33.333% - 17px);
    }
    
    .values-grid,
    .explore-cards-grid,
    .explore-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .room-hero h1 { font-size: 48px; }
    
    .room-hero-price {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 20px;
    }
    
    .room-grid {
        grid-template-columns: 1fr;
    }
    
    .mini-room-card {
        min-width: calc(50% - 13px);
    }
    
    .sustainability-intro-grid,
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .explore-grid.reverse {
        direction: ltr;
    }
    
    .pdf-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .room-hero { 
        height: auto;
        min-height: 80vh;
        padding-top: 140px;
    }
    .room-hero-content { padding: 30px; }
    .room-hero h1 { font-size: 38px; }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mini-room-card {
        min-width: 100%;
    }
    
    .rooms-slider-container { padding: 0 50px; }
    
    .lightbox-nav { display: none; }
    
    .hero-indicators {
        left: 30px;
        bottom: 20px;
    }
    
    .values-grid,
    .explore-cards-grid,
    .explore-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .explore-images {
        grid-template-columns: 1fr;
    }
    
    .explore-img.large {
        grid-row: span 1;
        height: 300px;
    }
    
    .explore-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto 0;
    }
    
    .sustainability-badge {
        bottom: -20px;
        right: 10px;
        width: 100px;
        height: 100px;
    }
    
    .sustainability-badge svg {
        width: 35px;
        height: 35px;
    }
    
    .explore-stat .stat-number {
        font-size: 42px;
    }
}

/* =====================================================
   ABOUT PAGE STYLES - Hakkımızda Sayfası
   ===================================================== */

/* About Intro Section */
.about-intro {
    padding: 120px 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* History Section */
.history-section {
    padding: 120px 0;
    background: var(--white);
}

.history-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.history-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* =====================================================
   MOBILE OVERRIDES - Mobil Düzenlemeleri
   ===================================================== */

@media (max-width: 768px) {
    /* Hakkımızda & Ana Sayfa - About Intro (Düğmeli Evlerde Müze) */
    .about-intro {
        padding: 60px 0;
    }
    
    .about-intro-grid,
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .about-images {
        position: relative;
        order: -1;
        margin-bottom: 40px;
    }
    
    .about-img-main {
        width: 100% !important;
        aspect-ratio: 16/10;
        border-radius: 8px;
        position: static;
    }
    
    .about-img-small {
        position: absolute !important;
        bottom: -30px !important;
        right: 15px !important;
        width: 55% !important;
        aspect-ratio: 4/3;
        border: 5px solid var(--white) !important;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
        border-radius: 8px;
    }
    
    .about-badge {
        top: 15px;
        right: 15px;
        width: 90px;
        height: 90px;
    }
    
    .about-badge .number {
        font-size: 28px;
    }
    
    .about-badge .text {
        font-size: 8px;
    }
    
    .about-content {
        order: 1;
    }
    
    /* Hakkımızda - History (Düğmeli Evlerin Hikayesi) */
    .history-section {
        padding: 60px 0;
    }
    
    .history-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .history-image {
        order: -1 !important;
    }
    
    .history-image img {
        width: 100%;
        border-radius: 8px;
    }
    
    .history-content {
        order: 1 !important;
    }
    
    /* Galeri Sayfası - Tam genişlik görseller */
    .gallery-page-section .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
        padding: 0;
    }
    
    .gallery-page-section .gallery-item {
        margin: 0;
        border-radius: 8px;
        aspect-ratio: 4/3;
        height: auto;
    }
    
    .gallery-page-section .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Oda Detay Sayfası - Galeri Mobil */
    .gallery-section .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    
    .gallery-section .gallery-item {
        border-radius: 8px;
        aspect-ratio: 4/3;
        height: auto;
    }
    
    .gallery-section .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Odalar Sayfası - Room Card Mobil */
    .rooms-section .rooms-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .rooms-section .room-card {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }
    
    .rooms-section .room-card-image {
        order: -1 !important;
        height: 280px !important;
        min-height: 280px !important;
        width: 100% !important;
    }
    
    .rooms-section .room-card-content {
        order: 1 !important;
        padding: 25px;
    }
    
    .rooms-section .room-name {
        font-size: 26px;
    }
    
    .rooms-section .room-desc {
        font-size: 14px;
    }
    
    /* Gallery Filters */
    .gallery-filters {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
