/*
 * MERSIN PRINCESS HOTELS - MASTER STYLESHEET
 * Version: 1.0.0
 * Description: Tek merkezi CSS dosyası - Tüm sayfalar için
 */

/* ============================================
   1. CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --primary-bronze: #c2a476;
    --secondary-bronze: #b8956a;
    --accent-gold: #d4af37;
    --dark-charcoal: #1a1a1a;
    --cream-white: #faf6f2;
    --light-gray: #f8f9fa;
    --corporate-navy: #0f172a;
    --corporate-slate: #1e293b;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-size-base: 16px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
}

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--corporate-navy), var(--corporate-slate));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

#preloader .spinner {
    text-align: center;
    color: white;
}

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

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

#preloader p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-top: 1rem;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-charcoal);
    background-color: var(--cream-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--dark-charcoal);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

/* ============================================
   4. NAVBAR
   ============================================ */
.navbar {
    background: #f9f6f1;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: var(--z-fixed);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.navbar.scrolled {
    background: #f9f6f1;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

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

.navbar-brand {
    flex-shrink: 0;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
}

.navbar-brand:hover {
    transform: none;
}

.navbar-brand .logo {
    height: 130px;
    width: auto;
    transition: var(--transition-base);
    display: block;
    margin-bottom: -60px;
    margin-top: -14px;
}

.navbar.scrolled .navbar-brand .logo {
    height: 130px;
    margin-bottom: -60px;
    margin-top: -14px;
}

/* Mobile logo - f-logo.png */
.navbar-brand .logo-mobile {
    display: none;
    height: 40px;
    width: auto;
    transition: var(--transition-base);
}

.navbar-collapse {
    flex-grow: 1;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    position: relative;
    transition: var(--transition-base);
    border-radius: var(--radius-sm);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-bronze), var(--accent-gold));
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-bronze);
    background: rgba(194, 164, 118, 0.08);
}

.navbar-actions {
    flex-shrink: 0;
    margin-left: 1rem;
}

.btn-reservation {
    background: linear-gradient(135deg, var(--primary-bronze), var(--accent-gold));
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(194, 164, 118, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    border: none;
    text-decoration: none;
}

.btn-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(194, 164, 118, 0.5);
    color: white;
}

.btn-reservation i {
    font-size: 1rem;
}

.navbar-toggler {
    border: 2px solid var(--primary-bronze);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.navbar-toggler:hover {
    background: rgba(194, 164, 118, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(194, 164, 118, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c2a476' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   5. HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('images/slide.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
    color: white;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

/* ============================================
   6. QUICK RESERVATION
   ============================================ */
.quick-reservation {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    z-index: 10;
}

.reservation-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.reservation-card .form-label {
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
}

.reservation-card .form-control,
.reservation-card .form-select {
    border: 2px solid #e0e0e0;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.reservation-card .form-control:focus,
.reservation-card .form-select:focus {
    border-color: var(--primary-bronze);
    box-shadow: 0 0 0 0.2rem rgba(194, 164, 118, 0.25);
}

/* Mobilde gizle */
@media (max-width: 767.98px) {
    .quick-reservation {
        display: none;
    }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-bronze), var(--accent-gold));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(194, 164, 118, 0.3);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 164, 118, 0.5);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--primary-bronze);
    border: 2px solid var(--primary-bronze);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(194, 164, 118, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-bronze);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 164, 118, 0.4);
}

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

/* ============================================
   8. FEATURES SECTION
   ============================================ */
.features-section {
    margin-top: 80px;
    padding: 4rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

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

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 0;
}

/* ============================================
   9. SECTION HEADERS
   ============================================ */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-bronze), var(--accent-gold));
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* ============================================
   10. ROOM CARDS
   ============================================ */
.rooms-section {
    padding: 5rem 0;
}

.room-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-bronze);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.room-badge.badge-premium {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.room-badge.badge-luxury {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.room-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.room-content p {
    color: #666;
    margin-bottom: 1rem;
    flex: 1;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.room-features span {
    background: var(--light-gray);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--dark-charcoal);
}

.room-features i {
    color: var(--primary-bronze);
    margin-right: 0.3rem;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.room-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-bronze);
}

.room-price small {
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   11. SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--light-gray);
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: #666;
    margin-bottom: 0;
}

