/* ===================================
   Dora Thermal - Modern CSS Stylesheet
   =================================== */

/* Root Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #2c5f7c;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --text-color: #333333;
    --gray-color: #6c757d;
    --border-color: #e0e0e0;
    
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

p, span, div, li {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    color: #1a1a1a;
}

section {
    color: #333333;
}

section p, section span, section div {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
.col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px; }
.col-lg-3 { flex: 0 0 25%; max-width: 25%; padding: 0 15px; }
.col-lg-2 { flex: 0 0 16.666%; max-width: 16.666%; padding: 0 15px; }

.align-center {
    align-items: center;
}

/* Section Spacing */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-color);
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-header.text-center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary, .btn-outline, .btn-call {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--dark-color);
    border-color: var(--dark-color);
}

.btn-outline:hover {
    background: var(--dark-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================
   HEADER & NAVIGATION - STICKY BEYAZ BACKGROUND
   ======================================== */
.header {
    position: sticky !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 999 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    background: #ffffff !important;
}

.navbar {
    padding: 15px 0;
    background: #ffffff !important;
}

.navbar .container {
    background: #ffffff !important;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
}

.logo img {
    width: 45px;
    height: 45px;
}

.nav-menu {
    display: flex !important;
    gap: 35px;
    align-items: center;
    position: relative;
    right: auto;
    background: transparent;
}

.nav-menu li {
    display: block;
}

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-color) !important;
    position: relative;
    text-decoration: none;
    display: inline-block;
    opacity: 1;
    visibility: visible;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}

.btn-call:hover {
    background: transparent;
    color: var(--secondary-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

.nav-menu.active {
    background: #ffffff !important;
}

/* ========================================
   HERO SECTION - MOBİL TAM EKRAN + BEYAZ YAZI + SİYAH GÖLGE
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh !important;
    min-height: 100vh !important;
    overflow: hidden;
    margin-top: 0 !important;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    width: 100%;
}

.hero-text {
    color: var(--white-color);
    max-width: 900px;
    padding: 0 50px;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #ffffff !important;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0px 0px 10px rgba(0, 0, 0, 0.6),
        0px 0px 20px rgba(0, 0, 0, 0.4) !important;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 45px;
    color: #ffffff !important;
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.8),
        0px 0px 8px rgba(0, 0, 0, 0.5) !important;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: backwards;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.hero-nav {
    position: absolute;
    bottom: 120px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 1;
}

.hero-prev, .hero-next {
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.15);
    color: var(--white-color);
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover, .hero-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 1;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator:hover {
    background: rgba(255,255,255,0.6);
    transform: scale(1.2);
}

.hero-indicator.active {
    background: var(--white-color);
    border-color: var(--white-color);
    width: 40px;
    border-radius: 8px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick Info Bar */
.quick-info {
    background: var(--white-color);
    padding: 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 3;
    box-shadow: var(--shadow-lg);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.quick-info-item {
    text-align: center;
}

.quick-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 30px;
    border: 2px solid var(--primary-color);
}

.quick-info-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.quick-info-item p {
    color: var(--gray-color);
    font-size: 15px;
}

/* About Section */
.about-images {
    position: relative;
}

.about-images .img-main {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    color: var(--primary-color);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
}

.about-badge i {
    font-size: 35px;
}

.about-badge strong {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

.about-badge span {
    font-size: 14px;
    opacity: 0.9;
}

.about-content {
    padding-left: 30px;
}

.about-content .lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

/* Room Card */
.room-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.room-card.featured {
    display: grid;
    grid-template-columns: 45% 55%;
}

.room-image {
    position: relative;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.room-content {
    padding: 40px;
}

.room-header h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 15px;
}

.room-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-color);
    font-size: 14px;
}

.room-meta i {
    color: var(--primary-color);
}

.room-description {
    margin-bottom: 25px;
    line-height: 1.8;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
}

.room-features i {
    color: var(--primary-color);
}

.room-footer {
    display: flex;
    gap: 15px;
}

/* Feature Box */
.feature-box {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 35px;
    border: 2px solid var(--primary-color);
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-box p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white-color);
    font-size: 40px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Reservation Form */
.reservation-form {
    background: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Contact Info */
.contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 28px;
    color: var(--primary-color);
    min-width: 40px;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-item p,
.contact-item a {
    color: var(--gray-color);
    font-size: 15px;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: white;
    color: #333;
    border-top: 3px solid var(--primary-color);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
}

.footer-logo h3 {
    color: #1a1a1a;
    font-family: var(--font-heading);
    font-size: 24px;
}

.footer-widget p {
    margin-bottom: 25px;
    line-height: 1.8;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-widget h4 {
    color: var(--dark-color);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-color);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 18px;
    min-width: 20px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 25px 0;
    background: #f8f9fa;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #555;
    opacity: 0.9;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: white;
}

/* WhatsApp Float - Desktop Only */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 20px 50px rgba(37,211,102,0.4);
    }
}

/* Mobile Sticky Footer Buttons */
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white-color);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 12px 15px;
    gap: 10px;
}

