/* ===================================
   Princess Suit Gaziantep - Main Styles
   =================================== */

/* Root Variables */
:root {
    --primary-color: #c9a961;
    --primary-dark: #a88a4d;
    --primary-light: #e5d4a8;
    --secondary-color: #2c3e50;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #f8f9fa;
    --bg-lighter: #fefefe;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --border-radius: 15px;
    --border-radius-sm: 10px;
    --border-radius-lg: 20px;
}

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

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
}

/* Prevent horizontal scroll */
.container {
    max-width: 1320px;
    overflow-x: hidden;
}

.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

/* Responsive Images */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Responsive Tables */
table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

@media (max-width: 767px) {
    table {
        font-size: 0.85rem;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

a:hover {
    text-decoration: none;
}

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

/* Prevent text overflow */
p, h1, h2, h3, h4, h5, h6, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Responsive Embeds */
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Consistent Spacing */
.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

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

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

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

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

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

.mt-4 {
    margin-top: 2rem !important;
}

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


/* ===================================
   HEADER & MOBILE MENU STYLES
   Moved to: header-mobile-menu.css
   ==================================== */

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: 2px solid var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    font-weight: 600;
    transition: var(--transition);
    border-radius: 50px;
    padding: 0.65rem 1.75rem;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(135deg, var(--primary-dark), #8a6f3d);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 50px;
    padding: 0.65rem 1.75rem;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    border-color: var(--primary-color);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 50px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('../resimler/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 100px;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(40, 35, 25, 0.88) 0%, 
        rgba(50, 42, 30, 0.84) 30%,
        rgba(60, 50, 35, 0.80) 60%, 
        rgba(70, 58, 40, 0.76) 100%);
    z-index: 1;
}

.hero-badge-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 97, 0.2);
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    backdrop-filter: blur(10px);
}

.hero-badge-text i {
    font-size: 0.8rem;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    background: transparent;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 50px;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

/* Scroll Mouse Icon */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.mouse {
    width: 28px;
    height: 45px;
    border: 3px solid rgba(201, 169, 97, 0.9);
    border-radius: 18px;
    position: relative;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.4);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.mouse::before {
    content: '';
    width: 5px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    animation: scroll 1.5s infinite;
    box-shadow: 0 0 8px rgba(201, 169, 97, 0.6);
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 169, 97, 0.3);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    animation: fadeInUp 1.2s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6), 0 0 15px rgba(201, 169, 97, 0.4);
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1.4s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(201, 169, 97, 0.4);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-item:hover {
    background: rgba(201, 169, 97, 0.25);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px rgba(201, 169, 97, 0.5));
}

/* Reservation Form Card */
.reservation-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

/* Form Elements - Unified Styles */
.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-check-input {
    border: 2px solid #e0e0e0;
    transition: var(--transition);
}

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

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25);
}

.form-check-label {
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

/* Form Floating Styles */
.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(201, 169, 97, 0.15);
}

.form-floating > label {
    padding: 1rem 1.25rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* About Section - Modern */
.about-section-modern {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.03), rgba(201, 169, 97, 0.08));
    border-radius: 50%;
    z-index: 0;
}

.about-image-container {
    position: relative;
    z-index: 1;
}

.about-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-main-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
    border: 3px solid var(--white);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.badge-content h4 {
    font-size: 2rem;
    margin: 0;
    color: var(--white);
    font-weight: 700;
    line-height: 1;
}

.badge-content p {
    margin: 0;
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 500;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    flex: 1;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.stat-content h5 {
    font-size: 1.5rem;
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
    font-weight: 700;
}

.stat-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

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

.about-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: justify;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.highlight-item:hover {
    background: var(--white);
    border-left-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
}

.highlight-text h6 {
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
    font-weight: 600;
}

.highlight-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Old About Section Styles - Keep for other pages */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--white);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
    border: 3px solid var(--white);
}

.experience-badge h3 {
    font-size: 3rem;
    margin: 0;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.experience-badge p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0;
}

.section-header.text-center .section-subtitle::before,
.section-header.text-center .section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.section-header.text-center .section-subtitle::before {
    right: calc(100% + 15px);
}

.section-header.text-center .section-subtitle::after {
    left: calc(100% + 15px);
}

.section-header:not(.text-center) .section-subtitle {
    padding-left: 50px;
}

