@import url(./variables.css?v=1.1);
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.btn-more-info {
  font-size: var(--fs-sm);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  border: 1px solid white;
  background-color: white;
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.btn-more-info i {
  font-size: 12px;
  margin-top: 5px;
}

.btn-more-info:hover,
.btn-more-info:focus {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: white;
}
.btn-custom {
  font-size: var(--fs-sm);
  padding: 12px;
  border-radius: var(--radius-2xl);
  transition: var(--transition-fast);
  border: 1px solid white;
  background-color: var(--color-primary-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}

.btn-more-info:hover,
.btn-more-info:focus {
  background-color: white;
  border-color: var(--color-primary-dark);
  color: var(--color-primary-dark);
}
/* ===================================
   NAVIGATION BAR
   =================================== */
.navbar-container {
  background-color: #fcefed50;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  padding: var(--spacing-base);
  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 1200px;
  margin: 0 auto;
}

.navbar-container.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar .logo {
  flex-shrink: 0;
}

.navbar .logo img {
  height: var(--fs-logo);
  width: auto;
}

.logo-toggle {
  display: flex;
  align-items: center;
  gap: var(--spacing-base);
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 0;
}

.nav-menu a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-base);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-menu a:hover {
  color: var(--color-primary);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: var(--spacing-base);
}

.download-btn {
  background-color: var(--color-primary-dark);
  color: var(--color-bg-white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--transition-fast);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.download-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
}

.separator {
  width: 1px;
  height: 25px;
  background-color: var(--color-border);
}
.language-wrapper {
  display: flex;
  align-items: center;
}

.language-icon {
  width: 28px;
  height: 28px;
}

.language-select {
  padding: var(--spacing-xs) 0.8rem;
  border: 1px solid var(--color-transparent);
  border-radius: var(--radius-sm);
  background-color: var(--color-transparent);
  color: var(--color-text);
  font-weight: 500;
  cursor: pointer;
}

.language-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
}

.language-select::-ms-expand {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--fs-xl);
  color: var(--color-text);
  cursor: pointer;
  padding: 0;
}

.responsive-btn {
  display: none;
}

#IconContainer {
  display: none;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100dvw;
  height: 100dvh;
  background: url("../frame_1.png") bottom/contain no-repeat;
  background-color: #fcefed50;
  display: flex;
  justify-content: center;
  align-items: end;
}
.hero-background img {
  bottom: 0;
  width: 550px;
  animation: slideUp 0.8s ease-out var(--delay-1) both;
}

/* .hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  animation: slideDown 0.8s ease-out forwards;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
  height: 100%;
}  */

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  margin-top: -40px;
}

.hero-content-dev {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  animation: slideDown 0.8s ease-out forwards;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content .logo-secondary {
  width: 100px;
  display: block;
}
/* .hero-content .mobile-image {
  animation: slideDown 0.8s ease-out var(--delay-1) both;
  width: 50%;
} */

.hero-content .mobile-image {
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 50vh;
  object-fit: contain;
  animation: slideDown 0.8s ease-out var(--delay-1) both;
}

.hero-content h3 {
  font-size: var(--fs-xl);
  color: var(--color-primary);
  animation: slideDown 0.8s ease-out var(--delay-1) both;
  margin-top: var(--spacing-xs);
  font-weight: 800;
}

.hero-content p {
  margin-top: var(--spacing-base);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-primary-dark);
  animation: slideDown 0.8s ease-out var(--delay-2) both;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  animation: slideUp 0.8s ease-out var(--delay-3) both;
}

.download-buttons img {
  transition: var(--transition-smooth);
  cursor: pointer;
  width: 120px;
}

.download-buttons img:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
  position: relative;
  width: 100%;
  min-height: 70dvh;
  margin: 12px 0;
  background: url("../bg-about-img.webp") center/cover no-repeat;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(167, 69, 69, 0.678),
    rgba(0, 0, 0, 0.562)
  );
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
}

.about-content p {
  font-size: 1.2rem;
  color: #fff;
  margin: 12px 0;
  letter-spacing: 1px;
}

.about-content .about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 22px;
}

