/*
* Bungulov - Bungalov Rezervasyon Sitesi
* 2025 Trendlerine Uygun Modern Tasarım
*/

/* ===== VARIABLES ===== */
:root {
    /* Main Colors */
    --primary-color: #2A9D8F;
    --secondary-color: #E9C46A;
    --accent-color: #F4A261;
    --dark-color: #264653;
    --light-color: #F8F9FA;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 2rem;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.7s ease;
    
    /* Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --glass-blur: blur(10px);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--dark-color);
}

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

ul {
    list-style: none;
}

.section-padding {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
}

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

.btn-primary:hover {
    background-color: var(--dark-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray-300);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all var(--transition-fast);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.header.sticky {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.navbar {
    padding: 0;
}

.navbar-brand h1 {
    margin-bottom: 0;
    font-size: 2rem;
    color: var(--primary-color);
}

.navbar-nav {
    gap: 20px;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-fast);
}

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

.reservation-btn {
    margin-left: 15px;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px 20px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all var(--transition-fast);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(42, 157, 143, 0.3);
}

.feature-text h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-text p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(38, 70, 83, 0.6), rgba(42, 157, 143, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.hero-buttons .btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
    padding: 12px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

/* ===== SEARCH FORM ===== */
.search-form-container {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.search-form {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
}

.search-form .row {
    align-items: flex-end;
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--body-font);
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
    outline: none;
}

.search-btn {
    width: 100%;
    padding: 14px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    overflow: hidden;
}

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

.about-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Çerçeve efektini kaldırıyoruz */
.about-img::before {
    display: none;
}

.about-content {
    padding: var(--spacing-lg);
}

.about-content h2 {
    margin-bottom: var(--spacing-md);
}

.about-content p {
    margin-bottom: var(--spacing-md);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

/* ===== ROOMS SECTION ===== */
.rooms-section {
    background-color: var(--gray-100);
    position: relative;
}

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

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

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

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

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

.room-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.room-content {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--gray-600);
    background-color: var(--gray-100);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
}

.room-feature i {
    color: var(--primary-color);
}

.room-description {
    margin-bottom: var(--spacing-md);
    color: var(--gray-700);
    flex-grow: 1;
}

.room-btn {
    width: 100%;
    margin-top: auto;
}

/* ===== EVENTS SECTION ===== */
.events-section {
    position: relative;
}

.event-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.event-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.event-date span {
    display: block;
}

.event-date .day {
    font-size: 1.5rem;
}

.event-content {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.event-description {
    margin-bottom: var(--spacing-md);
    color: var(--gray-700);
    flex-grow: 1;
}

.event-btn {
    width: 100%;
    margin-top: auto;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: var(--gray-100);
    position: relative;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    height: 100%;
    transition: all var(--transition-fast);
}

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

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--gray-300);
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: var(--gray-700);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.testimonial-author-info p {
    margin-bottom: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

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

.cta-btn:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    position: relative;
}

.contact-info {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    height: 100%;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-info-text h5 {
    color: var(--white);
    margin-bottom: 5px;
}

.contact-info-text p {
    margin-bottom: 0;
}

.contact-form {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    margin-bottom: var(--spacing-md);
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

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

.contact-form-btn {
    width: 100%;
}

/* ===== RESERVATION FORM ===== */
.reservation-section {
    background-color: var(--gray-100);
}

.reservation-form-wrapper {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-lg);
}

.reservation-form {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.reservation-form h3 {
    margin-bottom: var(--spacing-md);
}

.reservation-info {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    height: 100%;
}

.reservation-info h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.reservation-info p {
    margin-bottom: var(--spacing-md);
}

.reservation-info ul {
    margin-bottom: var(--spacing-md);
}

.reservation-info ul li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.reservation-info ul li i {
    color: var(--secondary-color);
}

/* Reservation Info Section */
.reservation-info-section {
    background-color: var(--gray-100);
}

.info-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-fast);
    text-align: center;
}

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

.info-card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
}

.info-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.info-card p {
    color: var(--gray-700);
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xl) 0;
}

.accordion-item {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

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

.accordion-header {
    margin: 0;
}

.accordion-button {
    background-color: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    padding: var(--spacing-md) var(--spacing-lg);
    font-family: var(--heading-font);
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: var(--spacing-lg);
    background-color: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
}

/* Form Elements */
.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-select, 
.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--gray-800);
    transition: var(--transition-fast);
}

.form-select:focus, 
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(42, 157, 143, 0.25);
}

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

.form-check-label {
    color: var(--gray-700);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.2);
    color: #198754;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--white);
    color: var(--gray-700);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--gray-200);
}

.footer-widget {
    margin-bottom: var(--spacing-lg);
}

.footer-widget h3 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-widget h4 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-widget p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-600);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray-100);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-links {
    padding-left: 0;
}

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

.footer-links a {
    color: var(--gray-600);
    transition: all var(--transition-fast);
    display: block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

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

.newsletter-section {
    background-color: var(--gray-100);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) 0;
}

.newsletter-section h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.newsletter-section p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.newsletter-form .input-group {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    background-color: var(--white);
    color: var(--gray-700);
}

