/* استيراد خط Google Cairo */
@import url('https://fonts.googleapis.com/css2?family=Cairo&display=swap');

/* المتغيرات اللونية */
:root {
    --primary-color: #394C38; /* اللون الزيتي */
    --secondary-color: #000000; /* الأسود */
    --background-color: #ffffff; /* الأبيض */
    --accent-color: #ffffff; /* للكتابات على الألوان الداكنة */
    --secondary-accent: #f4f4f4; /* لون الخلفية الثانوي */
    --button-hover: #556b2f; /* لون التفاعل عند المرور بالزرار */
}

/* إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--secondary-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}
/*.carousel-container {*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  margin: 20px 0;*/
/*}*/

/*.carousel-track {*/
/*  display: flex;*/
/*  transition: transform 0.3s ease;*/
/*}*/

/*.carousel-card {*/
/*  flex: 0 0 calc(33.333% - 20px);*/
/*  margin: 0 10px;*/
/*  box-sizing: border-box;*/
/*  text-align: center;*/
/*}*/

/*.carousel-card img {*/
/*  width: 100%;*/
/*  border-radius: 5px;*/
/*}*/

/*.carousel-arrow {*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  transform: translateY(-50%);*/
/*  background: rgba(255,255,255,0.8);*/
/*  border: none;*/
/*  font-size: 2rem;*/
/*  padding: 0 10px;*/
/*  cursor: pointer;*/
/*  z-index: 1;*/
/*}*/

/*.carousel-arrow.prev { left: 0; }*/
/*.carousel-arrow.next { right: 0; }*/

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: 20px auto;
  padding: 0 30px;             /* to give space for arrows */
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
  padding: 40px 0;
  /* no fixed width here! */
}

.carousel-track .card {
  /* default to 1 card per view */
  flex: 0 0 100%;
}

/* Tablet: 2 cards */
@media (min-width: 600px) {
  .carousel-track .card {
    flex: 0 0 calc(50% - 10px); /* subtract half the gap */
  }
}

/* Desktop: 3 cards */
@media (min-width: 900px) {
  .carousel-track .card {
    flex: 0 0 calc(33.333% - 13.33px);
  }
}

/* Large desktop: 4 cards */
@media (min-width: 1200px) {
  .carousel-track .card {
    flex: 0 0 calc(25% - 15px);
  }
}

/* arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 2rem;
  padding: 0 10px;
  cursor: pointer;
  z-index: 1;
}
.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }
.carousel-arrow:hover { background: #eee; }



button {
    cursor: pointer;
    border: none;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--button-hover);
}


/* شريط التنقل العلوي - تصميم محسن */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: linear-gradient(135deg, var(--background-color) 60%, rgba(57, 76, 56, 0.05) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
    transition: transform 0.3s ease;
}

/* Restored Logo Hover Effects */
.logo:hover {
    transform: scale(1.05);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.logo:hover::after {
    width: 100%;
    left: 0;
}

.logo img {
    height: 30px;
    margin-right: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: rotate(5deg);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    position: relative;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 10px 0;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li.active a {
    color: var(--primary-color);
}

.nav-links li.active a::after {
    width: 100%;
}

.login-button button {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(57, 76, 56, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-button button::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: left 0.7s ease;
}

.login-button button:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(57, 76, 56, 0.3);
}

.login-button button:hover::before {
    left: 100%;
}

/* ستايل مميز لرسالة الترحيب في الهيدر */
.login-button span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    padding: 8px 16px 8px 12px;
    border-radius: 50px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(57, 76, 56, 0.15);
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

/* أيقونة المستخدم قبل الاسم */
.login-button span::before {
    content: "\f007";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.7);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(57, 76, 56, 0.1);
    font-size: 0.9rem;
}

/* تأثير التحويم على رسالة الترحيب */
.login-button span:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.85));
    color: var(--button-hover);
}

/* تأثير توهج خلفي متحرك عند التحويم */
.login-button span::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 100%;
    top: 0;
    left: -100px;
    background: linear-gradient(to right, 
                              transparent, 
                              rgba(255, 255, 255, 0.6), 
                              transparent);
    transform: skewX(-15deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.login-button span:hover::after {
    left: 100%;
    opacity: 1;
}

/* تنسيق اسم المستخدم بخط سميك */
.login-button span strong {
    font-weight: 700;
    color: var(--secondary-color);
}

/* تطبيق نمط لاسم المستخدم */
.login-button span {
    text-transform: capitalize;
    letter-spacing: 0.2px;
}

/* استايلات متوافقة مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .login-button span {
        font-size: 0.9rem;
        padding: 6px 12px 6px 10px;
    }
    
    .login-button span::before {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
}

/* Hamburger menu styling */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Media queries */
@media (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: static; /* CHANGED: no absolute, stays in flow */
        margin-right: 10px;
        transform: none;
    }
    
    .navbar {
        padding: 15px 8%;
        justify-content: space-between; /* keep space between all three: hamburger, logo, login */
    }
    
    .logo {
        margin: 0;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: var(--background-color);
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        gap: 0;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }
    
    /* --------- CHANGED for mobile: stack login elements vertically ---------- */
    .login-button {
        margin-top: 15px;
        display: flex;
        flex-direction: column;   /* Stack vertically */
        justify-content: center;
        align-items: center;
        gap: 6px;
    }
    .login-button span {
        font-size: 0.8rem;      /* Smaller font on mobile */
        padding: 5px 10px 5px 8px;
        margin-right: 0;        /* Remove previous right margin */
        order: 2;               /* Place under button */
        width: 100%;
        text-align: center;
    }
    .login-button a,
    .login-button button {
        order: 1;      /* Button/link on top */
    }
    
    /* Animated hamburger */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Optionally, even smaller welcome text for VERY tiny screens */
@media (max-width: 480px) {
    .login-button span {
        font-size: 0.7rem;
        padding: 3px 5px 3px 5px;
    }
}




/* Hero Section - Premium Design */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: -1;
    transform: scale(1.05);
    filter: brightness(0.85);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.3) 0%,
                rgba(0, 0, 0, 0.2) 40%,
                rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-background.active {
    opacity: 1;
    animation: scaleAnimation 8s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px 60px;
    border-radius: 20px;
    max-width: 80%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: contentFadeIn 1s ease-out;
    position: relative;
    z-index: 10;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    z-index: -1;
    pointer-events: none;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--accent-color);
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.8s;
}

.hero-btn {
    background-color: var(--primary-color);
    padding: 16px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.hero-btn::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: left 0.7s ease;
}

.hero-btn:hover {
    background-color: var(--button-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn.secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.hero-btn.secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Enhanced Animations */
@keyframes fadeInOut {
    0% { opacity: 0; }
    5% { opacity: 1; }
    45% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes scaleAnimation {
    0%, 100% { transform: scale(1.05); }
    50% { transform: scale(1.12); }
}

@keyframes contentFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-background {
    animation: fadeInOut 10s linear infinite;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--accent-color);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 3px;
    animation: scrollMouse 2s ease infinite;
}

@keyframes scrollMouse {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Responsive improvements */
@media (max-width: 992px) {
    .hero-content {
        padding: 35px 50px;
        max-width: 85%;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-btn-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 30px 40px;
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator .mouse {
        width: 25px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 25px 30px;
        max-width: 95%;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
/* قسم الحجز الآن */
/* قسم الحجز الآن - Premium Design */
.booking-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #f4f4f4 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background-image: 
    radial-gradient(circle at 10% 20%, rgba(57, 76, 56, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(57, 76, 56, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(57, 76, 56, 0.12) 0%, transparent 60%);
    background-color: #f9f9f9; /* Light base color to make gradients visible */
    opacity: 0.8;
    pointer-events: none;
    z-index: 0; /* Explicitly set z-index */
}

.booking-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
}

.booking-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
}

.booking-form::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(57, 76, 56, 0.1);
    border-radius: 20px;
    z-index: -1;
    pointer-events: none;
}

.booking-form input {
    padding: 15px 20px;
    width: 220px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: #fafafa;
    position: relative;
}

.booking-form input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 2px 10px rgba(57, 76, 56, 0.15);
    background-color: #ffffff;
}

.booking-form input::placeholder {
    color: #999;
}

#searchBtn {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: var(--accent-color);
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(57, 76, 56, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    border: none;
}

#searchBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(57, 76, 56, 0.4);
    background: linear-gradient(145deg, var(--button-hover) 0%, var(--primary-color) 100%);
}

#searchBtn::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: left 0.7s ease;
}

#searchBtn:hover::before {
    left: 100%;
}

/* قسم الشقق المميزة - Premium Design */
.featured-apartments {
    text-align: center;
    padding-top: 30px;
    position: relative;
}

.featured-apartments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(57, 76, 56, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 90% 30%, rgba(57, 76, 56, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 30% 70%, rgba(57, 76, 56, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 80% 90%, rgba(57, 76, 56, 0.02) 0%, transparent 20%);
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
}

.featured-apartments h3 {
    margin-bottom: 40px;
    font-size: 1.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
}

.featured-apartments h4 {
    margin-bottom: 40px;
    font-size: 2.4rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
}

.featured-apartments h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.featured-apartments h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    display: flex;
    flex-direction: column;
  justify-content: space-between;
    background-color: var(--background-color);
    border-radius: 15px;
    width: 320px;
    min-height: 420px; /* ضيف ارتفاع ثابت */
    max-height: 600px; /* حدد أقصى ارتفاع */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07), 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: none;
    transform-origin: center bottom;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1), 0 10px 15px rgba(0, 0, 0, 0.05);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 12px;
}


.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--button-hover) 100%);
    position: relative;
}

/* Generated image placeholder with pattern */
.card img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, 
        rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.3;
}

.card:hover img {
    transform: scale(1.05);
}

.price-tag {
  position: absolute;
  top: 10px;
  right: 20px;
  background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  z-index: 1;
  letter-spacing: 0.4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.3;
  max-width: 150px;
}

.price-tag .old-price {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
}

.price-tag .new-price {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}


.apartment-name {
    text-align: center;
    font-size: 1.2rem;
    margin: 8px 0;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0 15px;
    position: relative;
}

.apartment-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.5;
    border-radius: 1px;
}
/* Premium Location Styling */
.apartment-location {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #555;
    background: linear-gradient(135deg, rgba(57, 76, 56, 0.05) 0%, rgba(57, 76, 56, 0.1) 100%);
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(57, 76, 56, 0.07);
    position: relative;
    overflow: hidden;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.apartment-location:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(57, 76, 56, 0.08) 0%, rgba(57, 76, 56, 0.15) 100%);
}