.about-card {
  padding: 24px 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  background: rgba(255, 255, 255, 0.295);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 0.1px solid #ffffff5d;
}

.about-card img {
  width: 180px;
  height: 180px;
}

.about-card h4 {
  color: var(--color-primary-dark);
  margin: 24px 0 8px 0;
  font-weight: 800;
}

.about-card p {
  font-size: var(--fs-lg);
  word-spacing: 1px;
  color: #fff;
  flex-grow: 1; 
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.about-footer {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  width: 100%;
}

.about-footer span {
  color: white;
  font-size: 1.2rem;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
  padding: 80px 0;
  opacity: 0;
}

.title {
  color: var(--color-primary-dark);
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.subtitle {
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
}
.title-white {
  color: white;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.subtitle-white {
  color: white;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
}

.accordion {
  --bs-accordion-border-color: transparent;
  --bs-accordion-bg: transparent;
}

.accordion-item {
  background: #f8f9fa;
  border: none !important;
  border-radius: 12px !important;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.accordion-item:hover {
  box-shadow: 0 5px 15px rgba(139, 21, 56, 0.1);
  transform: translateY(0);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background: transparent !important;
  color: #333 !important;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 25px;
  border: none;
  box-shadow: none !important;
  position: relative;
  transition: all 0.3s ease;
  text-align: start;
}

.accordion-button:hover {
  color: var(--color-primary-dark) !important;
}

.accordion-button:not(.collapsed) {
  color: var(--color-primary-dark) !important;
  background: rgba(139, 21, 56, 0.05) !important;
}

.accordion-button::before {
  content: "+";
  background-image: none !important;
  width: 18px;
  height: 16px;
  font-size: var(--fs-lg);
  font-weight: bold;
  color: white;
  background-color: var(--color-primary-dark);
  border-radius: 50%;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: end;
  margin: 0 12px;
}

.accordion-button:not(.collapsed)::before {
  transform: rotate(45deg);
}

.accordion-button::after {
  content: "";
  background-image: none !important;
  width: 20px;
  height: 20px;
  font-size: 24px;
  font-weight: bold;
  color: white;
  border-radius: 50%;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

.accordion-body {
  padding: 0 25px 20px 25px;
  color: var(--color-text-light);
  line-height: 1.8;
  font-size: 15px;
}

.accordion-collapse {
  border: none;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   MEDIA QUERIES
   =================================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
  .hero-background img {
    width: 460px;
  }
  .nav-menu a {
    font-size: var(--fs-xs);
  }
}
@media (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }
}

/* Medium Tablets */
@media (max-width: 992px) {
  .nav-menu {
    margin-right: 0;
  }
  .nav-controls .download-btn {
    grid-column: 2;
    justify-self: center;
    white-space: nowrap;
  }

  .download-btn {
    padding: 0.6rem 1rem;
    font-size: var(--fs-sm);
    white-space: nowrap;
  }

  .language-select {
    padding: 0.5rem;
    font-size: var(--fs-sm);
    order: 2;
  }
}

/* Tablets and Small Devices */
@media (max-width: 992px) {
  /* Hero Background */
  .hero-background {
    display: none;
    background-attachment: scroll;
  }
  .language-wrapper {
    display: none;
  }
  .hero-background-resposive {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("../frame_2.webp") center/cover no-repeat;
  }
  .hero-content {
    justify-content: start;
    margin-top: 22px;
  }
  .hero-content .logo-secondary {
    width: 80px;
  }
  .hero-content img {
    width: 80px;
  }
  .mobile-image {
    display: none;
  }

  .hero-content h3 {
    font-size: var(--fs-lg);
    margin-top: var(--spacing-xs);
  }

  .hero-content p {
    font-size: var(--fs-lg);
  }
  .hero {
    min-height: 80vh;
  }

  .download-buttons img {
    width: 100px;
  }

  /* Navigation */
  .navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .navbar-container {
    background-color: transparent;
  }

  .mobile-toggle {
    display: block;
    grid-column: 1;
    order: 0;
  }

  .logo {
    grid-column: 3;
  }

  .logo-toggle {
    width: 100%;
    justify-content: space-between;
    order: 1;
  }

  .navbar .logo {
    order: 2;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--color-bg-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin: 0;
    padding: var(--spacing-base) var(--spacing-lg);
    width: 100%;
    box-shadow: 0 4px 6px var(--color-shadow);
    order: 3;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: var(--spacing-sm) 0;
    display: block;
    border-bottom: 1px solid var(--color-border-light);
    font-size: var(--fs-base);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a:hover {
    padding-right: var(--spacing-xs);
  }

  .nav-controls {
    width: auto;
    order: 0;
    padding: 0;
    border: none;
  }

  .download-btn {
    flex: 0 1 auto;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: var(--fs-sm);
    order: 1;
  }

  .separator {
    display: none;
  }

  .responsive-btn {
    display: block;
  }

  .nav-controls .language-select,
  .separator {
    display: none;
  }

  /* About Section */
  .about-content .about-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-content h3 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }

  .navbar {
    padding: var(--spacing-sm);
  }

  .nav-menu {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .download-btn {
    font-size: var(--fs-sm);
    padding: 0.6rem 0.8rem;
  }

  .navbar .logo img {
    height: var(--fs-logo-mobile);
  }

  .mobile-toggle {
    font-size: var(--fs-lg);
  }
}

/* Small Mobile Devices */
@media (max-width: 360px) {
  .hero {
    min-height: 65vh;
  }
}

/* ============ CONTACT SECTION ============ */

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  border-radius: var(--radius-md);
  animation: fadeIn 0.8s ease-out;
  gap: 32px;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide In Animation for Form Elements */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============ CONTACT INFO SECTION ============ */
.contact-info {
  flex: 1;
  min-width: 300px;
  background-color: var(--color-primary-dark);
  color: white;
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

/* Background Gradient Overlay */
.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-primary-light),
    var(--color-primary-dark)
  );
  opacity: 0.8;
  z-index: 0;
}

/* Ensure content stays above gradient */
.contact-info > * {
  position: relative;
  z-index: 1;
}

/* Contact Info Typography */
.contact-info h1 {
  font-size: var(--fs-xl);
  margin-bottom: var(--spacing-base);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
  font-size: var(--fs-base);
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

/* Contact Details */
.contact-details {
  margin-top: var(--spacing-md);
}

.contact-details div {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-base);
  font-size: var(--fs-lg);
}

.contact-details i {
  margin-left: var(--spacing-sm);
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ CONTACT FORM SECTION ============ */
.contact-form {
  flex: 2;
  min-width: 400px;
  min-height: 500px;
  padding: var(--spacing-lg);
}

/* Form Layout */
.form-group {
  margin-bottom: var(--spacing-md);
  animation: slideIn var(--delay-2) ease-out forwards;
  opacity: 0;
  transform: translateX(20px);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.form-row .form-group {
  flex: 1;
  min-width: 200px;
}

/* Staggered Form Group Animations */
.form-group:nth-child(1) {
  animation-delay: 0.1s;
}
.form-group:nth-child(2) {
  animation-delay: 0.2s;
}
.form-group:nth-child(3) {
  animation-delay: 0.3s;
}
.form-group:nth-child(4) {
  animation-delay: 0.4s;
}
.form-group:nth-child(5) {
  animation-delay: 0.5s;
}

/* ============ FLOATING LABEL INPUTS ============ */
.input-container {
  position: relative;
  width: 100%;
}

/* Input & Textarea Base Styles */
.input-container input,
.input-container textarea {
  width: 100%;
  padding: var(--spacing-sm) 0;
  border: none;
  border-bottom: 2px solid var(--color-border);
  background-color: transparent;
  font-size: var(--fs-base);
  transition: var(--transition-fast);
  outline: none;
  color: var(--color-text);
}

.input-container textarea {
  min-height: 100px;
  resize: vertical;
  padding-top: var(--spacing-sm);
}

/* Floating Labels */
.input-container label {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--color-text-light);
  font-size: var(--fs-base);
  transition: var(--transition-smooth);
  pointer-events: none;
  background-color: var(--color-bg-white);
  padding: 0 5px;
  margin-right: -5px;
}

/* Textarea Specific Label */
.textarea-container label {
  top: var(--spacing-sm);
  transform: none;
}

/* Active/Filled State */
.input-container input:focus,
.input-container input:not(:placeholder-shown),
.input-container textarea:focus,
.input-container textarea:not(:placeholder-shown) {
  border-bottom-color: var(--color-primary);
}

/* Label Animation */
.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label,
.input-container textarea:focus + label,
.input-container textarea:not(:placeholder-shown) + label {
  top: -10px;
  transform: translateY(0);
  font-size: var(--fs-xs);
  color: var(--color-primary);
  font-weight: 600;
}

.input-container textarea:focus + label,
.input-container textarea:not(:placeholder-shown) + label {
  top: -20px;
}

/* ============ FORM ELEMENTS ============ */
/* Labels */
label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--color-primary-dark);
  font-size: var(--fs-sm);
}

/* Legacy Input Styles (keep for fallback) */
input,
textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-base);
  transition: var(--transition-fast);
}