/* ============================================
   12. TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card .stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--dark-charcoal);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* ============================================
   13. CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--corporate-navy), var(--corporate-slate));
    color: white;
    padding: 5rem 0;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-note {
    color: white;
    opacity: 0.8;
}

.cta-note a {
    color: var(--accent-gold);
    font-weight: 600;
}

.cta-note a:hover {
    text-decoration: underline;
}

/* ============================================
   14. FOOTER
   ============================================ */
.footer {
    background: var(--dark-charcoal);
    color: white;
}

.footer-logo {
    max-width: 150px;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-bronze);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    padding: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-bronze);
    padding-left: 5px;
}

.footer-contact {
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    color: var(--primary-bronze);
    margin-top: 0.2rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--primary-bronze);
}

.newsletter-form .input-group {
    margin-top: 1rem;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 0.75rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--primary-bronze);
    color: white;
    box-shadow: none;
}

.btn-newsletter {
    background: var(--primary-bronze);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    transition: var(--transition-base);
}

.btn-newsletter:hover {
    background: var(--accent-gold);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.footer-bottom {
    padding-top: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition-base);
}

.footer-bottom a:hover {
    color: var(--primary-bronze);
}

/* ============================================
   15. SCROLL TO TOP
   ============================================ */
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: var(--z-sticky);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: white;
}

/* Directions Float Button */
.directions-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #4285F4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: var(--z-sticky);
    box-shadow: 0 4px 20px rgba(66, 133, 244, 0.4);
    transition: var(--transition-base);
    animation: pulse-directions 2s ease-in-out infinite;
}

.directions-float:hover {
    background: #3367D6;
    transform: scale(1.1);
    color: white;
}

@keyframes pulse-directions {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(66, 133, 244, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(66, 133, 244, 0.7);
    }
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: var(--z-modal);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-link {
    color: var(--accent-gold);
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-link:hover {
    color: var(--primary-bronze);
}

/* ============================================
   16. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   17. RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .hero-section {
        height: 80vh;
    }
    
    .quick-reservation {
        position: relative;
        bottom: 0;
        margin-top: -30px;
    }
    
    .features-section {
        margin-top: 50px;
    }
    
    /* Mobil Menü - Tam Ekran */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #f9f6f1;
        padding: 70px 0 2rem 0;
        margin: 0;
        overflow-y: auto;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: flex !important;
    }
    
    .navbar-nav {
        padding: 2rem 0;
        gap: 0;
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .navbar-nav.mx-auto {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        padding: 1.5rem 2rem;
        border-radius: 0;
        width: 100%;
        text-align: center;
        font-size: 1.3rem;
        font-weight: 600;
        border-bottom: 1px solid rgba(194, 164, 118, 0.15);
        display: block;
        color: var(--dark-charcoal);
        background: transparent;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(194, 164, 118, 0.15);
        color: var(--primary-bronze);
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .navbar-actions {
        margin: 2rem 0 0 0;
        padding: 0 2rem;
        width: 100%;
    }
    
    .btn-reservation {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 2rem;
        font-size: 1.2rem;
    }
    
    .navbar-toggler {
        position: relative;
        z-index: 10000;
        border: 2px solid var(--primary-bronze);
        padding: 0.5rem 0.75rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(194, 164, 118, 0.25);
    }
    
    /* Hamburger menü icon'unu X'e çevir */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c2a476' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
    }
    
    /* Header navbar ve logo mobil menü açıkken de görünsün */
    .navbar {
        z-index: 10001 !important;
        position: fixed !important;
    }
    
    .navbar .container {
        position: relative;
        z-index: 10001;
    }
    
    .navbar-brand {
        position: relative;
        z-index: 10002;
    }
    
    .navbar-brand .logo-mobile {
        position: relative;
        z-index: 10002;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .directions-float {
        bottom: 80px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn-primary {
        width: 100%;
    }
    
    .page-header {
        padding: 160px 0 110px;
        background-attachment: scroll;
    }
    
    .page-header-icon {
        width: 85px;
        height: 85px;
    }
    
    .page-header-icon i {
        font-size: 2.5rem;
    }
    
    .page-header-stats {
        gap: 2rem;
    }
    
    .page-header-decoration::before,
    .page-header-decoration::after {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        display: block;
        margin: 0.5rem 0;
    }
    
    .reservation-card {
        padding: 1.5rem;
    }
    
    .room-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .room-footer .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 70px;
    }
    
    .directions-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 70px;
    }
    
    .page-header {
        padding: 140px 0 90px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .page-header h1::after {
        width: 80px;
        height: 3px;
    }
    
    .page-header p {
        font-size: 1.05rem;
        margin-top: 1.5rem;
    }
    
    .page-header-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 2rem;
    }
    
    .page-header-icon i {
        font-size: 2.2rem;
    }
    
    .page-header-breadcrumb {
        font-size: 0.9rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .page-header-breadcrumb a,
    .page-header-breadcrumb span {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .page-header-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .page-header-stat-number {
        font-size: 2rem;
    }
    
    .page-header::after {
        height: 80px;
    }
    
    /* Show mobile logo, hide desktop logo */
    .navbar-brand .logo {
        display: none;
    }
    
    .navbar-brand .logo-mobile {
        display: block;
        height: 40px;
        margin: 0;
    }
    
    .navbar.scrolled .navbar-brand .logo-mobile {
        height: 40px;
    }
}

@media (max-width: 575.98px) {
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 75px;
        right: 15px;
    }
    
    .directions-float {
        width: 50px;
        height: 50px;
        bottom: 75px;
        left: 15px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-buttons .btn-lg {
        width: 100%;
    }
    
    .cookie-consent {
        padding: 1rem;
    }
    
    .cookie-content p {
        font-size: 0.9rem;
    }
    
    .page-header {
        padding: 130px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header h1::after {
        width: 60px;
    }
    
    .page-header-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .page-header-icon i {
        font-size: 2rem;
    }
    
    .page-header-icon::before {
        border-width: 1px;
    }
    
    .page-header::after {
        height: 60px;
    }
    
    .page-header-decoration::before,
    .page-header-decoration::after {
        width: 200px;
        height: 200px;
    }
}

/* ============================================
   18. UTILITIES
   ============================================ */
.bg-light {
    background-color: var(--light-gray) !important;
}

.text-bronze {
    color: var(--primary-bronze) !important;
}

.text-gold {
    color: var(--accent-gold) !important;
}

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

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.w-100 {
    width: 100% !important;
}

/* Focus Visible */
*:focus-visible {
    outline: 3px solid var(--primary-bronze);
    outline-offset: 2px;
}

/* Skip to Content */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-bronze);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   19. PAGE HEADER
   ============================================ */
.page-header {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88)), 
                url('images/otel-gece.jpeg') center/cover no-repeat fixed;
    padding: 200px 0 140px;
    text-align: center;
    color: white;
    margin-top: 76px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(194, 164, 118, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: headerPulse 8s ease-in-out infinite;
}

@keyframes headerPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--cream-white), transparent);
    pointer-events: none;
}