.apartment-location::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.apartment-location:hover::before {
    left: 100%;
}

.apartment-location i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 1.1rem;
    background: rgba(57, 76, 56, 0.1);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.apartment-location:hover i {
    transform: scale(1.15);
    background: var(--primary-color);
    color: white;
}

.card-info {
    display: flex;
    justify-content: space-around;
    padding: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #f9f9f9;
    position: relative;
}

.card-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(57, 76, 56, 0.02) 25%, transparent 25%, transparent 50%, 
        rgba(57, 76, 56, 0.02) 50%, rgba(57, 76, 56, 0.02) 75%, transparent 75%, transparent);
    background-size: 10px 10px;
    opacity: 0.5;
    pointer-events: none;
}

.card-info span {
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.card button {
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: var(--accent-color);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card button::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: left 0.7s ease;
}

.card button:hover::before {
    left: 100%;
}

.show-more {
    display: inline-block;
    margin: 40px auto 20px;
    padding: 16px 38px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.15);
}

.show-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.show-more:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(57, 76, 56, 0.25);
}

.show-more:hover::before {
    width: 100%;
}

/* Creating animated dots in the booking section background */
.booking-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 50% 80%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 80% 20%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 10% 70%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 90% 60%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 30% 40%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 70% 90%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%);
    background-size: 150px 150px;
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
    animation: moveDots 50s linear infinite;
}

@keyframes moveDots {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Card image placeholder with CSS */
.card img {
    position: relative;
        max-width: 320px;
    max-height: 220px;
}

.card img::after {
    content: 'منظر للشقة';
    position: absolute;
    top: 0;
    left: 0;
    /*width: 100%;*/
    /*height: 100%;*/
    /*min-height: 320px;*/
    max-width: 220px;
    max-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Add decorative elements to cards */
.card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed rgba(57, 76, 56, 0.1);
    border-radius: 12px;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

/* Responsive improvements */
@media (max-width: 992px) {
    .booking-section {
        padding: 60px 5%;
    }
    
    .booking-form {
        padding: 25px;
    }
    
    .booking-form input {
        width: 100%;
        max-width: 300px;
    }
    
    #searchBtn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .booking-section h2 {
        font-size: 2rem;
    }
    
    .card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .booking-section {
        padding: 40px 5%;
    }
    
    .booking-section h2 {
        font-size: 1.8rem;
    }
    
    .booking-form {
        padding: 20px 15px;
    }
    
    .featured-apartments h3 {
        font-size: 1.6rem;
    }
    
    .show-more {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
/* قسم تفاصيل الشقة - Premium Design */
.apartment-details-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.apartment-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(57, 76, 56, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(57, 76, 56, 0.03) 0%, transparent 30%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.apartment-details-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 50% 80%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 80% 20%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 10% 70%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 90% 60%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%);
    background-size: 150px 150px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation: moveDotsSlowly 80s linear infinite;
}

@keyframes moveDotsSlowly {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.apartment-details-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.6rem;
    color: var(--primary-color);
    position: relative;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
}

.apartment-details-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.apartment-details {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.apartment-image {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transform: translateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
    height: 400px;
}

.apartment-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Generated image placeholder with pattern */
.apartment-image::before {
    content: 'صورة الشقة الفاخرة';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, 
        rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 30px 30px;
    opacity: 0.8;
}

.apartment-image::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: var(--accent-color);
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.details-text {
    max-width: 600px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.details-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.08);
}

.details-text::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(57, 76, 56, 0.1);
    border-radius: 20px;
    z-index: -1;
    pointer-events: none;
}

.details-text h3 {
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: var(--primary-color);
    position: relative;
    font-weight: 700;
    padding-bottom: 15px;
}

.details-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.details-text p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    position: relative;
}

.details-text ul {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 10px;
}

.details-text ul li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.details-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.details-text button {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: var(--accent-color);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.details-text button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(57, 76, 56, 0.3);
    background: linear-gradient(145deg, var(--button-hover) 0%, var(--primary-color) 100%);
}

.details-text button::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: left 0.7s ease;
}

.details-text button:hover::before {
    left: 100%;
}

/* Carousel Styles */
                /* Premium Carousel & Apartment Details Styles */
        .carousel {
            position: relative;
            max-width: 600px;
            margin: auto;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transform: translateY(0);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .carousel:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }
        
        .carousel-inner {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            height: 400px; /* Fixed height for consistent presentation */
        }
        
        .carousel-item {
            min-width: 100%;
            display: none;
            position: relative;
            height: 100%;
        }
        
        .carousel-item.active {
            display: block;
            animation: fadeIn 0.5s ease-in-out;
        }
        
        .carousel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            vertical-align: middle;
        }
        
        .carousel::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
            pointer-events: none;
        }
        
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: #fff;
            cursor: pointer;
            z-index: 10;
            opacity: 0.7;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }
        
        .carousel-control:hover {
            opacity: 1;
            background-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-control.prev {
            left: 15px;
        }
        
        .carousel-control.next {
            right: 15px;
        }
        
        /* Carousel Indicators (dots) */
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            gap: 8px;
            z-index: 11;
        }
        
        .carousel-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .carousel-indicator.active {
            background-color: #ffffff;
            transform: scale(1.3);
        }
        
        /* Apartment Details */
        .apartment-details {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: flex-start;
            margin-top: 40px;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .details-text {
            flex: 1;
            min-width: 300px;
        }
        
        .details-text h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
        }
        
        .details-text h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--button-hover));
            border-radius: 3px;
        }
        
        .details-text p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 20px;
        }
        
        .details-text h4 {
            font-size: 1.3rem;
            margin: 25px 0 15px;
            color: var(--secondary-color);
        }
        
        .details-text ul {
            list-style-type: none;
            padding: 0;
            margin-bottom: 25px;
        }
        
        .details-text ul li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 10px;
            font-size: 1.05rem;
            color: #555;
        }
        
        .details-text ul li::before {
            content: "\f058"; /* Font Awesome check icon */
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary-color);
        }
        
        .price-tag2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            padding: 15px 20px;
            background: rgba(57, 76, 56, 0.05);
            border-radius: 10px;
            display: inline-block;
            margin-top: 10px;
        }
        
        /* Datepicker Styles */
        .ui-datepicker {
            font-family: 'Cairo', sans-serif;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 15px;
            border: none;
        }
        
        .ui-datepicker-header {
            background: var(--primary-color);
            color: white;
            border-radius: 8px 8px 0 0;
            border: none;
        }
        
        .ui-datepicker-calendar th {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        .ui-datepicker-calendar .ui-state-default {
            background: #f9f9f9;
            border: 1px solid #eaeaea;
            border-radius: 5px;
            text-align: center;
        }
        
        .ui-datepicker-calendar .ui-state-default:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .ui-datepicker-calendar .ui-state-active {
            background: var(--primary-color);
            color: white;
            border: 1px solid var(--primary-color);
        }
        
        .ui-datepicker-unselectable .ui-state-disabled {
            background: #ffebeb;
            opacity: 1;
            pointer-events: none;
            color: #d9534f;
        }
        
        .ui-datepicker-unselectable .ui-state-disabled span {
            text-decoration: line-through;
        }
        
        /* Animation for the carousel */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .carousel {
                max-width: 100%;
            }
            
            .carousel-inner {
                height: 300px;
            }
            
            .apartment-details {
                padding: 20px;
                gap: 20px;
            }
            
            .details-text h3 {
                font-size: 1.5rem;
            }
            
            .price-tag2 {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 480px) {
            .carousel-inner {
                height: 250px;
            }
            
            .carousel-control {
                width: 35px;
                height: 35px;
            }
            
            .details-text h3 {
                font-size: 1.3rem;
            }
            
            .details-text p {
                font-size: 1rem;
            }
            
            .price-tag2 {
                font-size: 1.2rem;
                padding: 10px 15px;
            }
        }
/* نموذج الحجز في صفحة التفاصيل - Premium Design */
.booking-form-details {
    margin-top: 80px;
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.booking-form-details:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 15px 25px rgba(0, 0, 0, 0.08);
}

.booking-form-details::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(57, 76, 56, 0.1);
    border-radius: 25px;
    z-index: -1;
    pointer-events: none;
}

.booking-form-details h3 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.booking-form-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.booking-form-details form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.booking-form-details form .form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.booking-form-details form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.booking-form-details form input {
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.booking-form-details form input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 2px 12px rgba(57, 76, 56, 0.1);
    background-color: #ffffff;
}

.booking-form-details form input::placeholder {
    color: #aaa;
}

.booking-form-details form button {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: var(--accent-color);
    padding: 16px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.2);
    position: relative;
    overflow: hidden;
}

.booking-form-details form button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(57, 76, 56, 0.3);
    background: linear-gradient(145deg, var(--button-hover) 0%, var(--primary-color) 100%);
}

.booking-form-details form button::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: left 0.7s ease;
}

.booking-form-details form button:hover::before {
    left: 100%;
}

/* Add floating shape decorations */
.apartment-details-section .shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
}

.apartment-details-section .shape-1 {
    top: 10%;
    left: 5%;
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    animation: floatAnimation 8s ease-in-out infinite;
}

.apartment-details-section .shape-2 {
    bottom: 15%;
    right: 8%;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: floatAnimation 10s ease-in-out infinite 1s;
}

.apartment-details-section .shape-3 {
    top: 20%;
    right: 10%;
    width: 40px;
    height: 40px;
    background-color: rgba(57, 76, 56, 0.2);
    border-radius: 8px;
    animation: floatAnimation 7s ease-in-out infinite 0.5s;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(5deg); }
}



/* تحسينات في Responsive Design */
@media (max-width: 1200px) {
    .apartment-details-section {
        padding: 70px 7%;
    }
    
    .booking-form-details {
        padding: 35px 40px;
    }
}

@media (max-width: 992px) {
    .apartment-details {
        flex-direction: column;
        align-items: center;
    }

    .apartment-image, .details-text {
        max-width: 100%;
    }
    
    .details-text {
        padding: 30px;
    }
    
    .booking-form-details {
        padding: 30px 35px;
    }
}

