/* ============================================
   Abelia Mansion - Modern Hotel Website
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #c9a961;
    --accent-color: #d4af37;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e1e1;
    --overlay-dark: rgba(26, 26, 46, 0.7);
    --overlay-light: rgba(255, 255, 255, 0.95);

    --font-primary: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.text-decoration-underline {
    text-decoration: underline;
}


ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 14px;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 150px;
    width: auto;
    object-fit: contain;
}

/* Yazi logoları için */
.logo span {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-reservation {
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 9px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 13px;
}

.btn-reservation:hover {
    background: var(--accent-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(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    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(135deg, var(--overlay-dark) 0%, rgba(26, 26, 46, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--secondary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-weight: 500;
}

.btn-link:hover {
    gap: 15px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* Booking Bar */
.booking-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 30px 0;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

.booking-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.booking-item {
    flex: 1;
    min-width: 150px;
}

.booking-item label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-book {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-book:hover {
    background: var(--secondary-color);
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-text {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 0px;
    background: var(--secondary-color);
    color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.about-badge span {
    display: block;
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.about-badge p {
    font-size: 14px;
    margin: 0;
}

.about-content .section-subtitle {
    margin-bottom: 15px;
}

.about-content .section-title {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--secondary-color);
}

/* Rooms Section */
.rooms-section {
    background: var(--bg-white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.rooms-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
}

.room-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.room-image {
    position: relative;
    height: 300px;
    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;
    left: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.room-badge.popular {
    background: #e74c3c;
}

.room-badge.economy {
    background: #27ae60;
}

.room-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

.room-price {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.room-price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.room-content {
    padding: 25px;
}

.room-content h3 {
    font-family: var(--font-primary);
    font-size: 26px;
    margin-bottom: 10px;
}

.room-content > p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
}

.room-features i {
    color: var(--secondary-color);
}

.room-actions {
    display: flex;
    gap: 10px;
}

.room-actions .btn-outline {
    flex: 1;
    padding: 12px 20px;
    border-color: var(--border-color);
    color: var(--text-dark);
    justify-content: center;
}

.room-actions .btn-outline:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.room-actions .btn-primary {
    flex: 1;
    padding: 12px 20px;
    justify-content: center;
}

/* Facilities Section */
.facilities-section {
    background: var(--bg-light);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.facility-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.facility-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

.facility-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 10px;
}

.facility-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 0;
}

.cta-bg {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
}

.cta-bg > .container {
    max-width: 100%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
}

.cta-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonial-rating {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* Attractions Section */
.attractions-section {
    background: var(--bg-white);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.attraction-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.attraction-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.attraction-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.attraction-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.attraction-card span {
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Page Header */
.page-header {
    padding: 0;
}

.page-header-bg {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
}

.page-header-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.page-header-content h1 {
    font-family: var(--font-primary);
    font-size: 56px;
    margin-bottom: 15px;
}

.page-header-content > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--secondary-color);
}

.breadcrumb span {
    opacity: 0.5;
}

/* Room Full */
.room-full {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.room-full.reverse {
    direction: rtl;
}

.room-full.reverse > * {
    direction: ltr;
}

.room-gallery img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.room-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.room-tag.popular {
    background: #e74c3c;
}

.room-tag.economy {
    background: #27ae60;
}

.room-info h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    margin-bottom: 10px;
}

.room-info .room-price {
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.room-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin: 25px 0;
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.room-amenities i {
    color: var(--secondary-color);
}

/* Amenities Section */
.room-amenities-section {
    background: var(--bg-light);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.amenity-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.amenity-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.amenity-item i {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.amenity-item span {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

/* Story Section */
.story-section {
    background: var(--bg-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* Mission Vision */
.mission-vision-section {
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.mv-card {
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

.mv-card h3 {
    font-family: var(--font-primary);
    font-size: 26px;
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Values */
.values-section {
    background: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Why Us */
.why-us-section {
    background: var(--bg-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.reason-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    color: rgba(201, 169, 97, 0.2);
}

.reason-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.reason-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Awards */
.awards-section {
    background: var(--bg-white);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.award-card {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.award-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.award-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.award-card h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: 5px;
}

.award-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* Contact Info */
.contact-info-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.contact-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.btn-whatsapp, .btn-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #128c7e;
}

.btn-email {
    background: var(--primary-color);
    color: #fff;
}

/* Contact Main */
.contact-main {
    background: var(--bg-white);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-form-wrapper h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 15px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-map {
    height: 100%;
    min-height: 500px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

/* Working Hours */
.working-hours-section {
    background: var(--bg-light);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.hours-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
}

.hours-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    margin-bottom: 25px;
}

.hours-card h3 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.hours-card ul li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-card ul li:last-child {
    border-bottom: none;
}

/* FAQ */
.faq-section {
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 16px;
    margin: 0;
}

.faq-question i {
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Booking CTA */
.booking-cta {
    background: var(--primary-color);
    padding: var(--spacing-lg) 0;
}

.booking-cta-content {
    text-align: center;
    color: #fff;
}

.booking-cta-content h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    margin-bottom: 15px;
}

.booking-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: #fff;
    padding: var(--spacing-lg) 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer .social-links {
    display: flex;
    gap: 15px;
}

.footer .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;
}

.footer .social-links a:hover {
    background: var(--secondary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-services a {
    opacity: 0.8;
    font-size: 14px;
}

.footer-links a:hover,
.footer-services a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 14px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 38px;
    }

    .about-grid,
    .story-grid,
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .room-full {
        grid-template-columns: 1fr;
    }

    .room-full.reverse {
        direction: ltr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 30px;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .rooms-grid,
    .rooms-grid-2,
    .facilities-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content {
        padding: 0 20px;
    }

    .page-header-content h1 {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
    }
}

/* ============================================
   Room Detail Page Styles
   ============================================ */

.room-detail-section {
    padding: var(--spacing-lg) 0;
}

.room-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.room-gallery {
    margin-bottom: 20px;
}

.main-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 3px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--secondary-color);
}

.thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.room-price-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
    margin-bottom: 20px;
}

.price-header {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.room-price {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-per-night {
    font-size: 16px;
    color: var(--text-light);
}

.room-highlights {
    margin-bottom: 25px;
}

.room-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.room-highlights li:last-child {
    border-bottom: none;
}

.room-highlights i {
    color: var(--secondary-color);
    width: 20px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.price-note {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.price-note i {
    color: #27ae60;
}

.room-contact-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
}

.room-contact-card h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.room-contact-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.room-description-section {
    background: var(--bg-light);
    padding: var(--spacing-lg) 0;
}

.room-description-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.description-main h2 {
    font-family: var(--font-primary);
    font-size: 32px;
    margin-bottom: 20px;
}

.description-main h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    margin: 30px 0 20px;
}

.description-main p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.description-main .lead {
    font-size: 18px;
    color: var(--text-dark);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 28px;
    color: var(--secondary-color);
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 13px !important;
    margin: 0 !important;
}

.amenities-sidebar {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.amenities-sidebar h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 20px;
}

.amenities-list {
    margin-bottom: 30px;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.amenities-list li:last-child {
    border-bottom: none;
}

.amenities-list i {
    color: var(--secondary-color);
    width: 20px;
}

.room-policies h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.room-policies ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
}

.room-location-section {
    padding: var(--spacing-lg) 0;
}

.nearby-places {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.nearby-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    align-items: center;
}

.nearby-item i {
    font-size: 32px;
    color: var(--secondary-color);
}

.nearby-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.nearby-item span {
    font-size: 13px;
    color: var(--text-light);
}

.other-rooms-section {
    background: var(--bg-light);
    padding: var(--spacing-lg) 0;
}

.rooms-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-preview-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.room-preview-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-preview-content {
    padding: 20px;
}

.room-preview-content h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: 8px;
}

.room-preview-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.room-preview-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.room-preview-price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

/* ============================================
   Blog Page Styles
   ============================================ */

.blog-section {
    padding: var(--spacing-lg) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.blog-content h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--secondary-color);
}

.blog-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-item {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.pagination-item:hover,
.pagination-item.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.newsletter-section {
    background: var(--primary-color);
    padding: var(--spacing-lg) 0;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-card h3 {
    font-family: var(--font-primary);
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
}

.newsletter-form button {
    padding: 15px 30px;
    white-space: nowrap;
}

/* ============================================
   Blog Detail Page Styles
   ============================================ */

.page-header-small {
    padding: 0;
}

.page-header-small .page-header-bg {
    height: 300px;
}

.blog-post-section {
    padding: var(--spacing-lg) 0;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-post-main {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.blog-post-header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-post-header .blog-category {
    position: static;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-post-header h1 {
    font-family: var(--font-primary);
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-light);
}

.blog-post-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.blog-post-featured-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-post-content .lead {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.blog-post-content h2 {
    font-family: var(--font-primary);
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.blog-post-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-post-content blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
}

.blog-post-content blockquote p {
    font-size: 18px;
    color: var(--text-dark);
    margin: 0;
}

.blog-post-content blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.blog-post-tips {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 40px 0;
}

.blog-post-tips h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    margin-bottom: 20px;
}

.blog-post-tips h3 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.blog-post-tips ul {
    list-style: none;
}

.blog-post-tips ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.blog-post-tips ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.blog-post-cta {
    background: linear-gradient(135deg, var(--primary-color), #2a2a4e);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    color: #fff;
    margin: 40px 0;
}

.blog-post-cta h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    margin-bottom: 15px;
}

.blog-post-cta p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.blog-post-cta .btn-primary {
    background: var(--secondary-color);
    border: none;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
}

.blog-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-tags i {
    color: var(--secondary-color);
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-dark);
    transition: var(--transition);
}

.tag:hover {
    background: var(--secondary-color);
    color: #fff;
}

.blog-share {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-share span {
    font-size: 14px;
    color: var(--text-light);
}

.blog-share a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-pinterest { background: #bd081c; }
.share-whatsapp { background: #25d366; }

.blog-share a:hover {
    transform: translateY(-3px);
}

.author-box {
    display: flex;
    gap: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 40px;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.comments-section {
    margin-top: 40px;
}

.comments-section h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    margin-bottom: 25px;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comment {
    display: flex;
    gap: 15px;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 20px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header h5 {
    font-size: 16px;
}

.comment-date {
    font-size: 13px;
    color: var(--text-light);
}

.comment-content p {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.sidebar-widget h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
}

.search-form button {
    width: 45px;
    background: var(--secondary-color);
    border: none;
    border-radius: var(--border-radius);
    color: #fff;
    cursor: pointer;
}

.categories-widget ul li a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.categories-widget ul li:last-child a {
    border-bottom: none;
}

.categories-widget ul li a span {
    color: var(--text-light);
    background: var(--bg-light);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
}

.categories-widget ul li a:hover {
    color: var(--secondary-color);
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-post-item img {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.recent-post-info h5 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-info h5 a {
    color: var(--text-dark);
}

.recent-post-info h5 a:hover {
    color: var(--secondary-color);
}

.recent-post-info span {
    font-size: 12px;
    color: var(--text-light);
}

.cta-widget {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: #fff;
}

.cta-widget h4 {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-widget p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-widget .btn-primary {
    background: #fff;
    color: var(--secondary-color);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud .tag {
    font-size: 13px;
}

/* Related Posts */
.related-posts-section {
    background: var(--bg-light);
    padding: var(--spacing-lg) 0;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-post-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.related-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-content {
    padding: 20px;
}

.post-category {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.related-post-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-post-content h4 a {
    color: var(--text-dark);
}

.related-post-content h4 a:hover {
    color: var(--secondary-color);
}

.related-post-content > span {
    font-size: 13px;
    color: var(--text-light);
}

/* Blog & Room Detail Responsive */
@media (max-width: 1024px) {
    .room-detail-grid,
    .room-description-grid,
    .blog-post-grid {
        grid-template-columns: 1fr;
    }

    .room-price-card {
        position: static;
    }

    .main-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .main-image img {
        height: 300px;
    }

    .blog-post-header h1 {
        font-size: 32px;
    }

    .blog-post-featured-image img {
        height: 250px;
    }

    .blog-post-content h2 {
        font-size: 24px;
    }

    .blog-post-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-card {
        padding: 30px;
    }

    .newsletter-card h3 {
        font-size: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Gallery Section Styles
   ============================================ */

.gallery-section {
    background: var(--bg-light);
    padding: var(--spacing-lg) 0;
}

.gallery-section .container {
    max-width: 1400px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay-content {
    color: #fff;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    margin-bottom: 5px;
}

.gallery-overlay-content p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.gallery-overlay-content .btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.gallery-overlay-content .btn-light:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   KVKK Modal Styles
   ============================================ */

.kvkk-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kvkk-modal.active {
    display: flex;
    opacity: 1;
}

.kvkk-modal-content {
    position: relative;
    background: var(--bg-white);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: var(--border-radius);
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.kvkk-modal.active .kvkk-modal-content {
    transform: scale(1);
}

.kvkk-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.kvkk-modal-header h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    margin: 0;
}

.kvkk-modal-close {
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.8;
}

.kvkk-modal-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.kvkk-modal-body {
    padding: 30px 25px;
}

.kvkk-text h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--primary-color);
    margin: 20px 0 10px 0;
}

.kvkk-text > p {
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

.kvkk-text ul {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.kvkk-text ul li {
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.6;
}

.kvkk-text ul li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
}

/* KVKK Modal Responsive */
@media (max-width: 768px) {
    .kvkk-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .kvkk-modal-header h3 {
        font-size: 16px;
    }

    .kvkk-modal-body {
        padding: 20px;
    }
}

/* ============================================
   Lightbox Styles
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    max-width: 80%;
}

.lightbox-caption h4 {
    font-family: var(--font-primary);
    font-size: 24px;
    margin-bottom: 5px;
}

.lightbox-caption p {
    font-size: 16px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox-caption h4 {
        font-size: 18px;
    }

    .lightbox-caption p {
        font-size: 14px;
    }

    .lightbox-caption {
        bottom: 20px;
    }
}

/* ============================================
   Reservation Modal Styles
   ============================================ */

.reservation-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reservation-modal.active {
    display: flex;
    opacity: 1;
}

.reservation-modal-content {
    position: relative;
    width: 95%;
    max-width: 900px;
    height: 85vh;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.reservation-modal.active .reservation-modal-content {
    transform: scale(1);
}

.reservation-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--primary-color);
    color: #fff;
}

.reservation-modal-header h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin: 0;
}

.reservation-modal-close {
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.8;
}

.reservation-modal-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.reservation-modal-body {
    height: calc(100% - 70px);
}

.reservation-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Reservation Modal Responsive */
@media (max-width: 768px) {
    .reservation-modal-content {
        width: 100%;
        height: 100vh;
        max-width: none;
        border-radius: 0;
    }

    .reservation-modal-header h3 {
        font-size: 18px;
    }

    .reservation-modal-close {
        font-size: 28px;
    }
}
