

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1s ease, transform 1s ease;
    }
    
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    select.has-value ~ label,
    select:focus ~ label,
    select:not([value=""]):valid ~ label {
      top: -0.6rem;
      left: 1rem;
      font-size: 0.8rem;
      color: var(--gold);
      background: var(--charcoal);
      padding: 0 0.5rem;
    }
    
    body.rtl select.has-value ~ label,
    body.rtl select:focus ~ label,
    body.rtl select:not([value=""]):valid ~ label {
      left: auto;
      right: 1rem;
    }
    
    /* Smooth transitions for RTL */
    body, .breadcrumb i, footer .bi-chevron-right {
      transition: all 0.3s ease;
    }
    
    #mobileMenu {
      transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      padding: 0 1rem;
    }
    
    #mobileMenu.show {
      max-height: 350px;
      opacity: 1;
      padding: 1rem;
    }


    :root {
      --gold: #D4AF37;
      --cream: #F7F3EB;
      --charcoal: #0F0F0F;
      --dark-gray: #1A1A1A;
    }
    
    body {
      background-color: var(--charcoal);
      font-family: 'Inter', sans-serif;
      color: var(--cream);
      overflow-x: hidden;
      transition: all 0.3s ease;
    }
    
    body.rtl {
      font-family: 'Tajawal', sans-serif;
      text-align: right;
    }
    
    h1, h2, h3, h4, .heading-font {
      font-family: 'Playfair Display', serif;
      font-weight: 500;
      letter-spacing: -0.02em;
    }
    
    body.rtl h1, 
    body.rtl h2, 
    body.rtl h3, 
    body.rtl h4, 
    body.rtl .heading-font {
      font-family: 'Tajawal', sans-serif;
      font-weight: 600;
    }
    
    /* Navigation */
    .nav-link { position: relative; color: var(--cream); text-decoration: none; transition: color 0.2s; }
    .nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background-color: var(--gold); transition: width 0.3s ease; }
    .nav-link:hover::after { width: 100%; }
    .nav-link:hover { color: var(--gold); }
    
    body.rtl .nav-link::after {
      left: auto;
      right: 0;
    }
    
    .lang-btn { 
      background: transparent; 
      border: 1px solid rgba(212,175,55,0.3); 
      color: var(--cream); 
      padding: 0.25rem 0.75rem; 
      font-size: 0.8rem; 
      border-radius: 2px; 
      cursor: pointer; 
      transition: 0.2s; 
      text-transform: uppercase; 
    }
    .lang-btn.active { 
      background: var(--gold); 
      color: var(--charcoal); 
      border-color: var(--gold); 
    }
    
    /* Logo styles */
    .logo-container { display: flex; align-items: center; gap: 0.5rem; }
    .logo-img { height: 36px; width: auto; border-radius: 4px; border: 1px solid #D4AF37; padding: 2px; background: #0F0F0F; }
    @media (min-width:640px){ .logo-img{ height: 44px; } }
    
    /* WhatsApp Float */
    .whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(0,0,0,0.3); z-index: 50; transition: transform 0.2s; }
    .whatsapp-float:hover { transform: scale(1.1); background: #20b859; }
    
    body.rtl .whatsapp-float {
      right: auto;
      left: 30px;
    }
    
    /* Mobile Menu */
    #mobileMenu {
      transition: all 0.3s ease-in-out;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      padding: 0 1rem;
    }
    
    #mobileMenu.show {
      max-height: 350px;
      opacity: 1;
      padding: 1rem;
    }
    
    /* Form Styles */
    .contact-input {
      background: transparent;
      border: 1px solid rgba(247, 243, 235, 0.15);
      padding: 1rem 1.25rem;
      color: var(--cream);
      transition: all 0.3s ease;
      width: 100%;
      border-radius: 4px;
      font-size: 1rem;
    }
    
    .contact-input:focus {
      border-color: var(--gold);
      outline: none;
      box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
    }
    
    .contact-input::placeholder {
      color: rgba(247, 243, 235, 0.4);
      font-weight: 300;
    }
    
    .contact-input:hover {
      border-color: rgba(212, 175, 55, 0.5);
    }
    
    textarea.contact-input {
      min-height: 140px;
      resize: vertical;
    }
    
    select.contact-input {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1.25rem center;
      background-size: 16px;
    }
    
    body.rtl select.contact-input {
      background-position: left 1.25rem center;
    }
    
    select.contact-input option {
      background: var(--dark-gray);
      color: var(--cream);
      padding: 1rem;
    }
    
    .btn-submit {
      background: var(--gold);
      color: var(--charcoal);
      padding: 1.25rem 2.5rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-size: 0.9rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      border-radius: 4px;
      position: relative;
      overflow: hidden;
    }
    
    .btn-submit:hover {
      background: #c49f2f;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    }
    
    .btn-submit:active {
      transform: translateY(0);
    }
    
    /* Contact Info Cards */
    .info-card {
      background: rgba(26, 26, 26, 0.7);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 175, 55, 0.1);
      padding: 2rem;
      border-radius: 8px;
      transition: all 0.3s ease;
      height: 100%;
    }
    
    .info-card:hover {
      border-color: var(--gold);
      transform: translateY(-5px);
      box-shadow: 0 20px 30px -10px rgba(0,0,0,0.5);
    }
    
    .info-icon {
      width: 60px;
      height: 60px;
      background: rgba(212, 175, 55, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      color: var(--gold);
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }
    
    .info-card:hover .info-icon {
      background: var(--gold);
      color: var(--charcoal);
    }
    
    /* Map Container */
    .map-container {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid rgba(212, 175, 55, 0.2);
      height: 400px;
    }
    
    .map-container iframe {
      width: 100%;
      height: 100%;
      filter: grayscale(100%) invert(90%) contrast(90%);
      transition: filter 0.3s ease;
    }
    
    .map-container:hover iframe {
      filter: grayscale(50%) invert(90%) contrast(90%);
    }
    
    /* Divider */
    .gold-divider {
      width: 80px;
      height: 2px;
      background: var(--gold);
      margin: 2rem auto;
    }
    
    /* Success Message */
    .success-message {
      background: rgba(212, 175, 55, 0.1);
      border-left: 4px solid var(--gold);
      padding: 1.5rem;
      border-radius: 4px;
      margin-bottom: 2rem;
      display: none;
    }
    
    body.rtl .success-message {
      border-left: none;
      border-right: 4px solid var(--gold);
    }
    
    .success-message.show {
      display: block;
      animation: slideDown 0.5s ease;
    }
    
    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Breadcrumb */
    .breadcrumb {
      display: flex;
      gap: 0.5rem;
      align-items: center;
      color: rgba(247, 243, 235, 0.6);
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }
    
    .breadcrumb a {
      color: var(--cream);
      text-decoration: none;
      transition: color 0.2s;
    }
    
    .breadcrumb a:hover {
      color: var(--gold);
    }
    
    .breadcrumb i {
      font-size: 0.8rem;
      color: var(--gold);
    }
    
    body.rtl .breadcrumb i {
      transform: rotate(180deg);
    }
    
    /* Floating Labels */
    .input-group {
      position: relative;
      margin-bottom: 1.5rem;
    }
    
    .input-group label {
      position: absolute;
      left: 1.25rem;
      top: 1rem;
      color: rgba(247, 243, 235, 0.5);
      font-size: 0.9rem;
      pointer-events: none;
      transition: all 0.2s ease;
      background: transparent;
      padding: 0 0.25rem;
    }
    
    body.rtl .input-group label {
      left: auto;
      right: 1.25rem;
    }
    
    .input-group input:focus ~ label,
    .input-group input:not(:placeholder-shown) ~ label,
    .input-group textarea:focus ~ label,
    .input-group textarea:not(:placeholder-shown) ~ label,
    .input-group select:focus ~ label,
    .input-group select:not([value=""]):valid ~ label {
      top: -0.6rem;
      left: 1rem;
      font-size: 0.8rem;
      color: var(--gold);
      background: var(--charcoal);
      padding: 0 0.5rem;
    }
    
    body.rtl .input-group input:focus ~ label,
    body.rtl .input-group input:not(:placeholder-shown) ~ label,
    body.rtl .input-group textarea:focus ~ label,
    body.rtl .input-group textarea:not(:placeholder-shown) ~ label,
    body.rtl .input-group select:focus ~ label,
    body.rtl .input-group select:not([value=""]):valid ~ label {
      left: auto;
      right: 1rem;
    }
    
    .input-group input::placeholder,
    .input-group textarea::placeholder,
    .input-group select::placeholder {
      color: transparent;
    }
    
    /* Footer Styles */
    footer a {
      transition: color 0.2s;
    }
    
    footer a:hover {
      color: var(--gold);
    }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    
    ::-webkit-scrollbar-track {
      background: var(--charcoal);
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 5px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: #c49f2f;
    }
    
    /* RTL Specific */
    body.rtl .flex-row-reverse {
      flex-direction: row-reverse;
    }
    
    body.rtl .ml-2 {
      margin-left: 0;
      margin-right: 0.5rem;
    }
    
    body.rtl .mr-2 {
      margin-right: 0;
      margin-left: 0.5rem;
    }
    
    body.rtl .space-x-8 > :not([hidden]) ~ :not([hidden]) {
      --tw-space-x-reverse: 1;
    }
    

    /* Force visibility of all sections */
nav, main, .fade-in, .info-card, .map-container, 
.breadcrumb, .gold-divider, footer {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure header text is visible */
h1, h2, h3, p, span {
    color: #F7F3EB !important;
}

/* Make sure gold text shows */
.text-\[#D4AF37\], [class*="D4AF37"] {
    color: #D4AF37 !important;
}

/* Fix any potential overflow issues */
body {
    overflow-x: visible !important;
    height: auto !important;
}