/* Decorative Elements */
.page-header-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-header-decoration::before,
.page-header-decoration::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194, 164, 118, 0.1) 0%, transparent 70%);
}

.page-header-decoration::before {
    top: -200px;
    left: -200px;
    animation: float 20s ease-in-out infinite;
}

.page-header-decoration::after {
    bottom: -200px;
    right: -200px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: white;
    font-size: clamp(2.8rem, 7vw, 5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 30px rgba(0,0,0,0.6);
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 2px;
}

.page-header p {
    font-size: clamp(1.15rem, 2.5vw, 1.6rem);
    opacity: 0.95;
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.9;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 300;
}

.page-header-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    font-size: 1rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.page-header-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.page-header-breadcrumb a:hover {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.page-header-breadcrumb i.fa-chevron-right {
    color: var(--accent-gold);
    font-size: 0.7rem;
}

.page-header-breadcrumb span {
    padding: 0.5rem 1rem;
    background: rgba(194, 164, 118, 0.2);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.page-header-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-bronze), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    box-shadow: 
        0 10px 40px rgba(194, 164, 118, 0.5),
        0 0 0 10px rgba(194, 164, 118, 0.1),
        0 0 0 20px rgba(194, 164, 118, 0.05);
    animation: iconBounce 0.8s ease;
    position: relative;
}

.page-header-icon::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px solid rgba(194, 164, 118, 0.3);
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    50% { transform: scale(1.1) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

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

.page-header-icon i {
    font-size: 3rem;
    color: white;
    position: relative;
    z-index: 1;
}

/* Stats Bar (Optional) */
.page-header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.page-header-stat {
    text-align: center;
}

.page-header-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.page-header-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   20. ROOM CARD DETAILED
   ============================================ */
.room-card-detailed {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
}

.room-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

.room-card-detailed:hover .room-image-large img {
    transform: scale(1.05);
}

.room-content-detailed {
    padding: 2rem;
}

.room-content-detailed h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.room-price-large {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.room-price-large .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-bronze);
}

.room-price-large small {
    font-size: 1.1rem;
    color: #666;
}

.room-features-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--primary-bronze);
    font-size: 1.2rem;
}

