:root {
  --gold-primary: #C7A24F;
  --gold-light: #E4CA7A;
  --gold-dark: #A68741;
  --dark-green: #1a472a;
  --green-gradient: linear-gradient(135deg, #1a472a 0%, #2d5f3f 100%);
  --gold-gradient: linear-gradient(135deg, #A68741 0%, #C7A24F 50%, #E4CA7A 100%);
  --cream: #FAF9F6;
  --text-dark: #2C2C2C;
  --text-muted: #6C757D;
}


html[lang="ar"], 
body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* Hero Section */
.detail-hero {
    background: var(--gold-gradient);
    color: white;
    padding: 4rem 0 3rem;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    text-align: right;
}
.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
}
.detail-hero .container {
    position: relative;
    z-index: 1;
}



.back-button {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.back-button:hover {
    background: white;
    color: var(--gold-dark);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



.detail-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.detail-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Main Content Area */
.container.mb-5 {
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

/* Hotel Image */
.detail-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.detail-image:hover {
    transform: scale(1.01);
}

/* Info Sections */
.info-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(199,162,79,0.1);
    transition: all 0.3s ease;
}
.info-section:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.info-label {
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
}
.info-label::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, var(--gold-primary), var(--gold-light));
    margin-left : 12px;
    border-radius: 2px;
}

#roomType {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

#roomSize {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

#hotelDescription {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
}

/* Amenities */
.amenity-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(199,162,79,0.08), rgba(228,202,122,0.12));
    color: var(--gold-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin: 0.3rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(199,162,79,0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(199,162,79,0.1);
}

.amenity-badge:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199,162,79,0.3);
}

/* Additional Info */
#additionalInfo {
    font-size: 1rem;
}

#additionalInfo .col-md-6 {
    margin-bottom: 1.5rem;
}

#additionalInfo strong {
    color: var(--gold-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#additionalInfo p {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

#additionalInfo .btn-link {
    color: var(--gold-primary);
    font-weight: 600;
    text-decoration: none;
    padding: 0;
    transition: all 0.3s ease;
}

#additionalInfo .btn-link:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* Sidebar Cards */
.cta-dock {
    position: sticky;
    top: 90px;
}
.contact-card {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}
.contact-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.contact-card .card-body {
    padding: 2rem;
}
.contact-card .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.contact-card .text-muted {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* WhatsApp Button */
.whatsapp {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    font-size: 0.95rem;
}

.whatsapp:hover {
    background: linear-gradient(135deg, #20ba5a, #1fa855);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Other Contact Buttons */
.btn-outline-secondary {
    border: 2px solid #e0e0e0;
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Location Card */
.card.mt-3 {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.card.mt-3 .card-body {
    padding: 1.5rem;
}

.card.mt-3 h6 {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card.mt-3 p {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.card.mt-3 small {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 5rem 2rem;
}

.loading-spinner .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
    color: var(--gold-primary);
}

.loading-spinner p {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Error Message */
.alert-danger {
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #fff5f5, #ffe5e5);
    color: #c53030;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(197,48,48,0.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .detail-hero h1 {
        font-size: 2rem;
    }
    
    .detail-image {
        height: 300px;
        margin-bottom: 1.5rem;
    }
    
    .info-section {
        padding: 1.5rem;
    }
    
    #roomType {
        font-size: 1.5rem;
    }
    
    .contact-card {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .detail-hero {
        padding: 3rem 0 2rem;
    }
    
    .detail-hero h1 {
        font-size: 1.75rem;
    }
    
    .detail-image {
        height: 250px;
        border-radius: 12px;
    }
    
    .info-section {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    #roomType {
        font-size: 1.35rem;
    }
    
    .amenity-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        margin: 0.25rem;
    }
}

/* Footer Styles (unchanged) */
.hf-footer {
  color: #000;
  background: rgba(85, 87, 88, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E4E6EB;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.hf-footer a { 
  color: #000; 
  text-decoration: none; 
}
.hf-footer a:hover { 
  color: #D2AD67; 
}
.hf-heading {
  color: #D2AD67;
  letter-spacing: .02em;
  margin-bottom: .75rem;
}
.ft-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
#ft-container01, #ft-container02 {
  border-left: 1px solid rgba(251, 250, 246, 0.12);
}
#mailto01 {
  overflow-wrap: break-word;
}
.mb-2 h6 {
  font-weight: bold;
}
.col-md-4.mb-4 {
  margin: 0;
}
.hf-hours li {
  display: flex;
  justify-content: space-between;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hf-hours li:last-child { 
  border-bottom: 0; 
}
.hf-hours .day { 
  font-weight: 600; 
}
.hf-hours .time { 
  opacity: .8; 
}
.btn-gold {
    background: linear-gradient(135deg,#C7A24F,#E4CA7A);
    color: #fff;
    border: 0; 
    border-radius:999px;
    padding: .7rem 1.4rem;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(199,162,79,.22);
    text-shadow: 0 1px 0 rgba(0,0,0,.18);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    line-height:1;
}
.btn-gold:hover { 
    filter:brightness(1.05); 
    transform:translateY(-2px); 
}
.social-icon {
  margin-left: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.social-icon img {
  margin-left: 10px;
  border-radius: 50%;
}
.hf-social-link {
  display: inline-flex;
  align-items: center; 
  justify-content: center;
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease, color .15s ease;
}
.hf-social-link:hover {
  transform: translateY(-2px);
  border-color: #D2AD67;
  color: #111;
}

@media (max-width:767.98px) {
    #ft-container01, #ft-container02 {
        max-width: 490px;
        border-bottom: 1px solid rgba(251, 250, 246, 0.12);
        border-left: none;
        padding-bottom: 15px;
    }
}