input:focus,
textarea:focus {
  outline: none;
  border: none;
  border-bottom: 1.5px solid var(--color-primary);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-light);
  opacity: 0.7;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* ============ SUBMIT BUTTON ============ */
.submit-btn {
  background-color: var(--color-primary-dark);
  color: white;
  border: none;
  padding: var(--spacing-base) var(--spacing-lg);
  border-radius: var(--radius-xl);
  font-size: var(--fs-base);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-sm);
}

.submit-btn:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 10px var(--color-shadow);
}

.submit-btn:active {
  transform: translateY(0);
}

/* ============ CONTACT FOOTER ============ */
.contact-footer {
  margin-top: var(--spacing-lg);
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  padding-top: var(--spacing-base);
  border-top: 1px solid var(--color-border-light);
}

/* ============ DECORATIVE ELEMENTS ============ */
.decoration {
  position: absolute;
  border-radius: 50%;
}

.decoration-1 {
  width: 250px;
  height: 250px;
  bottom: -50px;
  left: -50px;
  background-color: rgba(78, 15, 15, 0.342);
}

.decoration-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  background-color: rgba(78, 15, 15, 0.342);
}

.contact-icon {
  position: absolute;
  bottom: 0px;
  left: 10px;
}
.contact-icon-response {
  display: none;
  margin-bottom: -25px;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .contact-info,
  .contact-form {
    min-width: 100%;
  }

  .contact-info {
    padding: var(--spacing-md);
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-info h3 {
    font-size: 1.2rem;
  }

  /* Adjust label size on mobile */
  .input-container label {
    font-size: var(--fs-sm);
  }
}
@media (max-width: 480px) {
  .contact-icon {
    display: none;
  }
  .contact-icon-response {
    display: flex;
    justify-content: end;
  }
}
/* ***********footer ******** */
.footer-section {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    #8b3a3a 100%
  );
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 0 0;
  overflow: hidden;
  min-height: 600px;
}

