/* الخطوط والألوان الأساسية */
html {
  scroll-behavior: smooth;
}

:root {
  --navy: #1e3d59;
  --turquoise: #00c6ff;
  --sand: #f5f0e6;
  --white: #ffffff;
  --font: 'Rubik', sans-serif;
  --dark-blue: #1e3d59;
}

body {
  direction: rtl;
  margin: 0;
  font-family: var(--font);
  background-color: var(--sand);
  color: var(--white);
}

.logo {
  width: 120px;
  height: 80px;
  background-image: url("/assets/white-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center; /* ← تموضع داخلي */
  display: block;
  margin: 0; /* ← خليه ملاصق لليمين */
}

.lang-switch a {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  color: #00c6ff;
  font-weight: 600;
  text-decoration: none;
  transition: none;
}

.lang-switch a:hover {
  color: #00c6ff;
  text-decoration: underline; /* أو احذفه إن لم ترد سطر */
  border: none;
  background: none;
}


/* ✅ على الشاشات الصغيرة مثل الجوال */
@media (max-width: 768px) {
  .logo img {
    height: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5b;
}
@media screen and (max-width: 768px) {
  .whatsapp-float {
    display: flex !important;
  }
}



/* --- Navbar Base --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 15px 0;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background-color: var(--navy);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  direction: rtl;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: var(--turquoise);
}

/* --- Hamburger Menu Button --- */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
}

/* --- Mobile Styles --- */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: var(--navy);
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}


/* الهيرو */
.hero {
  height: 100vh;
  background: url('background.webp') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(30, 61, 89, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
  min-height: 250px; /* ✅ حجز مساحة لتفادي CLS */
  overflow: hidden;    /* ✅ منع تغييرات مفاجئة */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-content {
  min-height: 300px; /* احجز مساحة حتى قبل الظهور */
  opacity: 0;
  filter: blur(5px);
  transition: opacity 0.6s ease, filter 0.6s ease;
}

.hero-content.visible {
  opacity: 1;
  filter: blur(0);
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
  word-break: break-word;
}

.hero-content h1 span {
  color: var(--turquoise);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
  word-break: break-word;
}

.btn {
  background: var(--turquoise);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #00b0e5;
}



/* الأنميشن */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}



/* قسم خدماتنا */


.services-section {
  padding: 80px 20px; /* ← هامش جانبي */
  background-color: #f5f0e6;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1e3d59;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #f8f5ed;
  border-radius: 16px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid transparent;

  /* توسيط المحتوى */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.service-card:hover {
  transform: translateY(-6px);
  border-bottom: 3px solid #00c6ff;
  box-shadow: 0 10px 25px rgba(0, 198, 255, 0.1);
}
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card-link:hover .service-card {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.service-card .icon {
  margin-bottom: 20px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.service-card .icon img {
  height: 100%;
  filter: brightness(0) saturate(100%) invert(13%) sepia(22%) saturate(1450%) hue-rotate(165deg) brightness(92%) contrast(90%);
  transition: transform 0.3s ease;
}

.service-card:hover .icon img {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1e3d59;
}

.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

/*الوصف اللي تحت خدماتنا */
.section-title,
.about-content h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0;    /* ← إزالة المسافة تحت الكلمة */
  margin-bottom: 10px;  /* ← تقليل المسافة مع ما تحتها */
}


.section-title::after,
.about-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--turquoise);
  border-radius: 3px;
  margin: 8px auto 0 auto; /* ← التوسيط */
}


.section-description {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 17px;
  line-height: 1.9;
  color: #333;
  text-align: center;
}

/*من نحن*/
.about-us-section {
  background: #fdfaf4;
  padding: 80px 0;
  direction: rtl;
}

.about-us-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 0 20px;
}

/* الصور */
.about-gallery {
  position: relative;
  width: 350px;
  min-width: 300px;
  height: 450px;
}