/* ============================================
   21. CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 5rem 0;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-bronze);
    box-shadow: 0 0 0 0.2rem rgba(194, 164, 118, 0.25);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

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

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.contact-info-card i {
    font-size: 3rem;
    color: var(--primary-bronze);
    margin-bottom: 1rem;
}

.contact-info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--primary-bronze);
    font-weight: 600;
}

.map-container {
    margin-top: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

/* ============================================
   22. GALLERY PAGE
   ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: white;
    color: var(--dark-charcoal);
    border: 2px solid var(--primary-bronze);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.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-base);
}

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

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

/* ============================================
   23. SERVICES PAGE
   ============================================ */
.service-detail-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.service-detail-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-detail-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-bronze);
}

/* ============================================
   24. ABOUT PAGE
   ============================================ */
.about-section {
    padding: 5rem 0;
}

.about-content {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-section {
    background: linear-gradient(135deg, var(--corporate-navy), var(--corporate-slate));
    color: white;
    padding: 4rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================================
   25. RESERVATION PAGE - IMPROVED DESIGN
   ============================================ */
.reservation-section {
    padding: 0 0 3rem 0;
    background: linear-gradient(135deg, #faf6f2 0%, #f5f0ea 100%);
    min-height: calc(100vh - 80px);
}

/* Progress Steps - Modern Design */
.reservation-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    margin-top: 0;
    padding-top: 4rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: nowrap;
}

.reservation-steps::before {
    content: '';
    position: absolute;
    top: calc(4rem + 30px);
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #e0e0e0 0%, #e0e0e0 100%);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
    transition: all 0.3s ease;
    min-width: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: #999;
}

.step.active .step-number {
    background: linear-gradient(135deg, var(--primary-bronze), var(--accent-gold));
    border-color: var(--primary-bronze);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(194, 164, 118, 0.4);
}

.step.completed .step-number {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-color: #4CAF50;
    color: white;
    animation: checkmark 0.5s ease;
}

.step.completed .step-number::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
}

@keyframes checkmark {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.step-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #999;
    text-align: center;
    transition: var(--transition-base);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.step-label .label-short {
    display: none;
}

.step-label .label-full {
    display: inline;
}

.step.active .step-label {
    color: var(--primary-bronze);
    font-size: 1rem;
}

.step.completed .step-label {
    color: #4CAF50;
}

/* Form Card - Premium Design */
.reservation-form-card {
    background: white;
    padding: 3.5rem 4rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(194, 164, 118, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.reservation-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-bronze), var(--accent-gold));
}

.reservation-form-card h3 {
    color: var(--dark-charcoal);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.reservation-form-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-bronze), var(--accent-gold));
    border-radius: 2px;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Controls - Enhanced */
.reservation-form-card .form-label {
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.reservation-form-card .form-control,
.reservation-form-card .form-select {
    border: 2px solid #e8e8e8;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-size: 1rem;
    background: #fafafa;
}

.reservation-form-card .form-control:hover,
.reservation-form-card .form-select:hover {
    border-color: #d0d0d0;
    background: white;
}

.reservation-form-card .form-control:focus,
.reservation-form-card .form-select:focus {
    border-color: var(--primary-bronze);
    box-shadow: 0 0 0 0.25rem rgba(194, 164, 118, 0.15);
    background: white;
}

/* Room Selection Grid - Premium Cards */
.room-selection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.room-option {
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    background: white;
    position: relative;
    overflow: hidden;
}

.room-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-bronze), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.room-option:hover {
    border-color: var(--primary-bronze);
    box-shadow: 0 8px 25px rgba(194, 164, 118, 0.2);
    transform: translateY(-5px);
}

.room-option:hover::before {
    transform: scaleX(1);
}

.room-option.selected {
    border-color: var(--primary-bronze);
    background: linear-gradient(135deg, rgba(194, 164, 118, 0.08), rgba(212, 175, 55, 0.08));
    box-shadow: 0 8px 25px rgba(194, 164, 118, 0.3);
    transform: translateY(-5px);
}

.room-option.selected::before {
    transform: scaleX(1);
}

.room-option.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--primary-bronze);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.room-option h4 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: var(--dark-charcoal);
}

.room-option .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-bronze);
    margin: 0.5rem 0;
}

.room-option .price small {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* Navigation Buttons - Modern Style */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 1rem;
}