.newsletter-form .btn {
    padding: 12px 25px;
    border-radius: var(--radius-md);
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.newsletter-form .btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.copyright {
    border-top: 1px solid var(--gray-200);
    padding: var(--spacing-md) 0;
    margin-top: var(--spacing-lg);
}

.copyright p {
    margin-bottom: 0;
    color: var(--gray-600);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-bottom-links li {
    display: inline-block;
}

.footer-bottom-links a {
    color: var(--gray-600);
    font-size: 0.9rem;
}

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

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.back-to-top:hover {
    background-color: var(--dark-color);
    color: var(--white);
    transform: translateY(-5px);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* ===== GLASS MORPHISM EFFECTS ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: var(--spacing-lg);
    color: var(--white);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1199.98px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 991.98px) {
    html {
        font-size: 15px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .navbar-nav {
        gap: 10px;
    }
    
    .reservation-btn {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .about-img::before {
        display: none;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: var(--spacing-xl) 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .search-form-container {
        margin-top: -40px;
    }
    
    .search-form .row {
        flex-direction: column;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: var(--spacing-sm);
    }
}

@media (max-width: 575.98px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2::after {
        width: 60px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 90px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(38, 70, 83, 0.7), rgba(42, 157, 143, 0.5));
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    background-color: transparent;
    margin-bottom: 0;
}

.breadcrumb-item {
    color: var(--white);
    font-size: 1rem;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
}

/* ===== MISSION VISION SECTION ===== */
.mission-vision-section {
    position: relative;
}

.mission-card,
.vision-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all var(--transition-fast);
}

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

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(42, 157, 143, 0.3);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.mission-card p,
.vision-card p {
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===== VALUES SECTION ===== */
.values-section {
    position: relative;
}

.value-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all var(--transition-fast);
    text-align: center;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(42, 157, 143, 0.3);
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===== TEAM SECTION ===== */
.team-section {
    position: relative;
}

.team-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    height: 100%;
}

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

.team-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.team-content {
    padding: var(--spacing-md);
    text-align: center;
}

.team-content h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-content p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: var(--gray-100);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== ROOMS PAGE SECTION ===== */
.rooms-page-section {
    position: relative;
}

.room-filters {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--body-font);
    transition: all var(--transition-fast);
    color: var(--gray-700);
    background-color: var(--white);
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
    outline: none;
}

.room-card-horizontal {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    height: 100%;
}

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

.room-img-horizontal {
    position: relative;
    height: 100%;
    min-height: 250px;
    overflow: hidden;
}

.room-img-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.room-content-horizontal {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.room-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.room-meta-item i {
    color: var(--primary-color);
}

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

.room-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: var(--gray-100);
    color: var(--gray-700);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.room-feature-badge i {
    color: var(--primary-color);
}

.room-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.room-buttons .btn {
    flex: 1;
    padding: 10px 15px;
}

/* ===== PAGINATION ===== */
.pagination-container {
    margin-top: 30px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.page-item {
    margin: 0 2px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--gray-700);
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    transition: all var(--transition-fast);
}

.page-link:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
    border-color: var(--gray-300);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.page-item.disabled .page-link {
    color: var(--gray-400);
    pointer-events: none;
    background-color: var(--white);
    border-color: var(--gray-300);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    position: relative;
}

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

.accordion-item {
    border: none;
    border-bottom: 1px solid var(--gray-200);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    padding: 20px;
    font-weight: 500;
    color: var(--dark-color);
    background-color: var(--white);
    border: none;
    box-shadow: none;
    transition: all var(--transition-fast);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--gray-300);
}

.accordion-button::after {
    background-size: 16px;
    transition: all var(--transition-fast);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 0 20px 20px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===== EVENTS PAGE SECTION ===== */
.events-page-section {
    position: relative;
}

.event-filters {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

/* Featured Event */
.featured-event-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

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

.featured-event-img {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.featured-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 60px;
    box-shadow: var(--shadow-md);
}

.event-date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date-badge .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.featured-event-content {
    padding: var(--spacing-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.featured-event-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.event-meta-item i {
    color: var(--primary-color);
}

.event-price {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin: 20px 0;
}

.event-price span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.event-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.event-buttons .btn {
    flex: 1;
    padding: 12px 15px;
}

/* Event Cards */
.event-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.event-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.event-content {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.event-description {
    color: var(--gray-700);
    margin-bottom: 15px;
    flex-grow: 1;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.event-price-small {
    font-size: 0.9rem;
    color: var(--gray-700);
}

.event-price-small span {
    font-weight: 700;
    color: var(--primary-color);
}

/* Events Calendar */
.events-calendar-section {
    position: relative;
}

.events-calendar {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    padding: var(--spacing-md);
}

.calendar-header {
    margin-bottom: 20px;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav h4 {
    margin-bottom: 0;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.calendar-nav-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.calendar-nav-btn:hover {
    color: var(--dark-color);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
    font-weight: 500;
    color: var(--gray-700);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    transition: all var(--transition-fast);
}

.calendar-day:hover {
    background-color: var(--gray-100);
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.has-event {
    background-color: rgba(42, 157, 143, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}

.calendar-day.has-event:hover {
    background-color: rgba(42, 157, 143, 0.2);
}

.day-event {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 10;
}

.calendar-day.has-event:hover .day-event {
    opacity: 1;
    visibility: visible;
}

.calendar-legend {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.legend-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(42, 157, 143, 0.2);
    border-radius: var(--radius-full);
}

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

.btn-floating {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 28px;
}

.phone-floating {
    margin-bottom: 5px;
}

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

.phone-btn .btn-floating {
    background-color: #007bff;
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.whatsapp-floating {
    margin-top: 0;
}

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

.whatsapp-btn .btn-floating {
    background-color: #25D366;
    animation: pulse 2s infinite;
}

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

@media (max-width: 767.98px) {
    .floating-buttons {
        right: 20px;
        bottom: 20px;
    }
    
    .btn-floating {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
} 