@media (max-width: 768px) {
    .apartment-details-section {
        padding: 60px 5%;
    }
    
    .apartment-details-section h2 {
        font-size: 2.2rem;
    }
    
    .details-text h3 {
        font-size: 1.8rem;
    }
    
    .booking-form-details h3 {
        font-size: 1.7rem;
    }
    
    .apartment-image {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .apartment-details-section {
        padding: 50px 4%;
    }
    
    .apartment-details-section h2 {
        font-size: 2rem;
    }
    
    .apartment-image {
        height: 300px;
    }
    
    .details-text {
        padding: 25px;
    }
    
    .details-text h3 {
        font-size: 1.6rem;
    }
    
    .details-text p {
        font-size: 1.05rem;
    }
    
    .details-text button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .booking-form-details {
        padding: 25px 30px;
    }
    
    .booking-form-details form input {
        padding: 14px 16px;
    }
    
    .booking-form-details form button {
        padding: 14px 20px;
        font-size: 1rem;
    }
}
/* قسم التقييمات - Premium Design */
.feedback-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(57, 76, 56, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(57, 76, 56, 0.03) 0%, transparent 30%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.feedback-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 50% 80%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 80% 20%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 10% 70%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 90% 60%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%);
    background-size: 150px 150px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation: moveDotsSlowly 80s linear infinite;
}

.feedback-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
}

.feedback-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.feedback-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Premium feedback card design */
.feedback {
    background-color: var(--background-color);
    border-radius: 16px;
    flex: 1 1 300px;
    max-width: 360px;
    min-width: 280px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.feedback:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.08);
}

.feedback::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 120px;
    color: rgba(57, 76, 56, 0.07);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.feedback::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feedback:hover::after {
    opacity: 1;
}

.feedback img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 4px solid rgba(57, 76, 56, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
}

.feedback:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* CSS-generated image placeholder */
.feedback img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
    border-radius: 50%;
    z-index: -1;
}

.feedback img::after {
    content: attr(alt);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.5rem;
}

.feedback-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    color: #FFD700;
}

.feedback p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.feedback span {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 1.15rem;
    position: relative;
}

.feedback span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.5;
    border-radius: 1px;
}

.feedback .location {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

.feedback button {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: var(--accent-color);
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 15px;
    z-index: 1;
}

.feedback button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 76, 56, 0.3);
    background: linear-gradient(145deg, var(--button-hover) 0%, var(--primary-color) 100%);
}

.feedback button::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: left 0.7s ease;
}

.feedback button:hover::before {
    left: 100%;
}

/* Add decorative elements */
.feedback-section .shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
}

.feedback-section .shape-1 {
    top: 15%;
    left: 7%;
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    animation: floatAnimation 8s ease-in-out infinite;
}

.feedback-section .shape-2 {
    bottom: 10%;
    right: 5%;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: floatAnimation 10s ease-in-out infinite 1s;
}

/* Staggered animation for feedback cards */
/*.feedback:nth-child(1) {*/
/*    animation: fadeInUp 0.8s ease forwards;*/
/*    animation-delay: 0.1s;*/
/*    opacity: 0;*/
/*    transform: translateY(30px);*/
/*}*/

/*.feedback:nth-child(2) {*/
/*    animation: fadeInUp 0.8s ease forwards;*/
/*    animation-delay: 0.3s;*/
/*    opacity: 0;*/
/*    transform: translateY(30px);*/
/*}*/

/*.feedback:nth-child(3) {*/
/*    animation: fadeInUp 0.8s ease forwards;*/
/*    animation-delay: 0.5s;*/
/*    opacity: 0;*/
/*    transform: translateY(30px);*/
/*}*/

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add "View All" button at the bottom */
.view-all-feedback {
    display: inline-block;
    margin: 50px auto 0;
    padding: 16px 38px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.15);
    text-align: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.view-all-feedback::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.view-all-feedback:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(57, 76, 56, 0.25);
}

.view-all-feedback:hover::before {
    width: 100%;
}

/* Responsive improvements */
@media (max-width: 1200px) {
    .feedback-section {
        padding: 70px 7%;
    }
    
    .feedback-container {
        gap: 25px;
    }
    
    .feedback {
        max-width: 45%;
        min-width: 250px;
    }
}

@media (max-width: 992px) {
    .feedback-section h2 {
        font-size: 2.2rem;
    }
    
    .feedback {
        padding: 30px 25px;
    }
    
    .feedback img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 60px 5%;
    }
    
    .feedback-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .feedback {
        width: 100%;
        max-width: 450px;
        min-width: 0;
    }
    
    .feedback:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .feedback-section {
        padding: 50px 4%;
    }
    
    .feedback-section h2 {
        font-size: 2rem;
    }
    
    .feedback {
        padding: 25px 20px;
    }
    
    .feedback p {
        font-size: 1rem;
    }
    
    .feedback button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .view-all-feedback {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* ---------- Slider layout ---------- */
.feedback-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto 40px;
  padding: 0 30px;
  max-width: 1400px;
}

.feedback-track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease-in-out;
}

/* make each .feedback card a flex item with %‑width */
.feedback-track .feedback {
  flex: 0 0 100%;
}

/* 2 per row on small tablets */
@media (min-width: 600px) {
  .feedback-track .feedback {
    flex: 0 0 calc(50% - 15px);
  }
}

/* 3 per row on desktops */
@media (min-width: 900px) {
  .feedback-track .feedback {
    flex: 0 0 calc(33.333% - 20px);
  }
}

/* arrows */
.feedback-arrow {
  position: absolute;
  top: 50%;
  color: var(--primary-color);
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 1.8rem;
  padding: 0 12px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.feedback-arrow:hover { background: #eee; }
.feedback-arrow.prev { left: 10px; }
.feedback-arrow.next { right: 10px; }


/* Premium Feedback Form Design */
#feedback-form {
    padding: 80px 10%;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#feedback-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(57, 76, 56, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(57, 76, 56, 0.03) 0%, transparent 30%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

#feedback-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 50% 80%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%),
        radial-gradient(circle at 80% 20%, var(--primary-color) 0%, var(--primary-color) 0.1%, transparent 0.2%);
    background-size: 150px 150px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation: moveDotsSlowly 80s linear infinite;
}

#feedback-form h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 1;
}

#feedback-form h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Form Container Styling */
#feedback-form form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#feedback-form form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.08);
}

#feedback-form form::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(57, 76, 56, 0.1);
    border-radius: 20px;
    z-index: -1;
    pointer-events: none;
}

#feedback-form form label {
    display: block;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

#feedback-form form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
    font-size: 1.05rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    background-color: #fafafa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

#feedback-form form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 2px 12px rgba(57, 76, 56, 0.1);
    background-color: #ffffff;
}

#feedback-form form button {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: var(--accent-color);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.2);
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0 auto;
    min-width: 200px;
}

#feedback-form form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 76, 56, 0.3);
    background: linear-gradient(145deg, var(--button-hover) 0%, var(--primary-color) 100%);
}

#feedback-form form button::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: left 0.7s ease;
}

#feedback-form form button:hover::before {
    left: 100%;
}

/* Message Box Styling for users without reservations or not logged in */
#feedback-form .message-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#feedback-form .message-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.08);
}

#feedback-form .message-box::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(57, 76, 56, 0.1);
    border-radius: 20px;
    z-index: -1;
    pointer-events: none;
}

#feedback-form .message-box p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
}

#feedback-form .message-box button {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: var(--accent-color);
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.2);
    position: relative;
    overflow: hidden;
}

#feedback-form .message-box button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 76, 56, 0.3);
    background: linear-gradient(145deg, var(--button-hover) 0%, var(--primary-color) 100%);
}

#feedback-form .message-box button::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: left 0.7s ease;
}

#feedback-form .message-box button:hover::before {
    left: 100%;
}

/* Responsive improvements */
@media (max-width: 992px) {
    #feedback-form {
        padding: 70px 7%;
    }
    
    #feedback-form form, 
    #feedback-form .message-box {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    #feedback-form {
        padding: 60px 5%;
    }
    
    #feedback-form h2 {
        font-size: 2.2rem;
    }
    
    #feedback-form form, 
    #feedback-form .message-box {
        padding: 30px;
    }
    
    #feedback-form form textarea {
        min-height: 120px;
    }
}

@media (max-width: 576px) {
    #feedback-form {
        padding: 50px 4%;
    }
    
    #feedback-form h2 {
        font-size: 2rem;
    }
    
    #feedback-form form, 
    #feedback-form .message-box {
        padding: 25px 20px;
    }
    
    #feedback-form form label {
        font-size: 1.1rem;
    }
    
    #feedback-form form button,
    #feedback-form .message-box button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
/* شريط واتساب - Premium Design */
.whatsapp-chat {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(145deg, #25d366 0%, #128C7E 100%);
    color: #ffffff;
    padding: 0;
    border-radius: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3), 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: translateY(0);
}

.whatsapp-chat:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 6px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, #128C7E 0%, #25d366 100%);
}

.whatsapp-chat a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    width: 100%;
    height: 100%;
}

.whatsapp-chat .icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.whatsapp-chat .icon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.whatsapp-chat i {
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.whatsapp-chat span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0 20px 0 15px;
    white-space: nowrap;
    opacity: 1;
    transition: all 0.3s ease;
    transform: translateX(0);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* WhatsApp icon animation */
.whatsapp-chat .icon-container {
    animation: pulse 2s infinite;
}

/* Collapsible version for mobile */
@media (max-width: 768px) {
    .whatsapp-chat {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-chat span {
        opacity: 0;
        transform: translateX(10px);
        width: 0;
        padding: 0;
    }
    
    .whatsapp-chat:hover {
        width: auto;
    }
    
    .whatsapp-chat:hover span {
        opacity: 1;
        transform: translateX(0);
        padding: 0 20px 0 15px;
        width: auto;
    }
}

/* تذييل الموقع - Premium Design */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: var(--accent-color);
    padding: 50px 10% 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-section {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    margin-right: 15px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: rotate(5deg);
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 350px;
}

.footer-nav {
    flex: 1 1 250px;
}

.footer-nav h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-nav h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: var(--accent-color);
    opacity: 0.85;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

.footer-nav a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-nav a:hover::before {
    transform: translateY(-50%) rotate(90deg);
}

.footer-contact {
    flex: 1 1 300px;
}

.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.85;
}

.contact-info i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-links a:hover::before {
    transform: scale(1.5);
    opacity: 0;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
    opacity: 1;
}

/* Add decorative elements */
.footer-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.15;
    z-index: 0;
}