/* Content Container */
.footer-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}

/* Decorative Elements */
.decoration-shared {
  position: absolute;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  width: 300px;
  height: 300px;
}

.decoration-3 {
  top: -30px;
  right: -30px;
}

.decoration-4 {
  top: -30px;
  left: -30px;
  animation-delay: 1s;
}

.decoration-5 {
  bottom: -30px;
  right: -30px;
  animation-delay: 2s;
}

.decoration-6 {
  bottom: -30px;
  left: -30px;
  animation-delay: 1.5s;
}
.decoration-7 {
  bottom: 50%;
  left: 50%;
  animation-delay: 1.5s;
  transform: translate(50%, -50%);
}
.decoration-8 {
  bottom: 0;
  left: 0;
  animation-delay: 1.5s;
  clip-path: circle(55.9% at 75% 83%);
}
.decoration-9 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 100px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.8;
  }
}
/* Text Content */
.text-content {
  text-align: center;
  animation: fadeInDown 0.8s ease-out;
}

.title-white {
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-base);
  line-height: 1.4;
  animation: fadeInDown 0.8s ease-out;
}

.subtitle-white {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  animation: fadeInDown 0.8s ease-out var(--delay-1);
}

/* Main Container */
.main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

/* Right Section - People Image */
.right-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-width: 300px; */
  animation: fadeInRight 1s ease-out var(--delay-2);
}