.about-gallery .about-img {
  position: absolute;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.about-gallery .img1 {
  top: 0;
  left: 0;
  z-index: 2;
  transform: rotate(-3deg);
}

.about-gallery .img2 {
  bottom: 0;
  left: 30px;
  z-index: 1;
  transform: rotate(5deg);
}

.about-gallery .about-img:hover {
  transform: scale(1.03) rotate(0deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* النص */
.about-content {
  flex: 1;
  max-width: 600px;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1e3d59;
  font-weight: bold;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}



/*رسالة المدير*/
/* قسم رسالة المؤسس */
.founder-message {
  position: relative;
  background-color: #f5f0e6;
  padding: 100px 20px;
  overflow: hidden; /* عشان الطبقة ما تطلع برا */
}

.founder-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/patterns/arabesque.webp');
  background-repeat: repeat;
  background-size: 250px;
  opacity: 0.15; /* ← تحكم في شفافية الزخرفة */
  z-index: 0;
}

.founder-message > * {
  position: relative;
  z-index: 1; /* يخلي النص والصورة فوق الزخرفة */
}



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

.message-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

/* صورة المؤسس مع الفريم */
.founder-image-wrapper {
  position: relative;
  width: 350px;
  height: 440px;
  flex-shrink: 0;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
  position: relative;
}

/* فريم ضلعين */
.frame-overlay {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border-top: 5px solid #1e3d59;
  border-left: 5px solid #1e3d59;
  border-radius: 18px;
  z-index: 1;
}

.founder-text {
  flex: 1;
  color: #1e3d59;
}

.founder-text h2 {
  font-size: 34px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  color: #1e3d59;
}

.section-underline {
  display: block;
  width: 90px;
  height: 3px;
  background-color: #e52f3c;
  margin-bottom: 25px;
}

.founder-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.signature {
  font-weight: bold;
  color: #0d6b6b;
  font-size: 19px;
  margin-top: 15px;
}

/*رؤيتنا--------------------------------------------*/



.vision-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vision-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}

.vision-icon {
  background-color: rgba(245, 240, 230, 0.1); /* رملي شفاف */
  color: #00c6ff; /* التركواز */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.vision-content h3 {
  color: #00c6ff;
  margin-bottom: 10px;
  font-size: 24px;
}

.vision-content p {
  margin: 0;
  font-size: 18px;
  color: #f5f0e6;
}
.vision-section {
  background-color: #1e3d59;
  color: #f5f0e6;
  padding: 80px 0;
  direction: rtl;
  position: relative; /* ضروري لوضع الزخرفة داخل القسم */
  overflow: hidden;   /* لإخفاء أي تجاوز من العنصر الزخرفي */
}

/* 🌟 العنصر الزخرفي */
.decorative-shape {
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    width: 500px;
    height: 500px;
    background: url('ART-32-optimized.webp') no-repeat center center;
    background-size: contain;
    opacity: 0.15; /* ← زيادة خفيفة لجعلها مرئية أكثر */
    pointer-events: none;
    z-index: 1;

    /* تحسين التدرج اللوني */
    filter: brightness(0) saturate(100%) sepia(0%) hue-rotate(180deg)
            invert(14%) sepia(95%) saturate(3167%) hue-rotate(169deg)
            brightness(96%) contrast(89%);
    
    /* دعم الأداء */
    image-rendering: optimizeQuality;
    will-change: transform;
}


/* سكشن لماذا نحن */
.why-us {
  background-color: #f5f0e6;
  padding: 100px 20px;
  text-align: center;
}

.why-us h2 {
  color: #1e3d59;
  font-size: 36px;
  margin-bottom: 10px;
}

/* الخط الأزرق تحت العنوان */
.why-us .section-divider {
  width: 80px;
  height: 4px;
  margin: 0 auto 50px;
  background-color: #00c6ff;
  border-radius: 2px;
}

/* الشبكة */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

/* كل بطاقة */
.feature-box {
  padding: 0 20px;
}

/* الأيقونة */
.feature-icon {
  font-size: 50px; /* حجم كبير واضح */
  color: #00c6ff; /* اللون التركواز */
  margin-bottom: 20px;
}

/* العناوين */
.feature-box h3 {
  color: #1e3d59;
  font-size: 22px;
  margin-bottom: 10px;
}

/* النصوص */
.feature-box p {
  color: #1e3d59;
  font-size: 16px;
  line-height: 1.8;
}

.feature-icon:hover {
  transform: scale(1.2);
  transition: transform 0.3s ease;
  color: #1e3d59; /* ممكن تركواز لو بدك */
}
.feature-box:hover .feature-icon {
  color: #00c6ff;
}
.typewriter-clean {
  font-size: 36px;
  font-weight: bold;
  color: #1e3d59;
  text-align: center;
  min-height: 60px; /* تمنع تحرك العناصر عند حذف النص */
}

.brand {
  color: #006690; /* أغمق قليلاً */
  background-color: #e8faff;
  padding: 3px 6px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 600;
  text-shadow: 0 0 1px #fff, 0 1px 3px rgba(0,0,0,0.5);
}


/* سكشن آراء العملاء - غامق بهوية شِراع */
.testimonials-section {
  padding: 80px 0;
  background-color: #1e3d59;
  text-align: center;
  position: relative; /* ضروري للزخرفة */
  z-index: 1;
}

/* الزخرفة الخلفية */
.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/patterns/arabesque.webp');
  background-repeat: repeat;
  background-size: 220px;
  opacity: 0.4; /* ← خفيفة جدًا حتى ما تغلب */
  z-index: 0;
}

/* تأكد إن المحتوى فوق الزخرفة */
.testimonials-section > * {
  position: relative;
  z-index: 2;
}


.testimonials-section .section-title {
  font-family: 'Rubik', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.testimonials-section .highlight {
  color: #00c6ff;
}

.testimonials-section .section-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  color: #d2d2d2;
  margin-bottom: 50px;
}