.footer-shape-1 {
    top: 20%;
    left: 5%;
    width: 80px;
    height: 80px;
    border: 3px solid var(--accent-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatAnimation 10s ease-in-out infinite;
}

.footer-shape-2 {
    bottom: 15%;
    right: 5%;
    width: 60px;
    height: 60px;
    border: 3px solid var(--accent-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatAnimation 12s ease-in-out infinite 1s;
}

/* Responsive improvements */
@media (max-width: 992px) {
    footer {
        padding: 40px 7% 25px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo-section, .footer-nav, .footer-contact {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 35px 5% 20px;
    }
    
    .footer-logo span {
        font-size: 1.6rem;
    }
    
    .footer-nav, .footer-contact {
        text-align: center;
    }
    
    .footer-nav h3, .footer-contact h3 {
        display: block;
        text-align: center;
    }
    
    .footer-nav h3::after, .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }
    
    .footer-nav a {
        padding-left: 0;
    }
    
    .footer-nav a::before {
        display: none;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 4% 15px;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-logo span {
        font-size: 1.4rem;
    }
    
    .footer-nav h3, .footer-contact h3 {
        font-size: 1.2rem;
    }
}
/* نماذج التسجيل وتسجيل الدخول - Premium Design */
.modal {
    display: none; /* مخفي بشكل افتراضي */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding-top: 60px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.show {
    opacity: 1;
    animation: fadeIn 0.4s ease forwards;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.5s 0.1s ease forwards;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(57, 76, 56, 0.1);
    border-radius: 25px;
    z-index: -1;
    pointer-events: none;
}

.modal-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(57, 76, 56, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(57, 76, 56, 0.02) 0%, transparent 20%);
    z-index: -1;
    pointer-events: none;
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.02);
    z-index: 5;
}

.close:hover {
    color: var(--primary-color);
    background-color: rgba(57, 76, 56, 0.1);
    transform: rotate(90deg);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 2.2rem;
    color: var(--primary-color);
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding-bottom: 15px;
}

.modal-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.modal-content form label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--secondary-color);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.modal-content form input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.modal-content form input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 2px 12px rgba(57, 76, 56, 0.1);
    background-color: #ffffff;
}

.modal-content form input::placeholder {
    color: #aaa;
}

/* Elegant input focus effect */
.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.form-group:focus-within::after {
    width: 100%;
}

.modal-content form button {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: var(--accent-color);
    padding: 16px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.2);
    position: relative;
    overflow: hidden;
}

.modal-content form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 76, 56, 0.3);
    background: linear-gradient(145deg, var(--button-hover) 0%, var(--primary-color) 100%);
}

.modal-content form button::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: left 0.7s ease;
}

.modal-content form button:hover::before {
    left: 100%;
}

.modal-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.modal-footer::before {
    content: 'OR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f8f8f8;
    padding: 0 15px;
    color: #888;
    font-size: 0.9rem;
}

.modal-content p {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 1rem;
}

.modal-content p a {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    margin-left: 5px;
}

.modal-content p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.modal-content p a:hover {
    color: var(--button-hover);
}

.modal-content p a:hover::after {
    width: 100%;
}

/* Social login buttons */
.social-login {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    color: #444;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-btn:hover::before {
    transform: scale(1.5);
    opacity: 0;
}

.social-btn.facebook {
    background-color: #3b5998;
    color: white;
}

.social-btn.google {
    background-color: #dd4b39;
    color: white;
}

.social-btn.twitter {
    background-color: #1da1f2;
    color: white;
}

/* Add decorative elements */
.modal-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
    z-index: 0;
}

.modal-shape-1 {
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    animation: floatAnimation 7s ease-in-out infinite;
}

.modal-shape-2 {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: floatAnimation 9s ease-in-out infinite 1s;
}

/* Forgotten password link */
.forgot-password {
    text-align: right;
    margin-top: -15px;
    margin-bottom: 15px;
}

.forgot-password a {
    color: #888;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.forgot-password a:hover {
    color: var(--primary-color);
}

/* Error message styling */
.form-error {
    background-color: rgba(255, 0, 0, 0.1);
    color: #e74c3c;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

/* Success message styling */
.form-success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

/* Check mark for valid input */
.valid-input::after {
    content: '✓';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #2ecc71;
    font-size: 1.2rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 30px 25px;
    }
    
    .modal-content h2 {
        font-size: 1.8rem;
    }
    
    .modal-content form input {
        padding: 14px 16px;
    }
    
    .modal-content form button {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px 20px;
    }
    
    .modal-content h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .modal-content form label {
        font-size: 0.95rem;
    }
    
    .modal-content form input {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .social-login {
        gap: 10px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Enhanced animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(5deg); }
}
/* Premium Select Dropdown Styling */
.modal-content select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    appearance: none; /* Removes default browser styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: 
        linear-gradient(45deg, transparent 50%, #888 50%),
        linear-gradient(135deg, #888 50%, transparent 50%);
    background-position: 
        calc(100% - 25px) center,
        calc(100% - 20px) center;
    background-size: 
        5px 5px,
        5px 5px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.modal-content select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 2px 12px rgba(57, 76, 56, 0.1);
    background-color: #ffffff;
    background-image: 
        linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
        linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
}

.modal-content select:hover {
    border-color: #d0d0d0;
}

/* Style for each option */
.modal-content select option {
    padding: 10px;
    background-color: #ffffff;
    color: #444;
}

/* Customize scrollbar for select dropdown (works in some browsers) */
.modal-content select::-webkit-scrollbar {
    width: 8px;
}

.modal-content select::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-content select::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 4px;
}

.modal-content select::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Style for disabled options if needed */
.modal-content select option:disabled {
    color: #aaa;
}

/* Group select with its label in a form-group like other inputs */
.modal-content form .form-group-select {
    position: relative;
    margin-bottom: 25px;
}

/* Add focus indicator line */
.form-group-select::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.form-group-select:focus-within::after {
    width: 100%;
}



/* نظام الرسائل المنبثقة - Premium Design */
.notification-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notification-popup.show {
    display: flex;
    animation: fadeIn 0.3s forwards;
}

.notification-content {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.4s 0.1s ease forwards;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.notification-content::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(57, 76, 56, 0.1);
    border-radius: 20px;
    z-index: -1;
    pointer-events: none;
}

.notification-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.2);
}

.notification-icon.success {
    background: linear-gradient(145deg, #2ecc71, #27ae60);
}

.notification-icon.error {
    background: linear-gradient(145deg, #e74c3c, #c0392b);
}

.notification-icon.warning {
    background: linear-gradient(145deg, #f39c12, #e67e22);
}

.notification-icon.info {
    background: linear-gradient(145deg, #3498db, #2980b9);
}

.notification-icon i {
    font-size: 2rem;
    color: white;
}

.notification-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.notification-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

.notification-btn {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: var(--accent-color);
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.2);
    position: relative;
    overflow: hidden;
}

.notification-btn::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: left 0.7s ease;
}

.notification-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 76, 56, 0.3);
}

.notification-btn:hover::before {
    left: 100%;
}

.notification-btn.success {
    background: linear-gradient(145deg, #2ecc71, #27ae60);
}

.notification-btn.error {
    background: linear-gradient(145deg, #e74c3c, #c0392b);
}

.notification-btn.warning {
    background: linear-gradient(145deg, #f39c12, #e67e22);
}

.notification-btn.info {
    background: linear-gradient(145deg, #3498db, #2980b9);
}

@media (max-width: 768px) {
    .notification-content {
        padding: 30px;
    }
    
    .notification-icon {
        width: 60px;
        height: 60px;
    }
    
    .notification-icon i {
        font-size: 1.7rem;
    }
    
    .notification-title {
        font-size: 1.6rem;
    }
    
    .notification-message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .notification-content {
        padding: 25px 20px;
    }
    
    .notification-icon {
        width: 50px;
        height: 50px;
    }
    
    .notification-icon i {
        font-size: 1.5rem;
    }
    
    .notification-title {
        font-size: 1.4rem;
    }
}

/* ستايل نافذة تأكيد الحجز - Premium Design */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.popup.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.3s forwards;
}

.popup-content {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.4s 0.1s ease forwards;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.popup-content::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(57, 76, 56, 0.1);
    border-radius: 20px;
    z-index: -1;
    pointer-events: none;
}

.popup-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.popup-content h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--button-hover));
    border-radius: 3px;
}

.popup-content p {
    margin: 15px 0;
    font-size: 1.1rem;
    color: #555;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.popup-content p strong {
    color: #333;
    flex: 1;
}

.popup-content p span {
    color: var(--primary-color);
    font-weight: 600;
    flex: 1;
    text-align: right;
}

.popup-content #popup-total-amount {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.popup-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
}

.btn::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: left 0.7s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn.approve {
    background: linear-gradient(145deg, #2ecc71, #27ae60);
    color: white;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.btn.approve:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.btn.reject {
    background: linear-gradient(145deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn.reject:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* تصميم متجاوب للشاشات الصغيرة */
@media (max-width: 768px) {
    .popup-content {
        padding: 25px 30px;
    }
    
    .popup-content h3 {
        font-size: 1.5rem;
    }
    
    .popup-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 20px 25px;
    }
    
    .popup-content h3 {
        font-size: 1.3rem;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Admin Login */
/* Premium Admin Login Styling */
.admin-login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(57, 76, 56, 0.95) 0%, rgba(25, 42, 24, 0.9) 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
}

.admin-login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/mangroovy-resort.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: blur(3px);
    z-index: -1;
}

.admin-login-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
    border-radius: 20px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
    height: 600px;
}

.admin-login-welcome {
    flex: 1;
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
    padding: 50px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.admin-login-welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 20%);
    z-index: 0;
}

.admin-login-welcome h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.admin-login-welcome p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.admin-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
    opacity: 0.85;
    border-radius: 50%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.admin-login-welcome .admin-features {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.admin-login-welcome .admin-features h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.admin-login-welcome .admin-features h4::before {
    content: '⚙️';
    margin-right: 10px;
    font-size: 1.5rem;
}

.admin-login-welcome .admin-features ul {
    list-style: none;
    padding-left: 35px;
}

.admin-login-welcome .admin-features li {
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
}

.admin-login-welcome .admin-features li::before {
    content: '✓';
    position: absolute;
    left: -25px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.2);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.admin-login-form {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.admin-login-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(57, 76, 56, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(57, 76, 56, 0.03) 0%, transparent 30%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.admin-login-form h1 {
    color: var(--primary-color);
    font-size: 2.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.admin-login-form h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.admin-login-form .welcome-message {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 40px;
    margin-top: 20px;
    line-height: 1.6;
}

.admin-login-form .input-group {
    margin-bottom: 25px;
    position: relative;
}

.admin-login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.admin-login-form input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    padding-left: 50px;
}

.admin-login-form input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 2px 12px rgba(57, 76, 56, 0.1);
    background-color: #ffffff;
}

.admin-login-form .input-icon {
    position: absolute;
    top: 42px;
    left: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.admin-login-form input:focus + .input-icon {
    opacity: 1;
    transform: scale(1.1);
}

.admin-login-form .error-message {
    color: #d9534f;
    background-color: rgba(217, 83, 79, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.admin-login-form .error-message::before {
    content: '⚠️';
    margin-right: 10px;
    font-size: 1.2rem;
}

.admin-login-form button {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: var(--accent-color);
    padding: 16px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.admin-login-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 76, 56, 0.3);
    background: linear-gradient(145deg, var(--button-hover) 0%, var(--primary-color) 100%);
}

.admin-login-form button::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: left 0.7s ease;
}

.admin-login-form button:hover::before {
    left: 100%;
}

.back-to-site {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 10;
}

.back-to-site:hover {
    opacity: 1;
    transform: translateX(-3px);
}

.back-to-site::before {
    content: '←';
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Floating particles animation in the background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    top: 30%;
    left: 50%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 25s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    top: 40%;
    left: 80%;
    animation-delay: 8s;
    animation-duration: 19s;
}

.particle:nth-child(6) {
    top: 70%;
    left: 10%;
    animation-delay: 10s;
    animation-duration: 23s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.5);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-60px) translateX(-20px) scale(1);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-30px) translateX(-40px) scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .admin-login-container {
        max-width: 90%;
        height: auto;
        flex-direction: column;
    }
    
    .admin-login-welcome, .admin-login-form {
        padding: 40px 30px;
    }
    
    .admin-login-welcome {
        text-align: center;
        align-items: center;
    }
    
    .admin-login-welcome .admin-features ul {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .admin-login-welcome h2 {
        font-size: 2.2rem;
    }
    
    .admin-login-form h1 {
        font-size: 2rem;
    }
    
    .admin-login-form input {
        padding: 14px 15px 14px 45px;
    }
    
    .admin-login-welcome .admin-features {
        display: none;
    }
    
    .admin-logo {
        width: 100px;
        height: 100px;
    }
}
/* Premium Admin Header Styling - Luxury Edition */
.admin-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #243124 100%);
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-color);
    overflow: hidden;
}