.mobile-sticky-footer a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-sticky-footer .btn-whatsapp {
    background: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.mobile-sticky-footer .btn-phone {
    background: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.mobile-sticky-footer .btn-whatsapp:active {
    background: #20ba5a;
    transform: scale(0.95);
}

.mobile-sticky-footer .btn-phone:active {
    background: #234d66;
    transform: scale(0.95);
}

/* ========================================
   ELEVENLABS CONVAI BUTON YÖNETİMİ
   ======================================== */

/* Masaüstü: ConvAI gizli */
elevenlabs-convai {
    position: fixed !important;
    top: -10px !important;
    right: 30px !important;
    z-index: 10000 !important;
    width: auto !important;
    height: auto !important;
}

/* ConvAI buton stili */
elevenlabs-convai button,
elevenlabs-convai .convai-button,
elevenlabs-convai > div,
elevenlabs-convai > * {
    padding: 9px 16px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, #d4a574 0%, #c89360 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 3px 15px rgba(212, 165, 116, 0.35) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
}

elevenlabs-convai button:hover,
elevenlabs-convai .convai-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.45) !important;
}

/* ========================================
   MASAÜSTÜ GÖRÜNÜM (769px+)
   ======================================== */
@media (min-width: 769px) {
    /* Masaüstünde rezervasyon butonu görünsün */
    .nav-right .btn-primary {
        display: inline-block !important;
    }
    
    /* Masaüstünde ConvAI gizli */
    elevenlabs-convai {
        display: none !important;
    }
}

/* ========================================
   TABLET GÖRÜNÜM (769px-991px)
   ======================================== */
@media (max-width: 991px) {
    .col-lg-6, .col-lg-4, .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: var(--white-color);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        align-items: flex-start;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .btn-call span {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .room-card.featured {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   MOBİL GÖRÜNÜM (768px ve altı)
   ======================================== */
@media (max-width: 768px) {
    
    /* MOBİLDE REZERVASYON BUTONU GİZLİ */
    .nav-right .btn-primary {
        display: none !important;
    }
    
    /* MOBİLDE CONVAI GÖRÜNSÜN */
    elevenlabs-convai {
        display: block !important;
        position: fixed !important;
        top: 15px !important;
        right: 60px !important;
        z-index: 10000 !important;
    }
    
    /* Hamburger menü */
    .mobile-toggle {
        position: fixed !important;
        top: 18px !important;
        right: 15px !important;
        z-index: 10001 !important;
        width: 35px !important;
        height: 35px !important;
    }
    
    /* Logo */
    .logo {
        position: fixed !important;
        top: 10px !important;
        left: 15px !important;
        z-index: 10000 !important;
    }
    
    .logo img {
        height: 50px !important;
    }
    
    /* Header */
    .header .nav-wrapper {
        min-height: 70px !important;
        padding: 10px 15px !important;
    }
    
    /* Hero tam ekran */
    .hero {
        height: 100vh !important;
        min-height: 100vh !important;
        margin-top: 0 !important;
    }
    
    .hero-content {
        height: 100vh !important;
        padding-top: 0 !important;
    }
    
    .hero-text {
        padding: 0 20px !important;
        max-width: 100% !important;
    }
    
    .hero-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        text-shadow: 
            2px 2px 6px rgba(0, 0, 0, 0.9),
            0px 0px 15px rgba(0, 0, 0, 0.7),
            0px 0px 25px rgba(0, 0, 0, 0.5) !important;
    }
    
    .hero-subtitle {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
        text-shadow: 
            1px 1px 4px rgba(0, 0, 0, 0.9),
            0px 0px 10px rgba(0, 0, 0, 0.6) !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100% !important;
        max-width: 280px !important;
        padding: 14px 25px !important;
        font-size: 15px !important;
    }
    
    .hero-nav {
        display: none !important;
    }
    
    .hero-indicators {
        bottom: 20px !important;
    }
    
    /* Mobile Sticky Footer görünsün */
    .mobile-sticky-footer {
        display: flex !important;
    }
    
    /* WhatsApp float gizli */
    .whatsapp-float {
        display: none !important;
    }
    
    /* Body padding */
    body {
        padding-bottom: 70px !important;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .room-footer {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .row {
        margin: 0 -15px;
    }
    
    /* Küçük ekranlar (iPhone SE) */
    @media (max-width: 380px) {
        elevenlabs-convai {
            right: 52px !important;
            top: 16px !important;
        }
        
        elevenlabs-convai button,
        elevenlabs-convai .convai-button {
            padding: 7px 13px !important;
            font-size: 12px !important;
        }
        
        .mobile-toggle {
            right: 12px !important;
            width: 32px !important;
            height: 32px !important;
        }
        
        .logo img {
            height: 45px !important;
        }
        
        .hero-title {
            font-size: 28px !important;
        }
        
        .hero-subtitle {
            font-size: 14px !important;
        }
    }
}

/* Text Alignment Utilities */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* Margin & Padding Utilities */
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