.form-navigation:has(.btn-prev[style*="display: none"]) {
    justify-content: flex-end;
}

.btn-prev,
.btn-next,
#submitBtn {
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.btn-prev {
    background: #f5f5f5;
    color: var(--dark-charcoal);
    border: 2px solid #e0e0e0;
}

.btn-prev:hover {
    background: #e8e8e8;
    transform: translateX(-3px);
}

.btn-next,
#submitBtn {
    background: linear-gradient(135deg, var(--primary-bronze), var(--accent-gold));
    color: white;
    box-shadow: 0 4px 15px rgba(194, 164, 118, 0.3);
}

.btn-next:hover,
#submitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 164, 118, 0.5);
}

#submitBtn {
    min-width: 250px;
}

/* Summary Card - Premium Design */
.reservation-summary {
    background: linear-gradient(135deg, #faf6f2, #f5f0ea);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(194, 164, 118, 0.2);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(194, 164, 118, 0.15);
    font-size: 1rem;
}

.summary-item:last-child {
    border-bottom: none;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--primary-bronze);
}

.summary-item span {
    color: #666;
    font-weight: 500;
}

.summary-item strong {
    color: var(--dark-charcoal);
    font-weight: 600;
}

.summary-item:last-child strong {
    color: var(--primary-bronze);
    font-size: 2rem;
    font-weight: 700;
}

/* Alert Box */
.alert-info {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(13, 110, 253, 0.05));
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    color: #084298;
}

.alert-info i {
    margin-right: 0.5rem;
    color: #0d6efd;
}

/* Form Check */
.form-check {
    padding: 1rem;
    background: #fafafa;
    border-radius: var(--radius-sm);
    border: 1px solid #e8e8e8;
}

.form-check-input:checked {
    background-color: var(--primary-bronze);
    border-color: var(--primary-bronze);
}

.form-check-input:focus {
    border-color: var(--primary-bronze);
    box-shadow: 0 0 0 0.25rem rgba(194, 164, 118, 0.25);
}

/* Terms Modal */
.modal-content {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-bronze), var(--accent-gold));
    color: white;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 1.5rem 2rem;
    border-bottom: none;
}

.modal-header .modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
    max-height: 60vh;
}

.modal-body h6 {
    color: var(--primary-bronze);
    font-weight: 600;
    font-size: 1.1rem;
}

.modal-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.modal-body p {
    line-height: 1.7;
    color: #555;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e8e8e8;
}

.modal-footer .btn-secondary {
    background: #6c757d;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
}

.modal-footer .btn-secondary:hover {
    background: #5a6268;
}

.text-bronze {
    color: var(--primary-bronze);
}

/* SweetAlert2 Custom Styling */
.swal2-popup {
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.swal2-title {
    font-family: var(--font-heading);
    color: var(--dark-charcoal);
    font-size: 1.8rem;
}

.swal2-html-container {
    font-family: var(--font-body);
    line-height: 1.6;
}

.swal2-confirm {
    border-radius: var(--radius-full);
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
}

.swal2-icon.swal2-success {
    border-color: #4CAF50;
}

.swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: #4CAF50;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(76, 175, 80, 0.3);
}

/* ============================================
   26. RESPONSIVE - ADDITIONAL
   ============================================ */