.admin-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/subtle-pattern.png');
    background-size: 300px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.admin-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background-color: rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-brand {
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.admin-brand:hover {
    transform: translateY(-2px);
}

.admin-brand::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transition: width 0.4s ease;
}

.admin-brand:hover::after {
    width: 100%;
}

.admin-brand img {
    height: 50px;
    margin-right: 18px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.admin-brand:hover img {
    transform: rotate(5deg);
}

.admin-header h1 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.admin-header h1 span {
    position: relative;
    color: #fff;
    font-weight: 800;
    margin-left: 12px;
    background: linear-gradient(to right, var(--accent-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.admin-header h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

.admin-welcome {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 20px 8px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.admin-welcome:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.admin-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, var(--primary-color), var(--button-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.admin-avatar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.admin-info {
    text-align: right;
}

.admin-name {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.admin-role {
    font-size: 0.85rem;
    opacity: 0.8;
    background: linear-gradient(90deg, var(--accent-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.admin-header-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 30px;
    overflow-x: auto;
    scrollbar-width: thin;
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.1);
}

.admin-header-bottom::-webkit-scrollbar {
    height: 5px;
}

.admin-header-bottom::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.admin-header-bottom::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-color), var(--button-hover));
    border-radius: 10px;
}

.admin-header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    height: 60px;
}

.admin-header li {
    margin: 0;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.admin-header li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.admin-header li:hover::after {
    width: 70%;
}

.admin-header a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0 25px;
    display: flex;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.5px;
}

.admin-header a:hover {
    color: #fff;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08));
}

.admin-header a.active {
    background: linear-gradient(to bottom, var(--primary-color), rgba(57, 76, 56, 0.8));
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.admin-header a.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.admin-header a.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #f5f5f5;
    filter: drop-shadow(0 -3px 3px rgba(0, 0, 0, 0.1));
}

.admin-header a i {
    margin-right: 10px;
    font-size: 1.15rem;
    position: relative;
    top: 1px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.admin-header a:hover i {
    transform: translateY(-2px);
}

.admin-header a.active i {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.logout-btn {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.2), rgba(211, 47, 47, 0.4));
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.logout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.logout-btn:hover {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.4), rgba(211, 47, 47, 0.6)) !important;
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.3);
}

.logout-btn:hover::before {
    transform: translateX(100%);
}

.logout-btn i {
    color: rgba(255, 255, 255, 0.9) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    margin-right: 15px;
    position: relative;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.menu-toggle:focus {
    outline: none;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .admin-header-bottom {
        padding: 0 15px;
    }
    
    .admin-header a {
        padding: 0 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .admin-header {
        position: relative;
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .admin-header-top {
        padding: 15px 25px;
    }
    
    .admin-header-bottom {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-color) 0%, #243124 100%);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - 85px);
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        animation: slideDown 0.3s ease forwards;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .admin-header-bottom.active {
        display: flex;
    }
    
    .admin-header ul {
        flex-direction: column;
        height: auto;
    }
    
    .admin-header li {
        width: 100%;
        height: auto;
    }
    
    .admin-header li::after {
        display: none;
    }
    
    .admin-header a {
        padding: 18px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        justify-content: flex-start;
    }
    
    .admin-header a.active::after {
        display: none;
    }
    
    .admin-header a i {
        width: 25px;
        text-align: center;
        margin-right: 15px;
    }
    
    .logout-btn {
        border-left: none;
        border-bottom: none !important;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .admin-header-top {
        padding: 15px 20px;
    }
    
    .admin-brand img {
        height: 40px;
    }
    
    .admin-header h1 {
        font-size: 1.4rem;
    }
    
    .admin-welcome {
        padding: 6px 15px 6px 10px;
    }
    
    .admin-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .admin-name {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .admin-header-top {
        padding: 12px 15px;
    }
    
    .admin-brand img {
        height: 35px;
        margin-right: 10px;
    }
    
    .admin-header h1 {
        font-size: 1.2rem;
    }
    
    .admin-welcome {
        gap: 10px;
    }
    
    .admin-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .admin-info {
        display: none;
    }
}

/* Admin Dashboard */
/* Dashboard Layout */
.admin-dashboard {
    padding: 30px;
    background: #f8f9fa;
    min-height: calc(100vh - 100px);
    position: relative;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
}

.dashboard-header {
    margin-bottom: 30px;
    position: relative;
}

.dashboard-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.dashboard-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--button-hover));
    border-radius: 2px;
}

.dashboard-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Stats Cards */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--button-hover));
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.15;
    color: var(--primary-color);
}

.stat-title {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-description {
    font-size: 0.9rem;
    color: #888;
}
/* Charts Section - Enhanced Responsive Version */
.charts-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.chart-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden; /* Prevent overflow issues */
    height: auto; /* Allow height to adjust */
    display: flex;
    flex-direction: column;
}

.chart-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
    flex: 1; /* Take remaining space */
    min-height: 250px; /* Ensure minimum height */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .charts-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .chart-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .chart-card {
        padding: 20px;
    }
    
    .chart-container {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .chart-card {
        padding: 15px;
    }
    
    .chart-container {
        height: 250px;
    }
}

/* Welcome Message */
.welcome-message {
    background: linear-gradient(135deg, var(--primary-color) 0%, #243124 100%);
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.welcome-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/subtle-pattern.png');
    background-size: 300px;
    opacity: 0.05;
    z-index: 0;
}

.welcome-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.welcome-message p {
    opacity: 0.9;
    margin-bottom: 0;
    font-size: 1.05rem;
    position: relative;
}

/* Quick Links */
.quick-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.quick-link {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.quick-link i {
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .charts-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-dashboard {
        padding: 20px;
    }
    
    .dashboard-title {
        font-size: 1.8rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .welcome-message {
        padding: 20px;
    }
    
    .welcome-title {
        font-size: 1.5rem;
    }
    
    .quick-links {
        flex-wrap: wrap;
    }
}

/* Admin Feedback */
/* Premium Admin Feedback Management Styling */
.admin-feedback-section {
    padding: 40px;
    max-width: 1200px;
    margin: 30px auto;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.admin-feedback-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 35px;
    font-weight: 800;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.admin-feedback-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--button-hover));
    border-radius: 3px;
}

.admin-feedback-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.AdminFeedback {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.AdminFeedback::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--button-hover));
}

.AdminFeedback:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.AdminFeedback img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    align-self: center;
}

.AdminFeedback p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    padding: 0 10px;
    font-style: italic;
}

.AdminFeedback p::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 3rem;
    color: rgba(57, 76, 56, 0.1);
    font-family: serif;
}

.AdminFeedback span {
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: center;
}

.AdminFeedback .actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.AdminFeedback button {
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.AdminFeedback .approve {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: white;
}

.AdminFeedback .approve:hover {
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.3);
    transform: translateY(-2px);
}

.AdminFeedback .reject {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.AdminFeedback .reject:hover {
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    transform: translateY(-2px);
}

.AdminFeedback button::before {
    font-family: "Font Awesome 6 Free";
    margin-right: 8px;
    font-weight: 900;
}

.AdminFeedback .approve::before {
    content: "\f00c";
}

.AdminFeedback .reject::before {
    content: "\f00d";
}

.show-more {
    display: block;
    margin: 0 auto;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.show-more:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.2);
    transform: translateY(-2px);
}

.no-reviews {
    text-align: center;
    padding: 50px 0;
    color: #777;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    margin: 20px 0;
}

.no-reviews i {
    display: block;
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ccc;
}

/* Admin Feedback Status Badge */
.AdminFeedback .status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.status-badge.pending {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .admin-feedback-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .admin-feedback-section {
        padding: 25px;
    }
    
    .admin-feedback-container {
        grid-template-columns: 1fr;
    }
    
    .admin-feedback-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .admin-feedback-section {
        padding: 20px 15px;
    }
    
    .AdminFeedback {
        padding: 20px;
    }
}

/* Add Apartment */
/* Admin Apartment Form Styling */
.AdminFormContainer {
    max-width: 800px;
    margin: 30px auto 60px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 35px;
    position: relative;
    overflow: hidden;
}

.AdminFormContainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--button-hover));
}

.AdminFormTitle {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.AdminFormTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--button-hover));
    border-radius: 2px;
}

.AdminForm {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.AdminFormGroup {
    position: relative;
    margin-bottom: 5px;
}

.AdminFormLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 1rem;
}

.AdminFormInput,
.AdminFormTextarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    color: #333;
    box-sizing: border-box;
}

.AdminFormInput:focus,
.AdminFormTextarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(57, 76, 56, 0.1);
    outline: none;
    background-color: #fff;
}

.AdminFormTextarea {
    min-height: 150px;
    resize: vertical;
}