.section-header:not(.text-center) .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

.feature-box {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.3);
    background: var(--white);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(201, 169, 97, 0.3));
}

.feature-box h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-box p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Card Components - Unified Styles */
.card-base {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-base:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.room-card,
.service-card,
.blog-card,
.place-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.place-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.2);
    border-color: var(--primary-color);
}

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

.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: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.room-badge.badge-premium {
    background: #e74c3c;
}

.room-badge.badge-royal {
    background: #8e44ad;
}

.room-content {
    padding: 1.5rem;
}

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

.room-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.room-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.room-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--white);
}

/* Places Section */
.places-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.place-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.place-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.place-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.2);
    border-color: var(--primary-color);
}

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

.place-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
    border: 2px solid rgba(201, 169, 97, 0.2);
}

.place-card:hover .place-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-color);
}

.place-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.place-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.place-distance {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.place-distance i {
    margin-right: 0.5rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 3rem 2rem;
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.3);
    margin-top: 3rem;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}

.cta-box .lead {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-box .btn-outline-primary {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    border: 3px solid transparent;
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.9), rgba(168, 138, 77, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

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

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

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
}

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

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

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding: 3.5rem 0 0;
    position: relative;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand Column */
.footer-brand-col {
    padding-right: 1rem;
}

.footer-logo {
    max-width: 140px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer Columns */
.footer-column-title {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-link-icon {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    transition: var(--transition);
}

.map-link-icon:hover {
    color: var(--primary-color);
}

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

.footer-menu li {
    margin-bottom: 0.65rem;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-menu li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-contact-list li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list li span,
.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-contact-list li a {
    transition: var(--transition);
}

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

/* Footer Map */
.footer-map-col {
    position: relative;
}

.footer-map {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer-map:hover {
    border-color: var(--primary-color);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
}

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

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

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Footer Responsive */
@media (max-width: 1199px) {
    .footer-main {
        grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand-col {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-map-col {
        grid-column: 1 / -1;
    }
    
    .footer-map {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
        padding-bottom: 2rem;
    }
    
    /* Brand Column - Full Width */
    .footer-brand-col {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-logo {
        max-width: 110px;
        margin: 0 auto 0.85rem;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    
    .footer-social {
        justify-content: center;
        gap: 0.4rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    /* Quick Links and Contact - Side by Side */
    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        grid-column: span 1;
    }
    
    .footer-column-title {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .footer-menu {
        text-align: left;
    }
    
    .footer-menu li {
        margin-bottom: 0.55rem;
    }
    
    .footer-menu li a {
        font-size: 0.8rem;
    }
    
    .footer-contact-list {
        text-align: left;
    }
    
    .footer-contact-list li {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 0.85rem;
        font-size: 0.8rem;
        text-align: left;
    }
    
    .footer-contact-list li i {
        font-size: 0.85rem;
        margin-top: 2px;
    }
    
    .footer-contact-list li span,
    .footer-contact-list li a {
        text-align: left;
    }
    
    /* Map Column - Full Width */
    .footer-map-col {
        grid-column: 1 / -1;
    }
    
    .footer-map {
        height: 180px;
        border-radius: 6px;
    }
    
    .footer-bottom {
        padding: 1.25rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .footer-bottom-links {
        gap: 0.5rem;
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

.whatsapp-float:hover {
    background: #128C7E;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

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

/* Phone Float Button */
.phone-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.phone-float:hover {
    background: linear-gradient(135deg, var(--primary-dark), #8a6f3d);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section {
        background-attachment: scroll;
        min-height: 75vh;
        padding-top: 90px;
    }
    
    .hero-video-bg {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-features {
        gap: 1rem;
        justify-content: center;
    }
    
    .feature-item {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .header-buttons {
        margin-top: 1rem;
        width: 100%;
    }
    
    .header-buttons .btn {
        width: 100%;
    }
    
    .navbar-nav {
        padding: 1rem 0;
        text-align: center;
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .image-badge {
        bottom: 20px;
        left: 20px;
        padding: 1rem 1.5rem;
    }
    
    .badge-content h4 {
        font-size: 1.5rem;
    }
    
    .place-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-box h3 {
        font-size: 1.75rem;
    }
    
    .cta-box .lead {
        font-size: 1rem;
    }
    
    .py-5 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }
    
    .reservation-form-card {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Header Adjustments */
    .header-main .logo {
        height: 55px;
    }
    
    .navbar-toggler {
        padding: 0.5rem;
        font-size: 1.2rem;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 65vh;
        padding-top: 80px;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 1.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    /* Hide long description and feature cards on mobile */
    .hero-description-full,
    .hero-features {
        display: none !important;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.85rem;
        margin-top: 1.5rem;
    }
    
    .feature-item {
        padding: 0.7rem 1.1rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .hero-content .mt-5 {
        margin-top: 2rem !important;
    }
    
    .hero-content .btn-lg {
        padding: 0.7rem 1.75rem;
        font-size: 1rem;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 15px;
    }
    
    .mouse {
        width: 22px;
        height: 38px;
        border-width: 2px;
    }
    
    /* Reservation Form */
    .reservation-form-card {
        padding: 1.5rem;
        margin-top: 2rem;
        border-radius: 15px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    /* Section Styles */
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .section-title {
        font-size: 1.65rem;
        line-height: 1.3;
        margin-bottom: 0.85rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .section-header.text-center .section-subtitle::before,
    .section-header.text-center .section-subtitle::after {
        width: 35px;
    }
    
    /* About Section */
    .about-section-modern {
        padding: 3rem 0;
    }
    
    .about-image-container {
        margin-bottom: 2rem;
    }
    
    .about-main-image {
        border-radius: 15px;
    }
    
    .image-badge {
        bottom: 15px;
        left: 15px;
        padding: 1rem 1.25rem;
        border-radius: 12px;
    }
    
    .badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .badge-content h4 {
        font-size: 1.4rem;
    }
    
    .badge-content p {
        font-size: 0.8rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .stat-content h5 {
        font-size: 1.3rem;
    }
    
    .stat-content p {
        font-size: 0.8rem;
    }
    
    .about-lead {
        font-size: 1.05rem;
    }
    
    .about-description {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .about-highlights {
        gap: 0.85rem;
    }
    
    .highlight-item {
        padding: 0.85rem;
    }
    
    .highlight-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .highlight-text h6 {
        font-size: 0.95rem;
    }
    
    .highlight-text p {
        font-size: 0.85rem;
    }
    
    .about-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .about-cta .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    /* Experience Badge */
    .experience-badge {
        bottom: 15px;
        right: 15px;
        padding: 1.25rem;
    }
    
    .experience-badge h3 {
        font-size: 1.75rem;
    }
    
    .experience-badge p {
        font-size: 0.8rem;
    }
    
    /* Places Section */
    .places-section {
        padding: 3rem 0;
    }
    
    .place-card {
        padding: 1.75rem 1.25rem;
        border-radius: 15px;
    }
    
    .place-icon {
        width: 65px;
        height: 65px;
        font-size: 1.65rem;
        margin-bottom: 1.25rem;
    }
    
    .place-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.85rem;
    }
    
    .place-card p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    .place-distance {
        padding: 0.45rem 0.85rem;
        font-size: 0.85rem;
    }
    
    /* CTA Box */
    .cta-box {
        padding: 2rem 1.25rem;
        border-radius: 15px;
        margin-top: 2rem;
    }
    
    .cta-box h3 {
        font-size: 1.4rem;
        margin-bottom: 0.85rem;
    }
    
    .cta-box .lead {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-box .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .cta-box .btn:last-child {
        margin-bottom: 0;
    }
    
    /* Cards */
    .service-card,
    .blog-card,
    .room-card {
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.85rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Gallery */
    .gallery-item {
        height: 220px;
        border-radius: 12px;
    }
    
    .gallery-overlay i {
        font-size: 2.5rem;
    }
    
    /* Float Buttons */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
        bottom: 18px;
        right: 18px;
    }
    
    .phone-float {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        bottom: 80px;
        right: 18px;
    }
    
    /* Page Header */
    .page-header {
        padding: 110px 0 70px;
    }
    
    .page-header h1 {
        font-size: 1.85rem;
        margin-bottom: 0.75rem;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    /* Blog Cards */
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.25rem;
    }
    
    .blog-meta {
        font-size: 0.85rem;
        gap: 1rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
    
    /* Contact Page */
    .modern-contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-card-icon {
        width: 65px;
        height: 65px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .modern-contact-card h5 {
        font-size: 1.2rem;
    }
    
    .modern-contact-card p {
        font-size: 0.95rem;
    }
    
    .modern-contact-form {
        padding: 2rem 1.5rem;
    }
    
    .map-wrapper {
        height: 280px;
        border-radius: 15px;
    }
    
    .contact-features {
        padding: 1.5rem;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-feature-item {
        font-size: 0.9rem;
    }
    
    .contact-feature-item i {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Header */
    .header-main .logo {
        height: 50px;
    }
    
    .navbar-brand {
        padding: 0;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 60vh;
        padding-top: 75px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.65rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.85rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }
    
    /* Hide long description and feature cards on mobile */
    .hero-description-full,
    .hero-features {
        display: none !important;
    }
    
    .hero-features {
        gap: 0.75rem;
        margin-top: 1.25rem;
    }
    
    .feature-item {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }
    
    .feature-item i {
        font-size: 1.1rem;
    }
    
    .hero-content .mt-5 {
        margin-top: 1.75rem !important;
    }
    
    .hero-content .btn-lg {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 12px;
    }
    
    .mouse {
        width: 20px;
        height: 35px;
        border-width: 2px;
    }
    
    .mouse::before {
        width: 4px;
        height: 8px;
    }
    
    /* Sections */
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .section-title {
        font-size: 1.45rem;
        line-height: 1.35;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .section-description {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    
    .section-header.text-center .section-subtitle::before,
    .section-header.text-center .section-subtitle::after {
        width: 25px;
    }
    
    .section-header:not(.text-center) .section-subtitle {
        padding-left: 35px;
    }
    
    .section-header:not(.text-center) .section-subtitle::before {
        width: 30px;
    }
    
    /* Buttons */
    .btn {
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-sm {
        padding: 0.45rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Forms */
    .reservation-form-card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .form-title {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }
    
    .form-control,
    .form-select {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-floating > .form-control,
    .form-floating > .form-select {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
    
    .form-floating > label {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
    
    /* About Section */
    .about-section-modern {
        padding: 2.5rem 0;
    }
    
    .about-main-image {
        border-radius: 12px;
    }
    
    .image-badge {
        bottom: 12px;
        left: 12px;
        padding: 0.85rem 1rem;
        border-radius: 10px;
        gap: 0.75rem;
    }
    
    .badge-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .badge-content h4 {
        font-size: 1.25rem;
    }
    
    .badge-content p {
        font-size: 0.75rem;
    }
    
    .about-stats {
        gap: 0.85rem;
        margin-top: 1.25rem;
    }
    
    .stat-item {
        padding: 0.85rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-content h5 {
        font-size: 1.2rem;
    }
    
    .stat-content p {
        font-size: 0.75rem;
    }
    
    .about-lead {
        font-size: 1rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
    
    .about-highlights {
        gap: 0.75rem;
    }
    
    .highlight-item {
        padding: 0.75rem;
    }
    
    .highlight-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    
    .highlight-text h6 {
        font-size: 0.9rem;
    }
    
    .highlight-text p {
        font-size: 0.8rem;
    }
    
    .about-cta {
        gap: 0.65rem;
    }
    
    /* Experience Badge */
    .experience-badge {
        bottom: 12px;
        right: 12px;
        padding: 1rem;
    }
    
    .experience-badge h3 {
        font-size: 1.5rem;
    }
    
    .experience-badge p {
        font-size: 0.75rem;
    }
    
    /* Places Section */
    .places-section {
        padding: 2.5rem 0;
    }
    
    .place-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .place-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .place-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .place-card p {
        font-size: 0.85rem;
        line-height: 1.65;
        margin-bottom: 1rem;
    }
    
    .place-distance {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* CTA Box */
    .cta-box {
        padding: 1.75rem 1rem;
        border-radius: 12px;
        margin-top: 1.75rem;
    }
    
    .cta-box h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-box .lead {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-box .btn {
        width: 100%;
        margin-bottom: 0.65rem;
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Cards */
    .service-card,
    .blog-card,
    .room-card {
        margin-bottom: 1.25rem;
        border-radius: 12px;
    }
    
    .service-card {
        padding: 1.75rem 1.25rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.65;
    }
    
    .service-card ul {
        font-size: 0.85rem;
    }
    
    /* Gallery */
    .gallery-item {
        height: 200px;
        border-radius: 10px;
        border-width: 2px;
    }
    
    .gallery-overlay i {
        font-size: 2.25rem;
    }
    
    /* Float Buttons */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
        bottom: 15px;
        right: 15px;
    }
    
    .phone-float {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        bottom: 72px;
        right: 15px;
    }
    
    /* Page Header */
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 1.65rem;
        margin-bottom: 0.65rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.35rem;
    }
    
    /* Blog Cards */
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .blog-meta {
        font-size: 0.8rem;
        gap: 0.85rem;
        margin-bottom: 0.85rem;
    }
    
    .blog-excerpt {
        font-size: 0.85rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }
    
    /* Contact Page */
    .modern-contact-card {
        padding: 1.75rem 1.25rem;
        border-radius: 15px;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 1rem;
        border-radius: 15px;
    }
    
    .modern-contact-card h5 {
        font-size: 1.15rem;
        margin-bottom: 0.85rem;
    }
    
    .modern-contact-card p {
        font-size: 0.9rem;
    }
    
    .modern-contact-form {
        padding: 1.75rem 1.25rem;
        border-radius: 15px;
    }
    
    .map-wrapper {
        height: 250px;
        border-radius: 12px;
    }
    
    .contact-features {
        padding: 1.25rem;
        gap: 0.85rem;
        border-radius: 15px;
    }
    
    .contact-feature-item {
        font-size: 0.85rem;
        gap: 0.75rem;
    }
    
    .contact-feature-item i {
        font-size: 1.2rem;
    }
    
    /* Feature Box */
    .feature-box {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .feature-box i {
        font-size: 2.25rem;
        margin-bottom: 0.85rem;
    }
    
    .feature-box h5 {
        font-size: 1.1rem;
        margin-bottom: 0.45rem;
    }
    
    .feature-box p {
        font-size: 0.85rem;
    }
    
    /* Room Cards */
    .room-image {
        height: 200px;
    }
    
    .room-content {
        padding: 1.25rem;
    }
    
    .room-title {
        font-size: 1.3rem;
        margin-bottom: 0.65rem;
    }
    
    .room-description {
        font-size: 0.85rem;
        margin-bottom: 0.85rem;
    }
    
    .room-features {
        margin-bottom: 1.25rem;
    }
    
    .room-features li {
        padding: 0.4rem 0;
        font-size: 0.85rem;
    }
    
    .room-badge {
        padding: 0.4rem 0.85rem;
        font-size: 0.8rem;
    }
    
    /* Accordion */
    .accordion-button {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Modal */
    .modal-content {
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1.25rem;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    /* Pagination */
    .pagination {
        font-size: 0.9rem;
    }
    
    .page-link {
        padding: 0.45rem 0.75rem;
    }
    
    /* Spacing Utilities */
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-3 {
        margin-bottom: 1rem !important;
    }
    
    .mt-5 {
        margin-top: 2rem !important;
    }
    
    .mt-4 {
        margin-top: 1.5rem !important;
    }
    
    .mt-3 {
        margin-top: 1rem !important;
    }
    
    .g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
    
    /* Typography */
    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }
    h4 { font-size: 1.2rem; }
    h5 { font-size: 1.05rem; }
    h6 { font-size: 0.95rem; }
}

/* Page Specific Styles */

/* Rooms Page */
.page-header {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.85) 100%),
                url('../resimler/head.jpeg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-top: 1rem;
}

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

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.room-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.room-detail-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.amenities-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.amenities-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Services Page */
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

/* Icon Styles - Unified */
.service-icon,
.contact-icon,
.place-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
    border: 2px solid rgba(201, 169, 97, 0.2);
}

.service-card:hover .service-icon,
.contact-info-card:hover .contact-icon,
.place-card:hover .place-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

/* Gradient Overlays - Unified */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.9), rgba(168, 138, 77, 0.9));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-overlay i {
    font-size: 3rem;
    color: var(--white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Hover Effects - Unified */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.hover-scale {
    transition: var(--transition);
}

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

.hover-glow {
    transition: var(--transition);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.4);
}

.service-card h4 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Blog Page */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.blog-image {
    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-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-title a {
    color: var(--text-dark);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Contact Page */
.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.contact-info-card h4 {
    margin-bottom: 1rem;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-light);
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* Modern Contact Cards */
.contact-info-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.contact-info-card-modern:hover::before {
    transform: scaleX(1);
}

.contact-info-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.2);
    border-color: var(--primary-color);
}

/* Modern Contact Card Styles */
.modern-contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
    overflow: hidden;
}

.modern-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.modern-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.2);
    border-color: var(--primary-color);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
    border: 2px solid rgba(201, 169, 97, 0.2);
}

.modern-contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-color);
}

.modern-contact-card h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.modern-contact-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--text-light);
    transition: var(--transition);
}

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

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-card-link:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

/* Modern Contact Form */
.modern-contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.1);
}

/* Contact Map */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(201, 169, 97, 0.1);
    transition: var(--transition);
}

.map-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.2);
}

.contact-map {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* Contact Features */
.contact-features {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.contact-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-feature-item:hover {
    background: rgba(201, 169, 97, 0.1);
    transform: translateX(5px);
}

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

.contact-feature-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Print Styles */
@media print {
    .header-main,
    .footer,
    .whatsapp-float,
    .phone-float,
    .scroll-indicator {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: 100%;
    }
}

/* Statistics Box */
.stat-box {
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.2);
    border-color: var(--primary-color);
}

.stat-box i {
    transition: var(--transition);
}

.stat-box:hover i {
    transform: scale(1.1);
}

.stat-box h2 {
    margin: 1rem 0 0.5rem;
}

.stat-box p {
    margin: 0;
    color: var(--text-light);
    font-size: 1rem;
}

/* Blog Detail Page */
.blog-detail {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.blog-detail-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.blog-detail-content {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.05rem;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-detail-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--bg-light);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--text-light);
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 2rem 0;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.sidebar-widget ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.sidebar-widget ul li a i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-light);
}

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

.recent-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.recent-post-info h6 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.recent-post-info h6 a {
    color: var(--text-dark);
}

.recent-post-info h6 a:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.recent-post-date i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Tags Widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-cloud a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.tag-cloud a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Blog Share Buttons */
.blog-share {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
}

.blog-share h5 {
    margin-right: 1rem;
    color: var(--text-dark);
}

.share-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.share-button.facebook {
    background: #3b5998;
}

.share-button.twitter {
    background: #1da1f2;
}

.share-button.linkedin {
    background: #0077b5;
}

.share-button.whatsapp {
    background: #25d366;
}

.share-button:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Blog Detail */
@media (max-width: 991px) {
    .blog-detail {
        padding: 2rem;
    }
    
    .blog-detail-image {
        height: 350px;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .blog-detail {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .blog-detail-image {
        height: 250px;
        border-radius: 12px;
    }
    
    .blog-detail-content {
        font-size: 0.95rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .recent-post-thumb {
        width: 70px;
        height: 70px;
    }
    
    .blog-share {
        flex-wrap: wrap;
    }
    
    .share-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===================================
   Contact Info Card Modern - Additional Styles
   =================================== */
.contact-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
    border: 2px solid rgba(201, 169, 97, 0.2);
}

.contact-info-card-modern:hover .contact-icon-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-color);
}

.contact-info-card-modern h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-detail {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-detail a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-info-card-modern .btn {
    margin-top: 0.5rem;
    font-weight: 500;
}

/* WhatsApp Inline in Phone Card */
.whatsapp-inline {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.whatsapp-inline .contact-detail {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-inline .text-success {
    color: #25D366 !important;
}

/* Compact Contact Cards */
.contact-info-card-compact {
    background: var(--white);
    border-radius: 15px;
    padding: 1.25rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 97, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
}

.contact-info-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.15);
    border-color: var(--primary-color);
}

.contact-icon-compact {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-info-card-compact:hover .contact-icon-compact {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: scale(1.05);
}

.contact-content-compact {
    flex: 1;
    text-align: left;
}

.contact-content-compact h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-content-compact p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-content-compact p a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-content-compact p a:hover {
    color: var(--primary-color);
}

.contact-content-compact small {
    font-size: 0.8rem;
}

.btn-link-compact {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-top: 0.25rem;
}

.btn-link-compact:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

.contact-content-compact .text-success {
    color: #25D366 !important;
}

/* Map Container Full Height */
.map-container-full {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 550px;
}

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

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 600px;
}

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

/* Utility Classes */
.bg-light {
    background-color: var(--bg-light) !important;
}

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

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

.shadow-lg {
    box-shadow: var(--shadow-hover) !important;
}

.rounded {
    border-radius: 15px !important;
}

/* Social Media Large Buttons */
.social-link-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    background: var(--white);
}

.social-link-large:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* ===================================
   Modern Contact Page Styles
   =================================== */

/* Contact Hero Section */
.contact-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.8), rgba(255, 255, 255, 0.9));
}

.contact-hero-content .section-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-hero-content .section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.contact-hero-content .lead {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.quick-info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.15);
}

.quick-info-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.quick-info-content h6 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.quick-info-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-hero-image {
    position: relative;
}

.contact-hero-image img {
    width: 100%;
    height: auto;
}

.contact-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-badge i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.contact-badge small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-badge strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Modern Contact Cards */
.modern-contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.modern-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.2);
    border-color: var(--primary-color);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.modern-contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.contact-card-icon.whatsapp-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    color: #25D366;
}

.modern-contact-card:hover .contact-card-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
}

.modern-contact-card h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modern-contact-card p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.contact-card-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.contact-card-link.whatsapp-link {
    color: #25D366;
}

.contact-card-link.whatsapp-link:hover {
    color: #128C7E;
}

/* Modern Contact Form */
.modern-contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.modern-contact-form .form-floating > .form-control,
.modern-contact-form .form-floating > .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: var(--transition);
}

.modern-contact-form .form-floating > .form-control:focus,
.modern-contact-form .form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(201, 169, 97, 0.15);
}

.modern-contact-form .form-floating > label {
    padding: 1rem 1.25rem;
    color: var(--text-light);
}

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

/* Map Wrapper */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 400px;
}

.contact-map {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Features */
.contact-features {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

/* Modern Accordion */
.modern-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.modern-accordion .accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.5rem 1.75rem;
    border: none;
    display: flex;
    align-items: center;
}

.modern-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: none;
}

.modern-accordion .accordion-button:not(.collapsed) i {
    color: var(--white);
}

.modern-accordion .accordion-button i {
    color: var(--primary-color);
}

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

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

.modern-accordion .accordion-body {
    padding: 1.5rem 1.75rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* Social Media Grid */
.social-media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0 auto;
}

.social-media-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
}

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

.social-media-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.social-media-card h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.social-media-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.social-media-card.facebook:hover {
    border-color: #1877f2;
}

.social-media-card.facebook i {
    color: #1877f2;
}

.social-media-card.instagram:hover {
    border-color: #e4405f;
}

.social-media-card.instagram i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-media-card.twitter:hover {
    border-color: #1da1f2;
}

.social-media-card.twitter i {
    color: #1da1f2;
}

.social-media-card.youtube:hover {
    border-color: #ff0000;
}

.social-media-card.youtube i {
    color: #ff0000;
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {
    .contact-hero-content .section-title {
        font-size: 2.2rem;
    }
    
    .contact-badge {
        bottom: 20px;
        left: 20px;
        padding: 1rem 1.5rem;
    }
    
    .contact-features {
        grid-template-columns: 1fr;
    }
    
    .social-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .contact-hero-section {
        padding: 100px 0 60px;
    }
    
    .contact-hero-content .section-title {
        font-size: 1.8rem;
    }
    
    .contact-hero-content .lead {
        font-size: 1rem;
    }
    
    .quick-info-item {
        padding: 1rem;
    }
    
    .quick-info-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.2rem;
    }
    
    .contact-badge {
        position: static;
        margin-top: 1rem;
    }
    
    .modern-contact-card {
        padding: 2rem 1.5rem;
    }
    
    .modern-contact-form {
        padding: 2rem 1.5rem;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .contact-features {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .social-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .social-media-card {
        padding: 2rem 1.5rem;
    }
    
    .social-media-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .social-media-card h5 {
        font-size: 1.15rem;
    }
    
    .social-media-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        padding: 90px 0 50px;
    }
    
    .contact-hero-content .section-subtitle {
        font-size: 0.85rem;
    }
    
    .contact-hero-content .section-title {
        font-size: 1.55rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-hero-content .lead {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    
    .contact-quick-info {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .quick-info-item {
        padding: 0.85rem;
        border-radius: 12px;
    }
    
    .quick-info-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
    
    .quick-info-content h6 {
        font-size: 0.95rem;
    }
    
    .quick-info-content p {
        font-size: 0.85rem;
    }
    
    .contact-badge {
        padding: 1rem 1.25rem;
        border-radius: 12px;
        gap: 0.75rem;
    }
    
    .contact-badge i {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
    }
    
    .contact-badge small {
        font-size: 0.75rem;
    }
    
    .contact-badge strong {
        font-size: 1rem;
    }
    
    .social-media-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .social-media-card {
        padding: 1.75rem 1.25rem;
        border-radius: 15px;
    }
    
    .social-media-card i {
        font-size: 2.25rem;
        margin-bottom: 0.85rem;
    }
    
    .social-media-card h5 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .social-media-card p {
        font-size: 0.8rem;
    }
}


/* ===================================
   Accessibility Improvements
   =================================== */

/* Focus Styles */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
    top: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #b89550;
        --text-dark: #000000;
        --text-light: #333333;
    }
    
    .btn-primary,
    .btn-outline-primary {
        border-width: 3px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    .header-main,
    .whatsapp-float,
    .phone-float,
    .scroll-indicator,
    .footer-social,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    .page-header {
        background: none;
        color: #000;
        padding: 20px 0;
    }
}

/* ===================================
   Performance Optimizations
   =================================== */

/* GPU Acceleration for Animations */
.hero-content,
.room-card,
.service-card,
.blog-card,
.gallery-item,
.place-card {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Lazy Loading Images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ===================================
   Dark Mode Support (Optional)
   =================================== */

@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode
    :root {
        --text-dark: #f5f5f5;
        --text-light: #cccccc;
        --bg-light: #1a1a1a;
        --white: #2a2a2a;
    }
    
    body {
        background-color: #121212;
        color: var(--text-dark);
    }
    
    .header-main {
        background: rgba(26, 26, 26, 0.98);
    }
    
    .card-base,
    .room-card,
    .service-card,
    .blog-card,
    .place-card {
        background: #2a2a2a;
        border-color: rgba(255, 255, 255, 0.1);
    }
    */
}

/* ===================================
   Utility Classes
   =================================== */

/* Text Utilities */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }

.text-uppercase { text-transform: uppercase !important; }
.text-lowercase { text-transform: lowercase !important; }
.text-capitalize { text-transform: capitalize !important; }

.font-weight-light { font-weight: 300 !important; }
.font-weight-normal { font-weight: 400 !important; }
.font-weight-medium { font-weight: 500 !important; }
.font-weight-semibold { font-weight: 600 !important; }
.font-weight-bold { font-weight: 700 !important; }

/* Display Utilities */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

/* Flex Utilities */
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }

.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }

.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-baseline { align-items: baseline !important; }
.align-items-stretch { align-items: stretch !important; }

/* Gap Utilities */
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }

/* Border Radius Utilities */
.rounded-sm { border-radius: var(--border-radius-sm) !important; }
.rounded { border-radius: var(--border-radius) !important; }
.rounded-lg { border-radius: var(--border-radius-lg) !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: 50rem !important; }

/* Shadow Utilities */
.shadow-none { box-shadow: none !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow { box-shadow: var(--shadow) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

/* Overflow Utilities */
.overflow-hidden { overflow: hidden !important; }
.overflow-auto { overflow: auto !important; }
.overflow-scroll { overflow: scroll !important; }

/* Position Utilities */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }

/* Width & Height Utilities */
.w-25 { width: 25% !important; }
.w-50 { width: 50% !important; }
.w-75 { width: 75% !important; }
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }

.h-25 { height: 25% !important; }
.h-50 { height: 50% !important; }
.h-75 { height: 75% !important; }
.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }

/* ===================================
   Animation Keyframes
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Animation Classes */
.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

.animate-slideInUp {
    animation: slideInUp 0.6s ease-out;
}

.animate-slideInDown {
    animation: slideInDown 0.6s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease-out;
}

.animate-zoomIn {
    animation: zoomIn 0.6s ease-out;
}

/* Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* ===================================
   End of Styles
   =================================== */