@media (max-width: 991.98px) {
    .page-header {
        padding: 150px 0 100px;
        background-attachment: scroll;
    }
    
    .room-features-detailed {
        grid-template-columns: 1fr;
    }
    
    .reservation-steps {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .step {
        flex: 0 0 calc(50% - 1rem);
        margin-bottom: 0;
    }
    
    .reservation-steps::before {
        display: none;
    }
    
    .room-selection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .room-option {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .room-selection-grid {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .btn-prev,
    .btn-next,
    #submitBtn {
        width: 100%;
        justify-content: center;
    }
    
    .page-header {
        padding: 130px 0 80px;
    }
    
    .page-header::after {
        height: 60px;
    }
    
    /* Rezervasyon sayfasında page-header'ı gizle */
    body:has(#reservationForm) .page-header {
        display: none;
    }
    
    body:has(#reservationForm) .reservation-section {
        padding-top: 90px;
        min-height: calc(100vh - 90px);
    }
    
    body:has(#reservationForm) .reservation-steps {
        padding-top: 5rem;
    }
    
    body:has(#reservationForm) .reservation-steps::before {
        top: calc(5rem + 30px);
    }
    
    .reservation-form-card {
        padding: 2rem 1.5rem;
    }
    
    .reservation-form-card h3 {
        font-size: 1.5rem;
    }
    
    .step {
        flex: 1;
        min-width: 0;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .step-label .label-full {
        display: none;
    }
    
    .step-label .label-short {
        display: inline;
    }
    
    .reservation-steps {
        margin-bottom: 2rem;
    }
    
    .reservation-steps::before {
        top: calc(1rem + 30px);
        left: 5%;
        right: 5%;
    }
    
    .summary-item {
        font-size: 0.95rem;
    }
    
    .summary-item:last-child strong {
        font-size: 1.6rem;
    }
}

@media (max-width: 575.98px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .room-content-detailed {
        padding: 1.5rem;
    }
    
    .reservation-form-card {
        padding: 1.5rem 1rem;
    }
    
    .page-header {
        padding: 120px 0 70px;
    }
    
    .reservation-section {
        padding: 0 0 2rem 0;
        min-height: calc(100vh - 80px);
    }
    
    body:has(#reservationForm) .reservation-section {
        padding-top: 80px;
        min-height: calc(100vh - 80px);
    }
    
    body:has(#reservationForm) .reservation-steps {
        padding-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .reservation-steps::before {
        top: calc(2rem + 30px);
    }
    
    .reservation-steps {
        margin-bottom: 1.5rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    .step-label .label-full {
        display: none;
    }
    
    .step-label .label-short {
        display: inline;
    }
    
    .room-option {
        padding: 1.5rem 1rem;
    }
    
    .room-option h4 {
        font-size: 1.1rem;
    }
    
    .room-option .price {
        font-size: 1.5rem;
    }
}


/* ============================================
   GALLERY ALBUMS
   ============================================ */
.gallery-album {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.gallery-album:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.album-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-bronze);
}

.album-header h3 {
    font-family: var(--font-heading);
    color: var(--primary-bronze);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.album-header h3 i {
    font-size: 1.3rem;
}

.album-header p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.gallery-item-new {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 164, 118, 0.9), rgba(212, 175, 55, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay-new i {
    color: white;
    font-size: 2.5rem;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Lightbox customization */
.lb-data .lb-caption {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
}

.lb-data .lb-number {
    font-family: var(--font-body);
}

/* Responsive */
@media (max-width: 767.98px) {
    .gallery-album {
        padding: 1.5rem;
    }
    
    .album-header h3 {
        font-size: 1.2rem;
    }
    
    .album-header p {
        font-size: 0.85rem;
    }
    
    .gallery-item-new {
        aspect-ratio: 1/1;
    }
}


/* ============================================
   ALBUM CARDS (Gallery Index)
   ============================================ */
.album-card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.album-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

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

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 164, 118, 0.95), rgba(212, 175, 55, 0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.album-overlay i {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    animation: zoomIn 0.3s ease;
}

.photo-count {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    font-family: var(--font-heading);
    color: var(--primary-bronze);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.album-info h3 i {
    font-size: 1.2rem;
}

.album-info p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 767.98px) {
    .album-info h3 {
        font-size: 1.2rem;
    }
    
    .album-info p {
        font-size: 0.85rem;
    }
    
    .album-overlay i {
        font-size: 2rem;
    }
    
    .photo-count {
        font-size: 1rem;
    }
}


/* ============================================
   PHOTOSWIPE CUSTOM STYLES
   ============================================ */
.pswp {
    --pswp-bg: rgba(0, 0, 0, 0.95);
    --pswp-icon-color: #fff;
    --pswp-icon-color-secondary: var(--primary-bronze);
}

.pswp__button {
    background-color: rgba(194, 164, 118, 0.3) !important;
    transition: all 0.3s ease;
}

.pswp__button:hover {
    background-color: rgba(194, 164, 118, 0.6) !important;
}

.pswp__counter {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--primary-bronze);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Gallery Grid Improvements */
.gallery-item-new {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 164, 118, 0.9), rgba(212, 175, 55, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay-new i {
    color: white;
    font-size: 2.5rem;
    animation: zoomIn 0.3s ease;
}

/* Responsive Grid */
@media (max-width: 767.98px) {
    .gallery-item-new {
        aspect-ratio: 1/1;
    }
    
    .gallery-overlay-new i {
        font-size: 2rem;
    }
}

/* Loading Animation */
.gallery-item-new img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.gallery-item-new img[src] {
    animation: none;
    background: none;
}