.AdminFormInput::placeholder,
.AdminFormTextarea::placeholder {
    color: #aaa;
}

.AdminFileInput {
    position: relative;
    display: block;
    width: 100%;
}

.AdminFileInput input[type="file"] {
    padding: 12px;
    background-color: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.AdminFileInput input[type="file"]:hover {
    border-color: var(--primary-color);
    background-color: rgba(57, 76, 56, 0.03);
}

.AdminFeaturesContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.AdminFeatureInput {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.AdminFeatureInput:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(57, 76, 56, 0.1);
    outline: none;
    background-color: #fff;
}

.AdminAddFeatureBtn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
}

.AdminAddFeatureBtn::before {
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
}

.AdminAddFeatureBtn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.AdminSubmitBtn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 15px;
}

.AdminSubmitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.3);
}

/* Form Sections */
.AdminFormSection {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.AdminFormSectionTitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .AdminFormContainer {
        padding: 25px 20px;
        margin: 20px 15px;
    }
    
    .AdminFormTitle {
        font-size: 1.8rem;
    }
    
    .AdminFeaturesContainer {
        grid-template-columns: 1fr;
    }
}

/* Add Admin */
/* Admin User Management Form Styling */
.AdminFormContainer {
    max-width: 600px;
    margin: 30px auto 60px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 35px;
    position: relative;
    overflow: hidden;
}

.AdminFormContainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--button-hover));
}

.AdminFormTitle {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.AdminFormTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--button-hover));
    border-radius: 2px;
}

.AdminForm {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.AdminFormGroup {
    position: relative;
    margin-bottom: 20px;
}

.AdminFormLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 1rem;
}

.AdminFormLabel i {
    margin-right: 8px;
    color: var(--primary-color);
}

.AdminFormInput {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    color: #333;
    box-sizing: border-box;
}

.AdminFormInput:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(57, 76, 56, 0.1);
    outline: none;
    background-color: #fff;
}

.AdminFormHelp {
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
    padding-left: 2px;
}

.AdminFormActions {
    margin-top: 15px;
}

.AdminSubmitBtn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--button-hover) 100%);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
}

.AdminSubmitBtn i {
    margin-right: 10px;
}

.AdminSubmitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.3);
}

/* Form Sections */
.AdminFormSection {
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.AdminFormSectionTitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .AdminFormContainer {
        padding: 25px 20px;
        margin: 20px 15px;
    }
    
    .AdminFormTitle {
        font-size: 1.7rem;
    }
    
    .AdminSubmitBtn {
        padding: 12px 20px;
    }
}

/* View Apartments */
/* Admin Apartment Management Styling */
.AdminApartmentsContainer {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px;
}

.AdminSectionTitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Apartment Cards */
.AdminApartmentsList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.AdminApartmentCard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.AdminApartmentCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.AdminApartmentImageContainer {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.AdminApartmentImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.AdminApartmentCard:hover .AdminApartmentImage {
    transform: scale(1.05);
}

.AdminApartmentContent {
    padding: 20px;
}

.AdminApartmentTitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.AdminApartmentPrice {
    font-weight: 700;
    color: #444;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.AdminApartmentInfo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.AdminApartmentInfo span {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.95rem;
}

.AdminApartmentInfo i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 1rem;
}

.AdminApartmentFeatures {
    padding: 10px 0;
    margin-bottom: 15px;
    color: #777;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminApartmentFeatures i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 0.9rem;
    margin-top: 3px;
}

.AdminApartmentActions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Empty State */
.AdminEmptyState {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    color: #777;
}

.AdminEmptyState i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}

.AdminEmptyState p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Buttons */
.AdminBtn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.AdminBtn i {
    margin-right: 8px;
}

