/* Global Styles */
:root {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --dark-color: #1e293b;
    --darker-color: #0f172a;
    --light-color: #f8fafc;
    --gray-color: #94a3b8;
    --dark-gray: #334155;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-light: rgba(255, 255, 255, 0.15);
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Dark Mode Variables */
.dark-mode {
    --dark-color: #f0f2f5;
    --light-color: #333333;
    --darker-color: #e8eaf6;
    --gray-color: #6b7280;
    --dark-gray: #d1d5db;
    --overlay-dark: rgba(255, 255, 255, 0.1);
    --overlay-light: rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.dark-mode header {
    background-color: rgba(240, 242, 245, 0.9);
}

.header-scrolled {
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu ul {
    display: flex;
    gap: 20px;
}

.nav-menu ul li a {
    font-weight: 600;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-menu ul li a:hover, .nav-menu ul li a.active {
    color: var(--primary-color);
    background-color: var(--overlay-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle, .hamburger {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle {
    background-color: var(--overlay-light);
}

.theme-toggle:hover {
    transform: rotate(180deg);
    background-color: var(--primary-color);
    color: white;
}

.hamburger {
    display: none;
    font-size: 1.3rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 8px 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
    font-weight: 500;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.lang-btn.active {
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(74, 144, 226, 0.15);
}

.lang-btn i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.lang-btn.active i {
    color: var(--primary-color);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 2px;
    font-weight: 300;
}

/* Dark mode adjustments */
.dark-mode .lang-btn {
    color: var(--text-color);
}

.dark-mode .lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dark-mode .lang-btn.active {
    color: var(--primary-color);
    background: rgba(74, 144, 226, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-switcher {
        margin-right: 10px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .lang-btn i {
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(59, 130, 246, 0.4));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    background: linear-gradient(45deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textGlow 2s infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Features Section */
.features {
    background-color: rgba(248, 250, 252, 0.5);
}

.dark-mode .features {
    background-color: rgba(240, 242, 245, 0.5);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.dark-mode .feature {
    background-color: var(--darker-color);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.5rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.feature-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Room Preview Section */
.room-preview {
    position: relative;
    overflow: hidden;
}

.room-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.room-slide {
    min-width: 80%;
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: visible;
}

.room-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.room-slide .room-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.room-slide.featured .room-info {
    background: linear-gradient(to top, rgba(59, 130, 246, 0.8), transparent);
}

.room-slide h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.room-slide p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.popular-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #ff4d4d;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 100;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
    background-color: rgba(248, 250, 252, 0.5);
}

.dark-mode .testimonials {
    background-color: rgba(240, 242, 245, 0.5);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: default;
}

.dark-mode .testimonial {
    background-color: var(--darker-color);
}

.testimonial:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.2;
}

.testimonial p {
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.rating {
    color: var(--accent-color);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta h2 span {
    color: white;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    margin-top: 70px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero h1 span {
    color: white;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    opacity: 0.9;
}

.breadcrumbs {
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumbs a {
    opacity: 0.8;
}

.breadcrumbs a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumbs span {
    font-weight: 600;
}

/* Amenities Section */
.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.amenity-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.dark-mode .amenity-card {
    background-color: var(--darker-color);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.5rem;
}

.amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.amenity-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.amenity-features {
    text-align: left;
    margin-top: 20px;
}

.amenity-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenity-features i {
    color: var(--success-color);
}

/* No Fees Section */
.no-fees {
    background-color: rgba(248, 250, 252, 0.5);
}

.dark-mode .no-fees {
    background-color: rgba(240, 242, 245, 0.5);
}

.no-fees-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.no-fees-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.no-fees-text h2 span {
    color: var(--primary-color);
}

.no-fees-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.no-fees-text ul {
    margin-bottom: 2rem;
}

.no-fees-text ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.no-fees-text ul li i {
    color: var(--success-color);
}

.no-fees-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.no-fees-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.no-fees-image:hover img {
    transform: scale(1.05);
}

/* Optional Services */
.optional-services {
    background-color: white;
}

.dark-mode .optional-services {
    background-color: var(--darker-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.dark-mode .service-card {
    background-color: var(--dark-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* Room Comparison Section */
.room-comparison {
    background-color: rgba(248, 250, 252, 0.5);
}

.dark-mode .room-comparison {
    background-color: rgba(240, 242, 245, 0.5);
}

.comparison-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--gray-color);
}

.tab-btn {
    padding: 12px 30px;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--gray-color);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.room-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.room-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.main-image:hover img {
    transform: scale(1.03);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.thumbnail-grid a {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.thumbnail-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: var(--transition);
}

.thumbnail-grid img:hover {
    transform: scale(1.1);
}

.room-info {
    position: relative;
}

.room-info h3 {
    font-size: 2rem;
}

.room-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.room-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--gray-color);
}

.room-features {
    margin-bottom: 30px;
}

.room-features h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.room-features ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-features i {
    color: var(--success-color);
}

.room-cta {
    display: flex;
    gap: 15px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 0;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Comparison Table */
.comparison-table {
    background-color: white;
}

.dark-mode .comparison-table {
    background-color: var(--darker-color);
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.dark-mode table {
    background-color: var(--dark-color);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--overlay-light);
}

th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: var(--overlay-light);
}

/* Virtual Tour */
.virtual-tour {
    background-color: rgba(248, 250, 252, 0.5);
}

.dark-mode .virtual-tour {
    background-color: rgba(240, 242, 245, 0.5);
}

.tour-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 30px 0;
}

.tour-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#panorama {
    cursor: grab;
}

#panorama:active {
    cursor: grabbing;
}

/* 360° Viewer Styles */
.tour-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 30px 0;
}

.tour-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#panorama {
    cursor: grab;
}

#panorama:active {
    cursor: grabbing;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.booking-info h2 span {
    color: white;
}

.booking-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text a {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.booking-form {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-xl);
}

.dark-mode .booking-form {
    background-color: var(--darker-color);
}

.booking-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.dark-mode .booking-form h3 {
    color: var(--light-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.dark-mode .form-group label {
    color: var(--light-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--light-color);
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background-color: var(--dark-color);
    color: var(--light-color);
    border-color: var(--dark-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Common Areas Gallery */
.common-areas-gallery {
    background-color: white;
}

.dark-mode .common-areas-gallery {
    background-color: var(--darker-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Featured Areas */
.featured-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.featured-area.reverse {
    direction: rtl;
}

.featured-area.reverse > * {
    direction: ltr;
}

.area-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.area-description {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.area-features {
    margin-bottom: 2rem;
}

.area-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-features i {
    color: var(--success-color);
}

.area-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.area-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.area-image:hover img {
    transform: scale(1.05);
}

/* Community Events */
.community-events {
    background-color: rgba(248, 250, 252, 0.5);
}

.dark-mode .community-events {
    background-color: rgba(240, 242, 245, 0.5);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
}

.dark-mode .event-card {
    background-color: var(--darker-color);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.event-date {
    min-width: 80px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-info {
    padding: 20px;
    flex: 1;
}

.event-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.event-time, .event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--gray-color);
}

.event-description {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.event-rsvp {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.events-cta {
    text-align: center;
    margin-top: 50px;
}

/* Common Rules */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.rule-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.dark-mode .rule-card {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #000000 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.rule-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.rule-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.5rem;
}

.rule-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #000000 !important;
}

.rule-card p {
    color: #000000 !important;
    margin-bottom: 20px;
}

.rule-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    color: #000000 !important;
}

.rule-card li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: #000000 !important;
}

.rule-card li::before {
    content: "•";
    color: #000000 !important;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.rule-card .btn {
    background-color: #0066cc !important;
    color: #ffffff !important;
    border: none !important;
    margin-top: 10px;
}

.rule-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Security Section */
.security-section {
    background-color: white;
}

.dark-mode .security-section {
    background-color: var(--darker-color);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.security-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.dark-mode .security-card {
    background-color: var(--dark-color);
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.security-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.5rem;
}

.security-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.security-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* Parking Section */
.parking-section {
    background-color: rgba(248, 250, 252, 0.5);
}

.dark-mode .parking-section {
    background-color: rgba(240, 242, 245, 0.5);
}

.parking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.parking-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.parking-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.parking-image:hover img {
    transform: scale(1.05);
}

.parking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.parking-info h2 span {
    color: var(--primary-color);
}

.parking-description {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.parking-option {
    margin-bottom: 30px;
}

.parking-option h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.parking-option ul {
    margin-bottom: 20px;
}

.parking-option ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.parking-option ul li i {
    color: var(--success-color);
}

/* FAQs Section */
.faq-section {
    background-color: white;
}

.dark-mode .faq-section {
    background-color: var(--darker-color);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: var(--light-color);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.dark-mode .faq-question {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.faq-question:hover {
    background-color: var(--primary-color);
    color: white;
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--light-color);
}

.dark-mode .faq-answer {
    background-color: var(--dark-color);
}

.faq-answer p {
    padding: 20px 0;
    color: var(--gray-color);
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Policies Section */
.policies-section {
    background-color: rgba(248, 250, 252, 0.5);
}

.dark-mode .policies-section {
    background-color: rgba(240, 242, 245, 0.5);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.policy-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.dark-mode .policy-card {
    background-color: var(--darker-color);
}

.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.policy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.policy-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
    background-color: white;
}

.dark-mode .contact-section {
    background-color: var(--darker-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: var(--primary-color);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-text a {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-text p, .contact-text address {
    font-size: 0.95rem;
    color: var(--gray-color);
    font-style: normal;
}

.contact-form {
    background-color: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.dark-mode .contact-form {
    background-color: var(--dark-color);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.dark-mode .contact-form h3 {
    color: var(--light-color);
}

/* Contact Information Text Color */
.contact-method p,
.contact-method a,
.contact-method h4,
.contact-method address {
    color: #ffffff !important;
}

.contact-method a:hover {
    color: #f0f0f0 !important;
    text-decoration: underline;
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 9999;
    transition: var(--transition);
}

.fab:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.fab-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: var(--dark-color);
    color: white;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    white-space: nowrap;
}

.fab:hover .fab-tooltip {
    opacity: 1;
    bottom: 80px;
}

.fab-form {
    display: none;
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 9999;
}

.fab-form.show {
    display: block;
}

.dark-mode .fab-form {
    background-color: var(--darker-color);
}

.fab-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.dark-mode .fab-form h3 {
    color: var(--light-color);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 80px 0 0;
    margin-top: auto;
    width: 100%;
    flex-shrink: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: white;
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

/* Footer Social Links */
.footer-social {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-social h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: white;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #4a90e2, #5d9cec);
    box-shadow: 0 5px 15px rgba(93, 156, 236, 0.4);
    border-color: transparent;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a i {
    position: relative;
    z-index: 1;
}

/* Dark mode adjustments */
.dark-mode .social-links a {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .social-links a:hover {
    background: linear-gradient(135deg, #4a90e2, #5d9cec);
}

/* Responsive adjustments for social links */
@media (max-width: 768px) {
    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .social-img {
        width: 40px;
        height: 40px;
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    font-size: 0.9rem;
    opacity: 0.8;
}

.legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Manager Card */
.manager-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.manager-name {
    font-weight: 600;
    margin-bottom: 10px;
}

.manager-contact {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Savings Section */
.savings-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.savings-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.saving-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.saving-item:hover {
    transform: translateY(-5px);
}

.saving-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.saving-item:hover i {
    transform: scale(1.1);
}

.saving-item p {
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
}

/* Technical Specifications */
.specs-section {
    padding: 60px 0;
    background-color: var(--light-color);
    margin-top: 60px;
}

.specs-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.specs-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.specs-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.specs-card.featured {
    border: 2px solid var(--primary-color);
}

.specs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.specs-card h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.specs-card h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.specs-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.specs-card li {
    margin-bottom: 12px;
    color: var(--dark-gray);
    font-size: 1rem;
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.specs-card li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 10px;
    font-size: 1.2em;
}

.specs-card li span {
    font-weight: 600;
    color: var(--dark-color);
    min-width: 100px;
    display: inline-block;
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        padding: 0 15px;
    }
    
    .specs-card {
        margin: 0 0 30px 0;
    }
    
    .specs-card:last-child {
        margin-bottom: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .no-fees-content,
    .booking-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-area {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .parking-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .room-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .dark-mode .nav-menu {
        background-color: var(--darker-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .fab-form {
        width: 300px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .room-cta {
        flex-direction: column;
    }
}

body::after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

@media (min-height: 100vh) {
    body {
        display: flex;
        flex-direction: column;
    }
    footer {
        position: relative;
        bottom: 0;
        width: 100%;
    }
}

/* Contact Info Styling */
.contact-info,
.contact-info h3,
.contact-info p {
    color: var(--primary-color) !important;
}

.contact-info a[href^="tel:"],
.contact-info a[href^="mailto:"],
.contact-info address {
    color: white !important;
}

/* Social Icons Horizontal Layout */
.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
}

/* Footer Contact Info - White Text */
.footer-col .contact-info,
.footer-col .contact-info li,
.footer-col .contact-info i {
    color: white !important;
}

/* شات بوت الذكاء الاصطناعي */
#ai-chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

#ai-chat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#ai-chat-icon:hover {
    transform: scale(1.1);
}

#ai-chat-icon i {
    font-size: 24px;
    color: white;
}

#ai-chat-window {
    display: none;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    flex-direction: column;
}

/* أيقونة Contact Us العائمة */
.floating-contact {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9998;
    width: 60px;
    height: 60px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.floating-contact i {
    font-size: 24px;
    color: white;
}

.floating-contact:hover {
    background: #3e8e41;
    transform: scale(1.1);
}

/* تنسيق شامل لجميع البطاقات في الوضع الليلي */
body.dark-mode .card,
body.dark-mode .feature,
body.dark-mode .info-section,
body.dark-mode .room-card,
body.dark-mode .service-box,
body.dark-mode .amenity-item,
body.dark-mode .testimonial,
body.dark-mode .pricing-table,
body.dark-mode .faq-item {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #000000 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* تنسيق النصوص في البطاقات */
body.dark-mode .card h2,
body.dark-mode .card h3,
body.dark-mode .card h4,
body.dark-mode .card p,
body.dark-mode .card li,
body.dark-mode .feature h3,
body.dark-mode .feature p,
body.dark-mode .info-section h2,
body.dark-mode .info-section h3,
body.dark-mode .info-section p,
body.dark-mode .room-card h3,
body.dark-mode .room-card p,
body.dark-mode .service-box h3,
body.dark-mode .service-box p,
body.dark-mode .testimonial p,
body.dark-mode .pricing-table h3,
body.dark-mode .pricing-table .price,
body.dark-mode .faq-item h4 {
    color: #000000 !important;
}

/* تنسيق الروابط في البطاقات */
body.dark-mode .card a:not(.btn),
body.dark-mode .feature a:not(.btn),
body.dark-mode .info-section a:not(.btn),
body.dark-mode .room-card a:not(.btn),
body.dark-mode .service-box a:not(.btn) {
    color: #0066cc !important;
    text-decoration: underline;
}

/* تنسيق الأزرار في البطاقات */
body.dark-mode .card .btn,
body.dark-mode .feature .btn,
body.dark-mode .room-card .btn,
body.dark-mode .service-box .btn {
    background-color: #0066cc !important;
    color: #ffffff !important;
    border: none !important;
}

/* تنسيق أيقونات Font Awesome */
body.dark-mode .card .fas,
body.dark-mode .card .far,
body.dark-mode .feature .fas,
body.dark-mode .feature .far,
body.dark-mode .info-section .fas,
body.dark-mode .info-section .far,
body.dark-mode .room-card .fas,
body.dark-mode .room-card .far {
    color: #000000 !important;
}

/* تنسيق خاص للبطاقات المميزة */
body.dark-mode .featured,
body.dark-mode .popular {
    border: 2px solid #ffd700 !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3) !important;
}

/* تنسيق خاص لصفحة common-areas في الوضع الليلي */
body.dark-mode .common-area,
body.dark-mode .area-card,
body.dark-mode .gallery-item,
body.dark-mode .area-description,
body.dark-mode .area-features {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #000000 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* تنسيق النصوص */
body.dark-mode .common-area h2,
body.dark-mode .common-area h3,
body.dark-mode .common-area h4,
body.dark-mode .common-area p,
body.dark-mode .common-area li,
body.dark-mode .area-card h3,
body.dark-mode .area-card p,
body.dark-mode .area-description p,
body.dark-mode .area-features li,
body.dark-mode .gallery-item .caption {
    color: #000000 !important;
}

/* تنسيق الروابط */
body.dark-mode .common-area a:not(.btn),
body.dark-mode .area-card a:not(.btn) {
    color: #0066cc !important;
    text-decoration: underline;
}

/* تنسيق الأزرار */
body.dark-mode .common-area .btn,
body.dark-mode .area-card .btn {
    background-color: #0066cc !important;
    color: #ffffff !important;
    border: none !important;
}

/* تنسيق أيقونات Font Awesome */
body.dark-mode .common-area .fas,
body.dark-mode .common-area .far,
body.dark-mode .area-card .fas,
body.dark-mode .area-card .far {
    color: #000000 !important;
}

/* تنسيق خاص للبطاقات المميزة */
body.dark-mode .common-area .featured,
body.dark-mode .area-card.featured {
    border: 2px solid #ffd700 !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3) !important;
}

/* تنسيق بطاقات الأحداث في الوضع الليلي */
body.dark-mode .event-card,
body.dark-mode .event-info {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #000000 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
}

/* تنسيق النصوص داخل بطاقات الأحداث */
body.dark-mode .event-card h3,
body.dark-mode .event-card h4,
body.dark-mode .event-card p,
body.dark-mode .event-info h3,
body.dark-mode .event-info h4,
body.dark-mode .event-info p,
body.dark-mode .event-details,
body.dark-mode .event-location,
body.dark-mode .event-time,
body.dark-mode .event-date {
    color: #000000 !important;
}

/* تنسيق الأزرار في بطاقات الأحداث */
body.dark-mode .event-card .btn,
body.dark-mode .event-info .btn {
    background-color: #0066cc !important;
    color: #ffffff !important;
    border: none !important;
}

/* تنسيق أيقونات الأحداث */
body.dark-mode .event-card .fas,
body.dark-mode .event-card .far,
body.dark-mode .event-info .fas,
body.dark-mode .event-info .far {
    color: #000000 !important;
}

/* تنسيق العلامات والشارات */
body.dark-mode .event-tag,
body.dark-mode .event-badge {
    background-color: rgba(0, 0, 0, 0.1) !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
}

/* تنسيق روابط بطاقات الأحداث */
body.dark-mode .event-card a:not(.btn),
body.dark-mode .event-info a:not(.btn) {
    color: #0066cc !important;
    text-decoration: underline;
}

/* تأثير التحويم على البطاقات */
body.dark-mode .event-card:hover,
body.dark-mode .event-info:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* تنسيق عناوين 'Conçus pour la' في الوضع الليلي */
body.dark-mode h2:contains('Conçus pour la'),
body.dark-mode .section-header h2:contains('Conçus pour la') {
    color: #000000 !important;
}

/* تنسيق النص التالي للعنوان */
body.dark-mode h2:contains('Conçus pour la') + p,
body.dark-mode .section-header h2:contains('Conçus pour la') + p {
    color: #000000 !important;
}

/* تنسيق أي عناصر داخل قسم يحتوي على هذا العنوان */
body.dark-mode h2:contains('Conçus pour la').section-title,
body.dark-mode h2:contains('Conçus pour la').title {
    color: #000000 !important;
}

/* تنسيق الكلمة المميزة 'communauté' */
body.dark-mode h2:contains('Conçus pour la') span,
body.dark-mode .section-header h2:contains('Conçus pour la') span {
    color: #000000 !important;
    font-weight: bold;
}

/* تنسيق عناوين الأقسام في الوضع الليلي */
body.dark-mode .section-header h2,
body.dark-mode .section-title,
body.dark-mode .common-areas-gallery h2 {
    color: #000000 !important;
}

/* تنسيق النصوص الفرعية */
body.dark-mode .section-header p,
body.dark-mode .section-subtitle,
body.dark-mode .common-areas-gallery p {
    color: #000000 !important;
}

/* تنسيق الكلمات المميزة */
body.dark-mode .highlight-text,
body.dark-mode .highlight,
body.dark-mode .accent {
    color: #000000 !important;
    font-weight: bold;
}

/* تنسيق لبطاقات المواصفات في الوضع الليلي */
body.dark-mode .specs-card {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #000000 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* تنسيق العناوين */
body.dark-mode .specs-card h3,
body.dark-mode .specs-card h4,
body.dark-mode .specs-card h5 {
    color: #000000 !important;
    margin-bottom: 15px;
    font-weight: 600;
}

/* تنسيق النصوص */
body.dark-mode .specs-card p {
    color: #000000 !important;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* تنسيق القوائم */
body.dark-mode .specs-list,
body.dark-mode .specs-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

body.dark-mode .specs-list li,
body.dark-mode .specs-features li {
    color: #000000 !important;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

body.dark-mode .specs-list li::before,
body.dark-mode .specs-features li::before {
    content: "•";
    color: #000000 !important;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* تنسيق الأيقونات */
body.dark-mode .specs-card .fas,
body.dark-mode .specs-card .far,
body.dark-mode .specs-card .fab {
    color: #000000 !important;
    margin-right: 8px;
}

/* تنسيق الجداول */
body.dark-mode .specs-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

body.dark-mode .specs-table th,
body.dark-mode .specs-table td {
    color: #000000 !important;
    border: 1px solid #e0e0e0 !important;
    padding: 10px;
    text-align: left;
}

body.dark-mode .specs-table th {
    background-color: rgba(0, 0, 0, 0.05) !important;
    font-weight: 600;
}

/* تنسيق الأزرار */
body.dark-mode .specs-card .btn {
    background-color: #0066cc !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}

body.dark-mode .specs-card .btn:hover {
    background-color: #0052a3 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* تأثير التحويم */
body.dark-mode .specs-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* تنسيق إضافي لضمان ظهور النصوص بالأسود في الوضع الليلي */
body.dark-mode .specs-card *:not(button):not(a):not(.btn) {
    color: #000000 !important;
}

/* تنسيق الروابط */
body.dark-mode .specs-card a:not(.btn) {
    color: #0066cc !important;
    text-decoration: underline;
}

/* تنسيق العناصر المضمنة */
body.dark-mode .specs-card span,
body.dark-mode .specs-card div,
body.dark-mode .specs-card strong,
body.dark-mode .specs-card em,
body.dark-mode .specs-card b,
body.dark-mode .specs-card i {
    color: #000000 !important;
}

/* تنسيق حقول الإدخال والنصوص */
body.dark-mode .specs-card input,
body.dark-mode .specs-card textarea,
body.dark-mode .specs-card select {
    color: #000000 !important;
    background-color: #ffffff !important;
    border: 1px solid #cccccc !important;
}

/* تنسيق العناصر المنسدلة */
body.dark-mode .specs-card option {
    color: #000000 !important;
    background-color: #ffffff !important;
}

/* تنسيق العلامات والشارات */
body.dark-mode .specs-card .badge,
body.dark-mode .specs-card .tag {
    background-color: rgba(0, 0, 0, 0.1) !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
}

/* تنسيق الأيقونات داخل البطاقات */
body.dark-mode .specs-card .icon {
    color: #000000 !important;
}

/* تنسيق العناوين الداخلية */
body.dark-mode .specs-card .card-title,
body.dark-mode .specs-card .card-header,
body.dark-mode .specs-card .card-body,
body.dark-mode .specs-card .card-footer {
    color: #000000 !important;
}

/* تنسيق الرسائل والتنبيهات */
body.dark-mode .specs-card .alert,
body.dark-mode .specs-card .message {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #000000 !important;
    border: 1px solid #e0e0e0 !important;
}

/* تنسيق شامل لبطاقات الخدمات في الوضع الليلي */
body.dark-mode .service-card {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #000000 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 10px !important;
    padding: 25px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

/* تنسيق أيقونة الخدمة */
body.dark-mode .service-card .service-icon {
    color: #000000 !important;
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

/* تنسيق عنوان الخدمة */
body.dark-mode .service-card h3,
body.dark-mode .service-card .service-title {
    color: #000000 !important;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* تنسيق وصف الخدمة */
body.dark-mode .service-card p,
body.dark-mode .service-card .service-description {
    color: #000000 !important;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* تنسيق قائمة ميزات الخدمة */
body.dark-mode .service-card .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

body.dark-mode .service-card .service-features li {
    color: #000000 !important;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

body.dark-mode .service-card .service-features li::before {
    content: "✓";
    color: #000000 !important;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* تنسيق الأزرار */
body.dark-mode .service-card .btn {
    background-color: #0066cc !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

body.dark-mode .service-card .btn:hover {
    background-color: #0052a3 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

/* تأثير التحويم */
body.dark-mode .service-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* تنسيق البطاقة المميزة */
body.dark-mode .service-card.featured {
    border: 2px solid #ffd700 !important;
    position: relative;
    overflow: hidden;
}

body.dark-mode .service-card.featured::before {
    content: "مميز";
    position: absolute;
    top: 15px;
    left: -35px;
    background-color: #ffd700;
    color: #000000 !important;
    padding: 5px 40px;
    transform: rotate(-45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

/* تنسيق السعر (إذا كان موجودًا) */
body.dark-mode .service-card .price {
    color: #000000 !important;
    font-size: 2rem;
    font-weight: 700;
    margin: 15px 0;
}

body.dark-mode .service-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #000000 !important;
}

/* تنسيق الوسوم */
body.dark-mode .service-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

body.dark-mode .service-card .tag {
    background-color: rgba(0, 0, 0, 0.1) !important;
    color: #000000 !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid #000000 !important;
}

/* تنسيق التقييمات */
body.dark-mode .service-card .rating {
    color: #ffc107 !important;
    margin: 10px 0;
}

body.dark-mode .service-card .rating-count {
    color: #000000 !important;
    font-size: 0.9rem;
    margin-left: 5px;
}

/* ===== تنسيق بطاقات المرافق (amenity-card) في الوضع الليلي ===== */
body.dark-mode .amenity-card {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #000000 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* أيقونة المرفق */
body.dark-mode .amenity-card .amenity-icon {
    color: #000000 !important;
    font-size: 2.2rem;
    margin-bottom: 15px;
    display: inline-block;
}

/* عنوان المرفق */
body.dark-mode .amenity-card h3,
body.dark-mode .amenity-card .amenity-title {
    color: #000000 !important;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

/* وصف المرفق */
body.dark-mode .amenity-card p,
body.dark-mode .amenity-card .amenity-description {
    color: #000000 !important;
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* تنسيق قائمة الميزات */
body.dark-mode .amenity-card .amenity-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

body.dark-mode .amenity-card .amenity-features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

body.dark-mode .amenity-card .amenity-features li::before {
    content: "•";
    color: #000000 !important;
    font-weight: bold;
    position: absolute;
    left: 10px;
}

/* زر المزيد */
body.dark-mode .amenity-card .btn-more {
    align-self: flex-start;
    color: #0066cc !important;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

body.dark-mode .amenity-card .btn-more i {
    margin-right: 5px;
    transition: transform 0.3s ease;
}

body.dark-mode .amenity-card .btn-more:hover i {
    transform: translateX(5px);
}

/* ===== تنسيق بطاقات التوفير (savings-card) في الوضع الليلي ===== */
body.dark-mode .savings-card {
    background: linear-gradient(135deg, #fff8e1 0%, #fff1c2 100%) !important;
    color: #000000 !important;
    border: 1px solid #ffe082 !important;
    border-radius: 12px !important;
    padding: 25px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

/* شارة التوفير */
body.dark-mode .savings-card .savings-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #ff5722;
    color: #ffffff !important;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    width: 120px;
    text-align: center;
}

/* عنوان بطاقة التوفير */
body.dark-mode .savings-card h3,
body.dark-mode .savings-card .savings-title {
    color: #000000 !important;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

/* مبلغ التوفير */
body.dark-mode .savings-card .savings-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e65100 !important;
    text-align: center;
    margin: 20px 0;
    line-height: 1.2;
}

/* تفاصيل التوفير */
body.dark-mode .savings-card .savings-details {
    background-color: rgba(255, 255, 255, 0.7) !important;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

body.dark-mode .savings-card .savings-details p {
    color: #000000 !important;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

body.dark-mode .savings-card .savings-details .total {
    font-weight: 700;
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
    margin-top: 10px;
}

/* زر الاشتراك */
body.dark-mode .savings-card .btn-subscribe {
    background-color: #ff9800 !important;
    color: #000000 !important;
    border: none !important;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 15px;
}

body.dark-mode .savings-card .btn-subscribe:hover {
    background-color: #f57c00 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

/* ملاحظة التوفير */
body.dark-mode .savings-card .savings-note {
    font-size: 0.8rem;
    color: #000000 !important;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    opacity: 0.8;
}

/* تأثير التحويم */
body.dark-mode .amenity-card:hover,
body.dark-mode .savings-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* ===== تنسيق عناصر التوفير (saving-item) في الوضع الليلي ===== */
body.dark-mode .saving-item {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #000000 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 10px !important;
    padding: 20px !important;
    margin-bottom: 15px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* أيقونة التوفير */
body.dark-mode .saving-item .saving-icon {
    color: #000000 !important;
    font-size: 1.8rem;
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
}

/* محتوى التوفير */
body.dark-mode .saving-item .saving-content {
    flex: 1;
}

/* عنوان التوفير */
body.dark-mode .saving-item h4,
body.dark-mode .saving-item .saving-title {
    color: #000000 !important;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

/* وصف التوفير */
body.dark-mode .saving-item p,
body.dark-mode .saving-item .saving-description {
    color: #000000 !important;
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* مبلغ التوفير */
body.dark-mode .saving-item .saving-amount {
    color: #4caf50 !important;
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 15px;
    white-space: nowrap;
}

/* شارة الخصم */
body.dark-mode .saving-item .discount-badge {
    position: absolute;
    top: 10px;
    right: -25px;
    background-color: #ff5722;
    color: #ffffff !important;
    padding: 3px 25px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: bold;
    width: 100px;
    text-align: center;
}

/* حالة التفعيل */
body.dark-mode .saving-item.active {
    border-color: #4caf50 !important;
    background-color: rgba(76, 175, 80, 0.1) !important;
}

/* زر الإجراء */
body.dark-mode .saving-item .action-btn {
    background-color: #4caf50 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    margin-left: 15px;
    transition: all 0.3s ease;
}

body.dark-mode .saving-item .action-btn:hover {
    background-color: #3d8b40 !important;
    transform: translateY(-1px);
}

/* تأثير التحويم */
body.dark-mode .saving-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
}

/* تنسيق عناصر التوفير المتعددة */
body.dark-mode .savings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* تنسيق رأس عنصر التوفير */
body.dark-mode .saving-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

/* تنسيق تذييل عنصر التوفير */
body.dark-mode .saving-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

/* تنسيق التاريخ */
body.dark-mode .saving-date {
    font-size: 0.8rem;
    color: #000000 !important;
    opacity: 0.7;
}