/* البطاقة الرئيسية */
.testimonial-box {
  background: #f5f0e6;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: 0 auto 40px;
  position: relative;
}

.testimonial-box .quote-icon {
  font-size: 60px;
  color: #00c6ff;
  position: absolute;
  top: -30px;
  left: 30px;
  opacity: 0.2;
}

.testimonial-text {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-style: italic;
  color: #1e3d59;
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.client-info h4 {
  color: #00c6ff;
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.client-info p {
  color: #1e3d59;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  margin: 3;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #00c6ff;
  object-fit: cover;
}

/* زر المودال */
.testimonials-section .btn {
  font-family: 'Rubik', sans-serif;
  background-color: #00c6ff;
  color: #1e3d59;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.testimonials-section .btn:hover {
  background-color: #ffffff;
  color: #1e3d59;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: none;  /* ← نخفيه افتراضيًا */
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 61, 89, 0.7);
  backdrop-filter: blur(8px);
  padding: 20px;
  box-sizing: border-box;
  z-index: 999;
}




.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  width: auto;
  max-width: 600px;
  box-sizing: border-box;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin: 180px auto 0 auto; /* ↓ الهامش فقط من الأعلى */
}

@media (max-width: 600px) {
  .modal-content {
    padding: 20px 15px;
    max-width: 95vw;
    margin: 120px auto 0 auto;
  }

  .modal-content h3 {
    font-size: 18px;
  }

  .modal-content p {
    font-size: 14px;
  }

  .close-btn {
    font-size: 24px;
    top: 10px;
    right: 10px;
  }
}


/* زر الإغلاق */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}

.close-btn:hover {
  color: #00c6ff;
}

/* النصوص */
.modal-content h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 10px;
}

.modal-content p {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  color: #d2d2d2;
  line-height: 1.6;
}
.modal-box {
  border-bottom: 1px solid #ccc; /* لون رمادي خفيف */
  padding-bottom: 20px;
  margin-bottom: 20px;
}

/* إزالة الخط من آخر بطاقة */
.modal-box:last-child {
  border-bottom: none;
  margin-bottom: 0;
}


/* شركاء النجاح */ 
.partners-section {
  padding: 80px 0;
  background-color: #f5f0e6;
  text-align: center;
}

.partners-section .section-title {
  font-family: 'Rubik', sans-serif;
  font-size: 32px;
  color: #1e3d59;
  margin-bottom: 10px;
}

.partners-section .section-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.partners-section .logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
  padding: 0 20px;
}

.partners-section .logos-grid img {
  max-width: 120px;
  height: auto;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%) brightness(0) saturate(100%) sepia(0%) hue-rotate(180deg)
          invert(19%) sepia(18%) saturate(1516%) hue-rotate(174deg) brightness(91%) contrast(91%);
  margin: 10px;
}

.partners-section .logos-grid img:hover {
  transform: scale(1.15);
  opacity: 1;
  filter: none;
}
/* اتصل بنا */

/* سكشن تواصل معنا */
.contact-section {
  background-color: var(--navy);
  color: var(--white);
  padding: 80px 20px;
  position: relative;
  text-align: center;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/patterns/arabesque.webp');
  background-repeat: repeat;
  background-size: 220px;
  opacity: 0.25;
  z-index: 0;
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.contact-section p {
  font-size: 18px;
  color: #d2d2d2;
  margin-bottom: 50px;
}

/* ✅ فورم موحد ومحسّن للموبايل */
.contact-form {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
}

/* الحقول */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 16px;
  color: #1e3d59;
  background-color: #f5f0e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 6px 18px rgba(0, 198, 255, 0.15);
  transform: translateY(-2px);
}

/* مساحة الرسالة */
.contact-form textarea {
  resize: none;
  min-height: 140px;
}

/* زر الإرسال */
.contact-form button {
  background-color: var(--turquoise);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font, 'Rubik', sans-serif);
}

.contact-form button:hover {
  background-color: #00b0e5;
  transform: translateY(-2px);
}

.contact-form button i {
  font-size: 16px;
}

/* ✅ تحسين العرض على الموبايل */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }

  .contact-section h2 {
    font-size: 28px;
  }

  .contact-section p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .contact-form {
    gap: 16px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 15px;
    padding: 12px 14px;
  }

  .contact-form button {
    font-size: 15px;
    padding: 12px 28px;
  }
}

/*  الفوتر */
.footer {
  background: linear-gradient(to right, #1e3d59, #00c6ff);
  color: #ffffff;
  padding: 60px 0 30px;
  font-family: 'Rubik', sans-serif;
}

.footer .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  flex: 1 1 400px;
}

.footer-logo img {
  width: 260px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-logo p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #f5f0e6;
}


.social-icons a {
  color: #ffffff;
  margin-left: 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f5f0e6;
}

.footer-links,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #f5f0e6;
}

.footer-links a {
  color: #f5f0e6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact i {
  margin-left: 10px;
  color: #ffffff;
  width: 18px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #f5f0e6;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