.AdminBtnView {
    background: linear-gradient(135deg, #3498db, #2980b9);
    flex: 1;
}

.AdminBtnView:hover {
    background: linear-gradient(135deg, #2980b9, #2471a3);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.AdminBtnEdit {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    flex: 1;
}

.AdminBtnEdit:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.AdminBtnDelete {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.AdminBtnDelete:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.AdminBtnReservations {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.AdminBtnReservations:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.AdminBtnSave {
    background: linear-gradient(135deg, var(--primary-color), var(--button-hover));
}

.AdminBtnSave:hover {
    background: linear-gradient(135deg, var(--button-hover), var(--primary-color));
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.3);
}

.AdminBtnPrimary {
    background: linear-gradient(135deg, var(--primary-color), var(--button-hover));
    padding: 12px 25px;
    font-size: 1rem;
}

.AdminBtnPrimary:hover {
    background: linear-gradient(135deg, var(--button-hover), var(--primary-color));
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.3);
    transform: translateY(-2px);
}

/* Popup Modal */
.AdminPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
}

.AdminPopup.show {
    visibility: visible;
    opacity: 1;
}

.AdminPopupContent {
    background: #fff;
    border-radius: 15px;
    width: 700px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.AdminPopupHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminPopupTitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.AdminPopupClose {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #777;
    transition: all 0.3s ease;
}

.AdminPopupClose:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.AdminPopupBody {
    padding: 25px;
}

.AdminPopupImageContainer {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.AdminPopupImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.AdminPopupDetails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.AdminPopupDetailItem {
    display: flex;
    align-items: center;
}

.AdminPopupDetailItem i {
    width: 30px;
    height: 30px;
    background: rgba(57, 76, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
}

.AdminPopupDescription h4,
.AdminPopupFeatures h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.AdminPopupDescription p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.AdminFeaturesList {
    list-style-type: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.AdminFeaturesList li {
    display: flex;
    align-items: center;
    color: #666;
}

.AdminFeaturesList li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.AdminPopupButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.AdminPopupButtons .AdminBtn {
    flex: 1;
    min-width: 120px;
}

/* Edit Form */
.AdminEditApartmentForm {
    padding: 25px;
    display: none;
}

.AdminEditApartmentForm.show {
    display: block;
}

.AdminEditFormTitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.AdminFormGroup {
    margin-bottom: 20px;
}

.AdminFormRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.AdminFormLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.AdminFormInput,
.AdminFormTextarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.AdminFormInput:focus,
.AdminFormTextarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(57, 76, 56, 0.1);
    outline: none;
}

.AdminFormTextarea {
    min-height: 120px;
    resize: vertical;
}

/* Reservations List */
.AdminReservationsList {
    padding: 25px;
    display: none;
}

.AdminReservationsTitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.AdminReservationItem {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminReservationHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.AdminReservationUser {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.AdminReservationUser i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #666;
}

.AdminReservationStatus {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.AdminReservationStatus.confirmed {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.AdminReservationStatus.pending {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.AdminReservationStatus.canceled {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.AdminReservationDates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.AdminReservationDate {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.95rem;
}

.AdminReservationDate i {
    margin-right: 10px;
    color: var(--primary-color);
}

.AdminReservationEmpty {
    text-align: center;
    padding: 30px 0;
    color: #777;
}

.AdminReservationEmpty i {
    font-size: 2.5rem;
    color: #ddd;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .AdminApartmentsList {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .AdminPopupDetails {
        grid-template-columns: 1fr;
    }
    
    .AdminFeaturesList {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .AdminApartmentsList {
        grid-template-columns: 1fr;
    }
    
    .AdminApartmentsContainer {
        padding: 20px;
        margin: 15px;
    }
    
    .AdminFormRow {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .AdminPopupButtons {
        flex-direction: column;
    }
    
    .AdminReservationDates {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* View Users */
/* Admin User Management Styling */
.AdminUsersContainer {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px;
}

.AdminSectionHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.AdminSectionTitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    margin: 0;
}

.AdminSectionActions {
    display: flex;
    gap: 15px;
}

/* User Cards */
.AdminUsersList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.AdminUserCard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    position: relative;
}

.AdminUserCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.AdminUserAvatar {
    width: 100px;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 76, 56, 0.1), rgba(57, 76, 56, 0.3));
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.AdminUserAvatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.AdminUserContent {
    flex: 1;
    padding: 20px;
}

.AdminUserName {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

.AdminUserDetails {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.AdminUserDetail {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.95rem;
}

.AdminUserDetail i {
    width: 25px;
    height: 25px;
    background: rgba(57, 76, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.AdminUserActions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Empty State */
.AdminEmptyState {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    color: #777;
}

.AdminEmptyState i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}

.AdminEmptyState p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Buttons */
.AdminBtn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.AdminBtn i {
    margin-right: 8px;
}

.AdminBtnView {
    background: linear-gradient(135deg, #3498db, #2980b9);
    flex: 1;
}

.AdminBtnView:hover {
    background: linear-gradient(135deg, #2980b9, #2471a3);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.AdminBtnEdit {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.AdminBtnEdit:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.AdminBtnDelete {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.AdminBtnDelete:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.AdminBtnReservations {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.AdminBtnReservations:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.AdminBtnSave {
    background: linear-gradient(135deg, var(--primary-color), var(--button-hover));
}

.AdminBtnSave:hover {
    background: linear-gradient(135deg, var(--button-hover), var(--primary-color));
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.3);
}

.AdminBtnPrimary {
    background: linear-gradient(135deg, var(--primary-color), var(--button-hover));
    padding: 12px 25px;
    font-size: 1rem;
}

.AdminBtnPrimary:hover {
    background: linear-gradient(135deg, var(--button-hover), var(--primary-color));
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.3);
    transform: translateY(-2px);
}

/* Popup Modal */
.AdminPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
}

.AdminPopup.show {
    visibility: visible;
    opacity: 1;
}

.AdminPopupContent {
    background: #fff;
    border-radius: 15px;
    width: 650px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.AdminPopupHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminPopupTitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.AdminPopupClose {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #777;
    transition: all 0.3s ease;
}

.AdminPopupClose:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.AdminPopupBody {
    padding: 25px;
}

/* User Profile in Popup */
.AdminUserProfileCard {
    background: rgba(57, 76, 56, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.AdminUserProfileAvatar {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.AdminUserProfileAvatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.AdminUserProfileDetails {
    flex: 1;
    display: grid;
    gap: 15px;
}

.AdminUserProfileDetail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.AdminUserProfileDetail i {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.AdminUserProfileDetail div {
    display: flex;
    flex-direction: column;
}

.AdminUserProfileLabel {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.AdminUserProfileValue {
    font-weight: 600;
    color: #333;
}

.AdminPopupButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.AdminPopupButtons .AdminBtn {
    flex: 1;
    min-width: 120px;
}

/* Edit Form */
.AdminEditUserForm {
    padding: 25px;
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminEditUserForm.show {
    display: block;
}

.AdminEditFormTitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.AdminFormGroup {
    margin-bottom: 20px;
}

.AdminFormLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.AdminFormInput {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.AdminFormInput:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(57, 76, 56, 0.1);
    outline: none;
}

.AdminFormActions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* Reservations */
.AdminUserReservations {
    padding: 25px;
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminUserReservations.show {
    display: block;
}

.AdminReservationsTitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.AdminReservationsList {
    display: grid;
    gap: 15px;
}

.AdminReservationItem {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    display: grid;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.AdminReservationItem:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.AdminReservationProperty {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.AdminReservationProperty i {
    color: var(--primary-color);
}

.AdminReservationDates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.AdminReservationDate {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.AdminReservationDate i {
    color: var(--primary-color);
}

.AdminReservationStatus {
    justify-self: end;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    display: inline-flex;
    align-items: center;
}

.AdminReservationStatus.confirmed {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.AdminReservationStatus.pending {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.AdminReservationStatus.canceled {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.AdminReservationsLoading,
.AdminReservationsEmpty,
.AdminReservationsError {
    text-align: center;
    padding: 30px 0;
    color: #777;
}

.AdminReservationsLoading i,
.AdminReservationsEmpty i,
.AdminReservationsError i {
    font-size: 2.5rem;
    color: #ddd;
    margin-bottom: 15px;
    display: block;
}

.AdminReservationsError i {
    color: #e74c3c;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .AdminUsersList {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .AdminReservationDates {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .AdminUsersList {
        grid-template-columns: 1fr;
    }
    
    .AdminUsersContainer {
        padding: 20px;
        margin: 15px;
    }
    
    .AdminSectionHeader {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .AdminSectionTitle {
        margin-bottom: 0;
    }
    
    .AdminUserCard {
        flex-direction: column;
    }
    
    .AdminUserAvatar {
        width: 100%;
        height: auto;
        padding: 20px 0;
    }
    
    .AdminUserProfileCard {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .AdminUserProfileDetail {
        flex-direction: column;
        align-items: center;
    }
    
    .AdminPopupButtons {
        flex-direction: column;
    }
}

/* View Admins */
/* Admin Management Styling */
.AdminContainer {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px;
}

.AdminSectionHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.AdminSectionTitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    margin: 0;
}

.AdminSectionActions {
    display: flex;
    gap: 15px;
}

/* Admin Cards */
.AdminList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.AdminCard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.AdminCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.AdminCardHeader {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color, #2c3e50));
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}

.AdminAvatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    position: relative;
}

.AdminAvatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.AdminName {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.AdminRole {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.AdminCardBody {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.AdminDetail {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.95rem;
}

.AdminDetail i {
    width: 25px;
    height: 25px;
    background: rgba(57, 76, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.AdminCardFooter {
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminCardFooter .AdminBtn {
    width: 100%;
}

/* Empty State */
.AdminEmptyState {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    color: #777;
}

.AdminEmptyState i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}

.AdminEmptyState p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Buttons */
.AdminBtn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.AdminBtn i {
    margin-right: 8px;
}

.AdminBtnView {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.AdminBtnView:hover {
    background: linear-gradient(135deg, #2980b9, #2471a3);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.AdminBtnEdit {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.AdminBtnEdit:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.AdminBtnDelete {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.AdminBtnDelete:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.AdminBtnSave {
    background: linear-gradient(135deg, var(--primary-color), var(--button-hover));
}

.AdminBtnSave:hover {
    background: linear-gradient(135deg, var(--button-hover), var(--primary-color));
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.3);
}

.AdminBtnPrimary {
    background: linear-gradient(135deg, var(--primary-color), var(--button-hover));
    padding: 12px 25px;
    font-size: 1rem;
}

.AdminBtnPrimary:hover {
    background: linear-gradient(135deg, var(--button-hover), var(--primary-color));
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.3);
    transform: translateY(-2px);
}

/* Popup Modal */
.AdminPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
}

.AdminPopup.show {
    visibility: visible;
    opacity: 1;
}

.AdminPopupContent {
    background: #fff;
    border-radius: 15px;
    width: 550px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.AdminPopupHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminPopupTitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.AdminPopupClose {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #777;
    transition: all 0.3s ease;
}

.AdminPopupClose:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.AdminPopupBody {
    padding: 25px;
}

/* Admin Profile in Popup */
.AdminProfileCard {
    background: rgba(57, 76, 56, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.AdminProfileAvatar {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.AdminProfileAvatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.AdminProfileDetails {
    flex: 1;
    display: grid;
    gap: 15px;
}

.AdminProfileDetail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.AdminProfileDetail i {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.AdminProfileDetail div {
    display: flex;
    flex-direction: column;
}

.AdminProfileLabel {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.AdminProfileValue {
    font-weight: 600;
    color: #333;
}

.AdminPopupButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.AdminPopupButtons .AdminBtn {
    flex: 1;
    min-width: 120px;
}

/* Edit Form */
.AdminEditForm {
    padding: 25px;
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminEditForm.show {
    display: block;
}

.AdminEditFormTitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.AdminFormGroup {
    margin-bottom: 20px;
}

.AdminFormLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.AdminFormInput {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.AdminFormInput:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(57, 76, 56, 0.1);
    outline: none;
}

.AdminFormActions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .AdminList {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .AdminList {
        grid-template-columns: 1fr;
    }
    
    .AdminContainer {
        padding: 20px;
        margin: 15px;
    }
    
    .AdminSectionHeader {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .AdminSectionTitle {
        margin-bottom: 0;
    }
    
    .AdminProfileCard {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .AdminProfileDetail {
        flex-direction: column;
        align-items: center;
    }
    
    .AdminPopupButtons {
        flex-direction: column;
    }
}

/* View All Reviews */
/* Admin Review Management Styling */
.AdminReviewsContainer {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px;
}

.AdminSectionHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.AdminSectionTitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    margin: 0;
}

.AdminSectionFilters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.AdminBtnFilter {
    background: #f0f0f0;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.AdminBtnFilter:hover {
    background: #e0e0e0;
    color: #333;
}

.AdminBtnFilter.active {
    background: var(--primary-color);
    color: white;
}

/* Review Cards */
.AdminReviewsList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
}

.AdminReviewCard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    position: relative;
}

.AdminReviewCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.AdminReviewCard.AdminReviewApproved {
    border-left: 4px solid #2ecc71;
}

.AdminReviewCard.AdminReviewRejected {
    border-left: 4px solid #e74c3c;
}

.AdminReviewCard.AdminReviewPending {
    border-left: 4px solid #f39c12;
}

.AdminReviewAvatar {
    width: 80px;
    height: 80px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.AdminReviewAvatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.AdminReviewContent {
    flex: 1;
    padding: 15px 15px 15px 0;
    display: flex;
    flex-direction: column;
}

.AdminReviewHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.AdminReviewName {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.AdminStatusBadge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.AdminStatusBadge i {
    margin-right: 5px;
}

.AdminStatusApproved {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.AdminStatusRejected {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.AdminStatusPending {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.AdminReviewPreview {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 10px;
    flex: 1;
}

.AdminReviewDate {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.AdminReviewDate i {
    margin-right: 5px;
}

.AdminReviewActions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Empty State */
.AdminEmptyState {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    color: #777;
}

.AdminEmptyState i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}

.AdminEmptyState p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Buttons */
.AdminBtn {
    padding: 8px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.AdminBtn i {
    margin-right: 8px;
    font-size: 0.85rem;
}

.AdminBtnView {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.AdminBtnView:hover {
    background: linear-gradient(135deg, #2980b9, #2471a3);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.AdminBtnApprove {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.AdminBtnApprove:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.AdminBtnReject {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.AdminBtnReject:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.AdminBtnEdit {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.AdminBtnEdit:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.AdminBtnSave {
    background: linear-gradient(135deg, var(--primary-color), var(--button-hover));
}

.AdminBtnSave:hover {
    background: linear-gradient(135deg, var(--button-hover), var(--primary-color));
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.3);
}

/* Popup Modal */
.AdminPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
}

.AdminPopup.show {
    visibility: visible;
    opacity: 1;
}

.AdminPopupContent {
    background: #fff;
    border-radius: 15px;
    width: 600px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.AdminPopupHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminPopupTitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.AdminPopupClose {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #777;
    transition: all 0.3s ease;
}

.AdminPopupClose:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.AdminPopupBody {
    padding: 25px;
}

/* Review Detail in Popup */
.AdminReviewDetail {
    margin-bottom: 25px;
}

.AdminReviewDetailHeader {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.AdminReviewDetailAvatar {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.AdminReviewDetailAvatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.AdminReviewDetailInfo {
    flex: 1;
}

.AdminReviewDetailEmail,
.AdminReviewDetailDate {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: #666;
    font-size: 0.95rem;
}

.AdminReviewDetailEmail i,
.AdminReviewDetailDate i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.AdminReviewMessage {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.AdminReviewMessageTitle {
    font-size: 1.1rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

.AdminReviewMessageContent {
    color: #555;
    line-height: 1.6;
    white-space: pre-line;
}

.AdminPopupButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.AdminPopupButtons .AdminBtn {
    flex: 1;
    min-width: 120px;
}

/* Edit Status Form */
.AdminEditStatusForm {
    padding: 25px;
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminEditStatusForm.show {
    display: block;
}

.AdminEditStatusTitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.AdminRadioGroup {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.AdminRadioOption {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 12px 15px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.AdminRadioOption:hover {
    background: #eee;
}

.AdminRadioOption input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.AdminRadioButton {
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.AdminRadioButton:after {
    content: "";
    display: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
}

.AdminRadioOption input:checked ~ .AdminRadioButton {
    border-color: var(--primary-color);
}

.AdminRadioOption input:checked ~ .AdminRadioButton:after {
    display: block;
}

.AdminRadioLabel {
    font-weight: 600;
    color: #555;
}

.AdminFormActions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .AdminReviewsList {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .AdminReviewsList {
        grid-template-columns: 1fr;
    }
    
    .AdminReviewsContainer {
        padding: 20px;
        margin: 15px;
    }
    
    .AdminSectionHeader {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .AdminSectionTitle {
        margin-bottom: 15px;
    }
    
    .AdminReviewCard {
        flex-direction: column;
    }
    
    .AdminReviewAvatar {
        width: 100%;
        height: auto;
        padding: 15px;
        display: flex;
        justify-content: center;
    }
    
    .AdminReviewAvatar img {
        width: 60px;
        height: 60px;
    }
    
    .AdminReviewContent {
        padding: 0 15px 15px;
    }
    
    .AdminReviewDetailHeader {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .AdminPopupButtons {
        flex-direction: column;
    }
}

/* View Reservation *//* Admin Reservation Management Styling */
.AdminReservationsContainer {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px;
}

.AdminSectionHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.AdminSectionTitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    margin: 0;
}

.AdminSectionActions {
    display: flex;
    gap: 15px;
}

/* Reservation Cards */
.AdminReservationsList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.AdminReservationCard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top: 5px solid var(--primary-color);
}

.AdminReservationCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.AdminReservationHeader {
    padding: 20px 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminReservationTitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px;
}

.AdminReservationBadge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.AdminReservationDetails {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.AdminReservationDetail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.AdminReservationDetail i {
    width: 30px;
    height: 30px;
    background: rgba(57, 76, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.AdminReservationDetail div {
    display: flex;
    flex-direction: column;
}

.AdminReservationLabel {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.AdminReservationValue {
    font-weight: 600;
    color: #333;
}

.AdminReservationFooter {
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminReservationFooter .AdminBtn {
    width: 100%;
}

/* Empty State */
.AdminEmptyState {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    color: #777;
}

.AdminEmptyState i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}

.AdminEmptyState p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Buttons */
.AdminBtn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--primary-color);
    text-decoration: none;
}

.AdminBtn i {
    margin-right: 8px;
}

.AdminBtn:hover {
    background: var(--button-hover);
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.2);
}

.AdminBtnView {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.AdminBtnView:hover {
    background: linear-gradient(135deg, #2980b9, #2471a3);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.AdminBtnApprove {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.AdminBtnApprove:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.AdminBtnReject {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.AdminBtnReject:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Popup Modal */
.AdminPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
}

.AdminPopup.show {
    visibility: visible;
    opacity: 1;
}

.AdminPopupContent {
    background: #fff;
    border-radius: 15px;
    width: 600px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.AdminPopupHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminPopupTitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.AdminPopupClose {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #777;
    transition: all 0.3s ease;
}

.AdminPopupClose:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.AdminPopupBody {
    padding: 25px;
}

/* Reservation Detail in Popup */
.AdminReservationInfo {
    margin-bottom: 25px;
}

.AdminReservationSummary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.AdminReservationDate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.AdminReservationCheckIn,
.AdminReservationCheckOut {
    text-align: center;
}

.AdminReservationDateLabel {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.AdminReservationDateValue {
    font-weight: 700;
    color: #333;
}

.AdminReservationDuration {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #777;
    font-size: 0.9rem;
}

.AdminReservationDuration i {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.AdminReservationGuest {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.AdminReservationGuestHeader {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.AdminReservationGuestHeader i {
    font-size: 2rem;
    color: var(--primary-color);
}

.AdminReservationGuestLabel {
    font-size: 0.85rem;
    color: #666;
}

.AdminReservationGuestName {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.AdminReservationGuestPhone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.AdminReservationGuestPhone i {
    color: var(--primary-color);
}

.AdminReservationPricing {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.AdminReservationPricingHeader {
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.AdminReservationPricingDetail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.AdminReservationAmount {
    font-weight: 700;
    color: #2ecc71;
    font-size: 1.2rem;
}

.AdminReservationPricingNote {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    color: #666;
    font-size: 0.9rem;
}

.AdminReservationStatusBadge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.AdminStatusPending {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.AdminStatusApproved {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.AdminStatusRejected {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.AdminPopupButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.AdminPopupButtons .AdminBtn {
    flex: 1;
    min-width: 120px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .AdminReservationsList {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .AdminReservationsList {
        grid-template-columns: 1fr;
    }
    
    .AdminReservationsContainer {
        padding: 20px;
        margin: 15px;
    }
    
    .AdminSectionHeader {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .AdminSectionTitle {
        margin-bottom: 15px;
    }
    
    .AdminReservationDate {
        flex-direction: column;
        gap: 15px;
    }
    
    .AdminPopupButtons {
        flex-direction: column;
    }
}

/* View All Reservations */
/* Admin Reservation Management Styling */
.AdminReservationsContainer {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px;
}

.AdminSectionHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.AdminSectionTitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    margin: 0;
}

.AdminSectionFilters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.AdminBtnFilter {
    background: #f0f0f0;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.AdminBtnFilter:hover {
    background: #e0e0e0;
    color: #333;
}

.AdminBtnFilter.active {
    background: var(--primary-color);
    color: white;
}

.AdminSectionActions {
    display: flex;
    gap: 15px;
}

/* Reservation Cards */
.AdminReservationsList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.AdminReservationCard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.AdminReservationCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.AdminReservationCard.AdminReservationConfirmed {
    border-top: 4px solid #2ecc71;
}

.AdminReservationCard.AdminReservationCanceled {
    border-top: 4px solid #e74c3c;
}

.AdminReservationCard.AdminReservationPending {
    border-top: 4px solid #f39c12;
}

.AdminReservationHeader {
    padding: 20px 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminReservationTitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px;
}

.AdminReservationBadge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.AdminReservationBadge.AdminReservationConfirmed {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.AdminReservationBadge.AdminReservationCanceled {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.AdminReservationBadge.AdminReservationPending {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.AdminReservationDetails {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.AdminReservationDetail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.AdminReservationDetail i {
    width: 30px;
    height: 30px;
    background: rgba(57, 76, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.AdminReservationDetail div {
    display: flex;
    flex-direction: column;
}

.AdminReservationLabel {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.AdminReservationValue {
    font-weight: 600;
    color: #333;
}

.AdminReservationFooter {
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminReservationFooter .AdminBtn {
    width: 100%;
}

/* Empty State */
.AdminEmptyState {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    color: #777;
}

.AdminEmptyState i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}

.AdminEmptyState p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Buttons */
.AdminBtn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--primary-color);
    text-decoration: none;
}

.AdminBtn i {
    margin-right: 8px;
}

.AdminBtn:hover {
    background: var(--button-hover);
    box-shadow: 0 5px 15px rgba(57, 76, 56, 0.2);
}

.AdminBtnView {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.AdminBtnView:hover {
    background: linear-gradient(135deg, #2980b9, #2471a3);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.AdminBtnApprove {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.AdminBtnApprove:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.AdminBtnReject, .AdminBtnCancel {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.AdminBtnReject:hover, .AdminBtnCancel:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.AdminBtnEdit {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.AdminBtnEdit:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.AdminBtnSave {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.AdminBtnSave:hover {
    background: linear-gradient(135deg, #2980b9, #2471a3);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Popup Modal */
.AdminPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
}

.AdminPopup.show {
    visibility: visible;
    opacity: 1;
}

.AdminPopupContent {
    background: #fff;
    border-radius: 15px;
    width: 600px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.AdminPopupHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.AdminPopupTitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.AdminPopupClose {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #777;
    transition: all 0.3s ease;
}

.AdminPopupClose:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.AdminPopupBody {
    padding: 25px;
}

/* Reservation Detail in Popup */
.AdminReservationInfo {
    margin-bottom: 25px;
}

.AdminReservationSummary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.AdminReservationDate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.AdminReservationCheckIn,
.AdminReservationCheckOut {
    text-align: center;
}

.AdminReservationDateLabel {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.AdminReservationDateValue {
    font-weight: 700;
    color: #333;
}

.AdminReservationDuration {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #777;
    font-size: 0.9rem;
}

.AdminReservationDuration i {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.AdminReservationGuest {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.AdminReservationGuestHeader {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.AdminReservationGuestHeader i {
    font-size: 2rem;
    color: var(--primary-color);
}

.AdminReservationGuestLabel {
    font-size: 0.85rem;
    color: #666;
}

.AdminReservationGuestName {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.AdminReservationGuestPhone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.AdminReservationGuestPhone i {
    color: var(--primary-color);
}

.AdminReservationPricing {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.AdminReservationPricingHeader {
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.AdminReservationPricingDetail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.AdminReservationAmount {
    font-weight: 700;
    color: #2ecc71;
    font-size: 1.2rem;
}

.AdminReservationPricingNote {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    color: #666;
    font-size: 0.9rem;
}

.AdminReservationStatusBadge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.AdminStatusPending {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.AdminStatusConfirmed {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.AdminStatusCanceled {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.AdminPopupButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.AdminPopupButtons .AdminBtn {
    flex: 1;
    min-width: 120px;
}

/* Edit Form */
.AdminEditForm {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 20px;
}

.AdminEditFormTitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.AdminFormGroup {
    margin-bottom: 20px;
}

.AdminFormLabel {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
}

.AdminFormInput {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.AdminFormInput:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(57, 76, 56, 0.2);
    outline: none;
}

.AdminFormActions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
}

/* jQuery UI Datepicker Customization */
.ui-datepicker {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border: none;
}

.ui-datepicker .ui-datepicker-header {
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px 5px 0 0;
    border: none;
}

.ui-datepicker .ui-datepicker-title {
    font-weight: 600;
}

.ui-datepicker .ui-datepicker-prev, 
.ui-datepicker .ui-datepicker-next {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
}

.ui-datepicker th {
    font-weight: 600;
    color: #555;
}

.ui-datepicker .ui-state-default {
    background: #f8f9fa;
    border: 1px solid #eee;
    color: #333;
    text-align: center;
    border-radius: 4px;
}

.ui-datepicker .ui-state-default:hover {
    background: #e9ecef;
}

.ui-datepicker .ui-state-active {
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}

.ui-datepicker .ui-state-disabled .ui-state-default {
    background: #f8d7da;
    color: #dc3545;
    border-color: #f5c6cb;
    opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .AdminReservationsList {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .AdminReservationsList {
        grid-template-columns: 1fr;
    }
    
    .AdminReservationsContainer {
        padding: 20px;
        margin: 15px;
    }
    
    .AdminSectionHeader {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .AdminSectionTitle {
        margin-bottom: 15px;
    }
    
    .AdminReservationDate {
        flex-direction: column;
        gap: 15px;
    }
    
    .AdminPopupButtons {
        flex-direction: column;
    }
    
    .AdminFormActions {
        flex-direction: column;
    }
}

#uploadOverlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

#uploadOverlay div {
    text-align: center;
}

/* Responsive Form Group for Gender Radios */
.form-group.gender-group {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap; /* handles mobile wrap */
}

.form-group.gender-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

/* Optional: Style radio a bit bigger for accessibility */
.form-group.gender-group input[type="radio"] {
    accent-color: #468469; /* Use your theme color */
    width: 18px;
    height: 18px;
}

.form-group.gender-group span {
    font-weight: 500;
    user-select: none;
}

/* Responsive: Stack on very small screens */
@media (max-width: 480px) {
    .form-group.gender-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .form-group.gender-group label {
        font-size: 0.97rem;
    }
}