.people-container {
  transition: var(--transition-smooth);
  max-width: 600px;
  width: 100%;
  margin-bottom: -10px;
}

.people-container:hover {
  transform: translateY(15px) scale(1.05);
}

.people-image,
.placeholder-people img {
  max-width: 90%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

/* Left Section - QR and Downloads */
.left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 300px;
  animation: fadeInLeft 1s ease-out var(--delay-2);
}

.qr-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.qr-container {
  /* background: white;
  padding: 20px;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
  transition: var(--transition-smooth);
  max-width: 220px;
  width: 100%;
}

.qr-container:hover {
  transform: scale(1.08);
  cursor: pointer;
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); */
}

.qr-code {
  width: 200px;
  height: auto;
  aspect-ratio: 1/1;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.qr-code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-buttons {
  display: flex;
  gap: var(--spacing-base);
  align-items: center;
}

.app-button {
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  max-width: 160px;
  height: 100px;
  border: 2px solid transparent;
}

.app-button:hover {
  transform: translateY(-5px);
}

.placeholder-store {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.placeholder-store img {
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .decoration-shared {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 768px) {
  .placeholder-people img {
    max-width: 70%;
    margin: 0 auto;
  }
  .qr-code {
    width: 180px;
  }
  .placeholder-store img {
    width: 90%;
  }
  .footer-section {
    padding: 80px 20px;
    min-height: auto;
  }

  .title-white {
    font-size: 1.4rem;
  }

  .subtitle-white {
    font-size: 0.85rem;
  }

  .main-container {
    flex-direction: column;
    gap: 40px;
  }

  .right-section,
  .left-section {
    min-width: 100%;
  }
}

/********** footer banner **********/
.footer-banner {
  max-width: 1200px;
  padding: 30px 20px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out;
}

/* Top Section */
.footer-top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg) 0;
  border-bottom: 2px solid var(--color-border-light);
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

/* Logo */
.footer-banner img {
  height: 50px;
  width: auto;
  transition: var(--transition-smooth);
}

.footer-banner img:hover {
  transform: scale(1.05);
}

/* Footer Navigation Row */
.footer-nav-row {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav-row a {
  text-decoration: none;
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  transition: var(--transition-smooth);
  padding-bottom: 2px;
  position: relative;
}

.footer-nav-row a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary-dark);
  transition: width 0.3s ease;
}

.footer-nav-row a:hover {
  color: var(--color-primary-dark);
}

.footer-nav-row a:hover::after {
  width: 100%;
}

/* Horizontal Rule */
hr {
  border: none;
  border-top: 1px solid var(--color-border-light);
  margin: 0;
}

/* Bottom Section */
.footer-bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg) 0;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.footer-bottom-section p {
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  margin: 0;
  transition: var(--transition-fast);
}

.footer-bottom-section p:hover {
  color: var(--color-primary-dark);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: var(--spacing-base);
  align-items: center;
}

.social-icons i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.social-icons i:hover {
  color: #fff;
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(111, 46, 46, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-top-section,
  .footer-bottom-section {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-base);
  }
  .social-icons {
    width: 100%;
    justify-content: center;
  }

  .social-icons i {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .footer-nav-row {
    gap: var(--spacing-xs);
  }

  .social-icons {
    gap: var(--spacing-sm);
  }
}

/* why section  */

/* Utility Classes */
.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.p-3 {
  padding: var(--spacing-base);
}

.grid-cols-1 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  flex: 1;
}

/*************** Why Section ***************/
.why-section {
  padding: 80px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.why-content {
  animation: fadeIn 0.8s ease-out;
}
.why-section-col-1 {
  margin-top: 180px;
}
.why-section-col-3 {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.why-content h3 {
  font-size: var(--fs-2xl);
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: bold;
  width: 100%;
}

.why-content p {
  font-size: var(--fs-xl);
  color: var(--color-text-light);
  line-height: 1.7;
  /* margin-bottom: var(--spacing-lg); */
}

/* Three Column Layout */
.why-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
  /* margin-top: 60px; */
}

.why-layout > * {
  flex: 1;
  min-width: 0;
}

/* Feature Card */
.feature-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-base);
  box-shadow: 0 4px 12px var(--color-shadow);
  border: 1px solid var(--color-primary-dark);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  /* justify-content: center; */
  gap: 10px;
  height: 180px;
  animation: slideUp 0.6s ease-out backwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
  width: 90%;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--color-primary-light);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-img {
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Image Placeholder */
.feature-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-primary-light),
    var(--color-primary)
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

