/* =========================================================
   FONT & BASE
   ========================================================= */
   @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');

   body {
     font-family: 'Tajawal', sans-serif;
     background-color: #f6e6df;
     color: #4b3a35;
     direction: rtl;
     text-align: right;
   }
   
   /* =========================================================
      NAVBAR
      ========================================================= */
   .navbar {
     background-color: #d48c73;
   }
   
   .navbar-brand {
     font-weight: bold;
     color: white !important;
   }
   
   .navbar-brand img {
     background-color: white;
     border-radius: 50%;
     transition: transform 0.3s ease;
   }
   
   .navbar-brand img:hover {
     transform: scale(1.1);
   }
   
   /* =========================================================
      HERO SECTION (Home)
      ========================================================= */
   .hero {
     background: url('../img/banner.jpg') center center / cover no-repeat;
     min-height: 80vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     color: white;
     text-align: center;
     position: relative;
     padding: 60px 20px;
   }
   
   .hero::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
     z-index: 1;
   }
   
   .hero h1,
   .hero p,
   .hero a {
     z-index: 2;
     position: relative;
   }
   
   /* =========================================================
      BUTTONS
      ========================================================= */
   .btn-primary {
     background-color: #d48c73;
     border: none;
   }
   
   .btn-primary:hover {
     background-color: #b67560;
   }
   
   /* =========================================================
      SECTION TITLES
      ========================================================= */
   .section-title {
     font-weight: 700;
     margin-bottom: 1rem;
     color: #4b3a35;
     text-align: center;
   }
   
   .section-subtitle {
     color: #7c5b52;
     max-width: 700px;
     margin: 0 auto 3rem;
     text-align: center;
   }
   
   /* =========================================================
      GIFT CIRCLES
      ========================================================= */
   .gift-circle {
     width: 220px;
     height: 220px;
     border-radius: 50%;
     object-fit: cover;
     margin: 0 auto;
     border: 5px solid #f6e6df;
     transition: transform 0.3s ease;
   }
   
   .gift-circle:hover {
     transform: scale(1.05);
   }
   
   /* =========================================================
      OFFERS SECTION
      ========================================================= */
   .offers-section {
     background-color: #d48c73;
     color: white;
   }
   
   .offers-section .card {
     border: none;
     border-radius: 10px;
   }
   
   .offers-section .card-body {
     background-color: #f6e6df;
     color: #4b3a35;
     border-radius: 10px;
   }
   
   /* =========================================================
      CATEGORIES
      ========================================================= */
   .category-card img {
     border-radius: 15px;
     width: 100%;
     height: 200px;
     object-fit: cover;
     margin-bottom: 10px;
     transition: transform 0.3s ease;
   }
   
   .category-card img:hover {
     transform: scale(1.05);
   }
   
   /* =========================================================
      DOWNLOAD SECTION
      ========================================================= */
   .download-section {
     background-color: #d48c73;
     color: white;
     text-align: center;
     padding: 80px 20px;
   }
   
   .download-section h2 {
     font-weight: 700;
   }
   
   .store-buttons img {
     height: 60px;
     margin: 10px;
   }
   
   /* =========================================================
      FOOTER
      ========================================================= */
   footer {
     background-color: #4b3a35;
     color: #f6e6df;
     padding: 30px 0;
     text-align: center;
   }
   
   /* Footer links */
   footer a {
     color: #f6e6df;
     text-decoration: none;
   }
   
   footer a:hover {
     text-decoration: underline;
   }
   
   /* =========================================================
      RESPONSIVE HERO ADJUSTMENTS (Home)
      ========================================================= */
   @media (max-width: 992px) {
     .hero {
       min-height: 60vh;
       padding: 50px 15px;
     }
   
     .hero h1 {
       font-size: 2.2rem;
     }
   
     .hero p {
       font-size: 1.1rem;
     }
   }
   
   @media (max-width: 576px) {
     .hero {
       min-height: 55vh;
       padding: 40px 10px;
     }
   
     .hero h1 {
       font-size: 1.8rem;
     }
   
     .hero p {
       font-size: 1rem;
     }
   }
   
   /* =========================================================
      FAQ ACCORDION THEME
      ========================================================= */
   .accordion-button:not(.collapsed) {
     background-color: #d48c73;
     color: #fff;
     box-shadow: none;
   }
   
   .accordion-button {
     font-weight: 500;
     color: #4b3a35;
   }
   
   .accordion-button:focus {
     box-shadow: 0 0 0 0.25rem rgba(212, 140, 115, 0.25);
   }
   
   .accordion-body {
     background-color: #fffaf8;
     color: #4b3a35;
   }
   
   /* =========================================================
      SHARED PAGE HEADER STYLES (Privacy, Terms, About, Contact)
      ========================================================= */
   .shared-header {
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     text-align: center;
     position: relative;
     padding: 60px 20px;
     background-size: cover;
     background-position: center;
     min-height: 80vh;
   }
   
   .shared-header::after {
     content: '';
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.3);
   }
   
   .shared-header h1 {
     z-index: 2;
     font-size: 3rem;
     position: relative;
   }
   
   /* Responsive Adjustments for Shared Headers */
   @media (max-width: 992px) {
     .shared-header {
       min-height: 60vh;
       padding: 50px 15px;
     }
     .shared-header h1 {
       font-size: 2.2rem;
     }
   }
   
   @media (max-width: 576px) {
     .shared-header {
       min-height: 55vh;
       padding: 40px 10px;
     }
     .shared-header h1 {
       font-size: 1.8rem;
     }
   }
   
   /* =========================================================
      PRIVACY POLICY PAGE (Arabic)
      ========================================================= */
   .policy-header {
     background-image: url('../img/privacy-banner.jpg');
   }
   .policy-content {
     background-color: #ffffff;
     border-radius: 10px;
     padding: 40px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     direction: rtl;
     text-align: right;
   }
   .policy-content h2 {
     color: #4b3a35;
     font-weight: 700;
   }
   .policy-content ul {
     list-style: disc;
     margin-right: 20px;
     color: #4b3a35;
     padding-right: 10px;
   }
   .policy-content p {
     color: #4b3a35;
     line-height: 1.8;
     text-align: justify;
   }
   
   /* =========================================================
      TERMS & CONDITIONS PAGE (Arabic)
      ========================================================= */
   .terms-header {
     background-image: url('../img/terms-banner.jpg');
   }
   .terms-content {
     background-color: #ffffff;
     border-radius: 10px;
     padding: 40px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     direction: rtl;
     text-align: right;
   }
   .terms-content ul {
     list-style: disc;
     margin-right: 20px;
     padding-right: 10px;
     color: #4b3a35;
   }
   .terms-content p {
     color: #4b3a35;
     line-height: 1.8;
     text-align: justify;
   }
   
   /* =========================================================
      ABOUT PAGE (Arabic)
      ========================================================= */
   .about-header {
     background-image: url('../img/about-banner.jpg');
   }
   
   /* =========================================================
      CONTACT PAGE (Arabic)
      ========================================================= */
   .contact-header {
     background-image: url('../img/contact-banner.jpg');
   }
   
   /* =========================================================
      FAQ PAGE (Arabic)
      ========================================================= */
   .faq-header {
     background-image: url('../img/faq-banner.jpg');
   }
   