h3.feature-title {
  font-size: var(--fs-lg);
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-xs);
  font-weight: bold;
  line-height: 1.4;
  margin-top: 4px;
}

p.feature-description {
  font-size: var(--fs-sm);
  color: var(--color-text);
  line-height: 1.6;
  flex-grow: 1;
}

/* Middle Image Container */
.feature-middle-img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: end;
  justify-content: center;
  animation: zoomIn 1s ease-out;
}

.feature-middle-img img {
  width: 200%;
  height: auto;
  filter: drop-shadow(0 10px 30px #8000004b);
  animation: float 3s ease-in-out infinite;
  margin-top: 100px;
}
/* modal */

.modal-dialog {
  max-width: 720px;
}

/* Remove default borders */
.modal-header,
.modal-footer {
  border: none;
}
.modal-header .btn-close {
  border: 1px solid gray;
  border-radius: 50%;
  font-size: 8px;
}
/* Modal body */
.modal-body {
  text-align: center;
  direction: rtl;
  padding: 24px 32px;
}

/* Image */
.modal-body img {
  max-width: 100%;
  margin-bottom: 16px;
}

/* Title */
.modal-body h4 {
  color: var(--color-primary-dark);
  font-weight: 800;
  margin-bottom: 12px;
}

/* Description */
.modal-body > p {
  font-size: var(--fs-lg);
  color: var(--color-text);
  word-spacing: 1px;
  line-height: 1.9;
  padding: 24px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 24px;
  text-align: start;
}

/* Advantages section */
.adv-section {
  background-color: var(--color-border-light);
  padding: 20px;
  border-radius: 16px;
  text-align: right;
}

/* Section title */
.adv-section h5 {
  font-weight: 700;
  margin-bottom: 24px;
}

/* Advantage item */
.adv-card {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  align-items: flex-start;
}

/* Icon */
.adv-card i {
  color: var(--color-primary-dark);
  font-size: 18px;
  margin-top: 4px;
}

/* Text */
.adv-card h6 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: var(--fs-sm);
}

.adv-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin: 0;
}

/* Footer button */
.modal-footer {
  padding: 0 32px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-footer .btn {
  width: 100%;
  padding: 12px;
  font-weight: 700;
  border-radius: 24px;
}
.model-footer-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.foot-title {
  color: var(--color-text-light);
}
.contact-us-title {
  color: var(--color-primary-dark);
  text-decoration: none;
  cursor: pointer;
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .why-layout {
    flex-direction: column;
  }
  .feature-card:nth-child(1) {
    animation-delay: 0.1s;
    width: 100%;
  }

  .feature-card:nth-child(2) {
    animation-delay: 0.2s;
    width: 100%;
  }

  .feature-card:nth-child(3) {
    animation-delay: 0.3s;
    width: 100%;
  }

  .feature-card {
    height: 150px;
  }
  .grid-cols-1 {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .feature-middle-img {
    order: -1;
    margin-bottom: var(--spacing-lg);
  }
  .feature-middle-img img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 60px 15px;
  }

  .why-content h3 {
    font-size: 1.5rem;
  }

  .why-content > p {
    font-size: var(--fs-lg);
  }

  .feature-img {
    /* min-width: 100px;
    max-width: 100px; */
    max-height: 160px;
  }

  h3.feature-title {
    font-size: var(--fs-lg);
  }

  p.feature-description {
    font-size: var(--fs-sm);
  }

  .middle-placeholder {
    height: 400px;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .why-layout {
    gap: var(--spacing-base);
  }

  .grid-cols-1 {
    gap: var(--spacing-base);
  }
}
.social-anchors{
  text-decoration: none;
}
