/* ==========================================
   LAVANDANIA FOOD INDUSTRIES - OPTIMIZED STYLES
   Premium Arabic RTL Design with Earthy Green Theme
   Performance Optimized | SEO Ready | Accessible
   ========================================== */

/* ROOT VARIABLES */
:root {
  --earthy-green: #3a5a3a;
  --soft-cream: #fff9ef;
  --golden-sand: #d9c5a6;
  --dark-olive: #2c4a2c;
  --card-radius: 1.5rem;
  --transition-smooth: all 0.25s ease-in-out;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 35px rgba(58, 90, 58, 0.15);
}

/* PERFORMANCE OPTIMIZATION - will-change for animated elements */
.navbar,
.floating-icons,
.card-premium,
.hero-slide {
  will-change: transform;
}

/* GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', 'Amiri', sans-serif;
  background-color: var(--soft-cream);
  color: #1e2e1e;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
.arabic-title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ACCESSIBILITY - Focus styles */
*:focus-visible {
  outline: 3px solid var(--earthy-green);
  outline-offset: 3px;
}

/* Skip to main content link for screen readers */
.skip-to-main {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: var(--earthy-green);
  color: white;
  text-decoration: none;
}

.skip-to-main:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
}

/* UTILITY CLASSES */
.bg-earthy {
  background-color: var(--earthy-green);
}

.text-earthy {
  color: var(--earthy-green);
}

.text-content {
  color: #2a3a2a;
}

/* BUTTON STYLES */
.btn-earthy {
  background-color: var(--earthy-green);
  color: white;
  border-radius: 50px;
  padding: 0.7rem 2rem;
  font-weight: 600;
  border: none;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 16px rgba(44, 74, 44, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-earthy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-earthy:hover::before {
  width: 300px;
  height: 300px;
}

.btn-earthy:hover {
  background-color: #1e3a1e;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(44, 74, 44, 0.25);
}

.btn-outline-earthy {
  border: 2px solid var(--earthy-green);
  color: var(--earthy-green);
  border-radius: 50px;
  padding: 0.5rem 1.8rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  background: transparent;
}

.btn-outline-earthy:hover {
  background-color: var(--earthy-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* NAVBAR STYLES */
.navbar {
  background-color: rgba(255, 249, 239, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.8rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(58, 90, 58, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 249, 239, 0.98);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1.5rem;
}

.navbar .nav-link {
  font-weight: 600;
  color: #1e2e1e;
  margin: 0 0.25rem;
  padding: 0.6rem 1rem;
  border-radius: 40px;
  transition: var(--transition-smooth);
  font-size: 1.05rem;
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background: var(--earthy-green);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 60%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  background-color: rgba(58, 90, 58, 0.08);
  color: var(--earthy-green);
}

/* LOGO STYLES */
.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.navbar-logo {
  max-height: 60px;
  height: 100%;
  width: auto;
}

.logo-brand:hover .navbar-logo {
  transform: scale(1.1);
  transition: transform 0.6s ease;
}

.lang-toggle {
  background: transparent;
  border: 1.5px solid var(--earthy-green);
  border-radius: 40px;
  padding: 0.35rem 1rem;
  font-weight: 700;
  color: var(--earthy-green);
  transition: 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.lang-toggle:hover {
  background: var(--earthy-green);
  color: white;
  transform: scale(1.05);
}

.navbar-expand-lg .navbar-nav {
  margin: auto;
}

/* FLOATING ICONS */
.floating-icons {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-icon {
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  border: 2px solid white;
  text-decoration: none;
  animation: float 3s ease-in-out infinite;
}

.floating-icon.call-icon {
  background-color: var(--earthy-green);
  animation-delay: 0.5s;
}

.floating-icon:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 35px rgba(58, 90, 58, 0.4);
  color: white;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* HERO SLIDER */
.hero-slide {
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 6rem 3rem;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to left, rgba(44, 74, 44, 0.75), rgba(44, 74, 44, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-title {
  font-size: 3.7rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  font-family: 'Amiri', 'Cairo', serif;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
  background-color: white;
  width: 30px;
  border-radius: 6px;
}

/* ABOUT HERO BANNER */
.about-hero {
  background: linear-gradient(135deg, var(--earthy-green) 0%, var(--dark-olive) 100%);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

/* Timeline Year Badge */
.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--golden-sand), #c9b596);
  color: var(--dark-olive);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(217, 197, 166, 0.4);
}

/* Mission Cards */
.mission-card {
  background: white;
  padding: 3rem;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  height: 100%;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--earthy-green), var(--dark-olive));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
}

/* CARD STYLES */
.card-premium {
  border: none;
  border-radius: var(--card-radius);
  background-color: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 100%;
}

.card-premium:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
}

.card-img-top {
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid var(--golden-sand);
  transition: transform 0.5s ease;
}

.card-premium:hover .card-img-top {
  transform: scale(1.1);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.card-premium:hover .card-title {
  color: var(--dark-olive);
}

/* SECTION TITLE */
.section-title {
  position: relative;
  font-weight: 800;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #1e3a1e;
}

.section-title span {
  background: linear-gradient(145deg, var(--earthy-green), #1e3a1e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 90px;
  height: 4px;
  background: var(--golden-sand);
  margin-top: 0.7rem;
  border-radius: 4px;
  animation: expandWidth 1s ease-out;
}

@keyframes expandWidth {
  from {
    width: 0;
  }

  to {
    width: 90px;
  }
}

/* FEATURE ICONS */
.feature-icon {
  font-size: 2.4rem;
  color: var(--earthy-green);
  background: rgba(58, 90, 58, 0.1);
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: all 0.4s ease;
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--earthy-green);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.feature-icon:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

.feature-icon:hover {
  background: var(--earthy-green);
  color: white;
  transform: rotate(360deg) scale(1.1);
}

/* IMAGE WRAPPER */
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.image-wrapper img {
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(105deg, #f4efe6, #faf3e5);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(58, 90, 58, 0.05) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.cta-title {
  color: #1e3a1e;
}

.pulse-animation {
  animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 0 rgba(58, 90, 58, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(58, 90, 58, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(58, 90, 58, 0);
  }
}

/* BADGES */
.badge-animate {
  transition: all 0.3s ease;
  cursor: pointer;
}

.badge-animate:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(58, 90, 58, 0.3);
}

/* FORM STYLES */
.form-control,
.form-select {
  border-radius: 1rem;
  border: 1px solid #e2dccd;
  padding: 0.8rem 1.2rem;
  background-color: white;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--earthy-green);
  box-shadow: 0 0 0 0.25rem rgba(58, 90, 58, 0.15);
  transform: translateY(-2px);
}

/* CONTACT INFO */
.contact-info p {
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 10px;
}

.contact-info p:hover {
  background: rgba(58, 90, 58, 0.05);
  transform: translateX(-5px);
}

.social-icons a {
  transition: all 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.2);
  color: var(--dark-olive) !important;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  background: linear-gradient(135deg, #e9e2d3 0%, #f0e9d9 100%);
  height: 220px;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a5a3a;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(58, 90, 58, 0.03) 10px,
      rgba(58, 90, 58, 0.03) 20px);
  animation: mapPattern 20s linear infinite;
}

@keyframes mapPattern {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

/* SCROLL TO TOP BUTTON */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: var(--earthy-green);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
  box-shadow: 0 5px 15px rgba(58, 90, 58, 0.3);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--dark-olive);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(58, 90, 58, 0.4);
}

/* FOOTER */
.footer {
  background-color: #263f26;
  color: #faf3e0;
  border-top: 6px solid #d9c5a6;
}

.footer a {
  color: #f0e6d2;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer a:has(.fa-phone) {
  direction: ltr;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer a:has(.fa-phone) i {
  order: 1;
}


.footer a:hover {
  color: white;
  transform: translateX(-3px);
}

.footer-social a {
  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-5px) scale(1.2);
  color: var(--golden-sand) !important;
}

/* RTL POLISH */
.dropdown-menu {
  text-align: right;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-slide {
    padding: 4rem 2rem;
    min-height: 400px;
  }

  .about-hero {
    padding: 4rem 1.5rem 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .navbar .nav-link {
    padding: 0.4rem 0.8rem;
  }

  .navbar-logo {
    max-height: 50px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .floating-icons {
    bottom: 20px;
    right: 15px;
  }

  .floating-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .hero-slide {
    padding: 3rem 1.5rem;
    min-height: 350px;
  }

  .card-img-top {
    height: 180px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .about-hero {
    padding: 3rem 1rem 2.5rem;
  }

  .mission-card {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .cta-section .display-4 {
    font-size: 2rem;
  }

  .cta-section .fs-3 {
    font-size: 1.2rem !important;
  }

  .timeline-year {
    font-size: 1.2rem;
  }
}

/* LOADING ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body {
  animation: fadeIn 0.5s ease-in;
}

/* PRINT STYLES */
@media print {

  .navbar,
  .floating-icons,
  .scroll-to-top,
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
}

/* PREFERS REDUCED MOTION - Accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* HIGH CONTRAST MODE - Accessibility */
@media (prefers-contrast: high) {
  .btn-earthy {
    border: 2px solid currentColor;
  }

  .navbar .nav-link {
    border: 1px solid transparent;
  }

  .navbar .nav-link:focus {
    border-color: currentColor;
  }
}

/* HERO SMALL - About page header */
.about-hero {
  background-size: cover !important;
  background-position: center !important;
  padding: 6rem 0;
  margin-bottom: 2rem;
}

/* ==========================================
       CONTACT PAGE - EXACT CLASS NAMES PROVIDED
       Styled with Lavandania Earthy Green Theme
       ========================================== */

.contact-page6 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-page6 {
  font-family: 'Cairo', 'Amiri', sans-serif;
  direction: rtl;
}

.contact-page6-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page6-form {
  width: 100%;
  max-width: 1200px;
  background-color: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}

/* Contact Info Section - Right Side (RTL) */
.contact-page6-contact-info {
  padding: 2.5rem;
  position: relative;
  background: linear-gradient(145deg, #fff, #faf3e5);
}

.contact-page6-contact-info .contact-page6-title {
  color: var(--earthy-green);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Amiri', serif;
}

.contact-page6-text {
  color: #2a3a2a;
  margin: 1.5rem 0 2rem 0;
  font-size: 1.1rem;
}

.contact-page6-info {
  margin: 2rem 0;
}

.contact-page6-social-information {
  display: flex;
  align-items: center;
  color: #1e2e1e;
  margin: 1rem 0;
  font-size: 1rem;
  transition: var(--transition-smooth);
  padding: 0.5rem;
  border-radius: 10px;
  text-decoration: none;
}

.contact-page6-social-information:hover {
  background: rgba(58, 90, 58, 0.05);
  transform: translateX(-5px);
}

.contact-page6-social-information i {
  font-size: 1.5rem;
  margin-left: 1rem;
  color: var(--earthy-green);
  width: 30px;
  text-align: center;
}

.contact-page6-social-information p {
  margin-bottom: 0;
  color: #1e2e1e;
}

a .contact-page6-social-information p {
  color: var(--earthy-green);
  font-weight: 600;
  direction: ltr;
}

.contact-page6-social-media {
  padding: 2rem 0 0 0;
}

.contact-page6-social-media p {
  color: #1e2e1e;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-page6-social-icons {
  display: flex;
  margin-top: 0.5rem;
  gap: 0.8rem;
}

.contact-page6-social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--earthy-green), var(--dark-olive));
  color: #fff;
  text-align: center;
  line-height: 45px;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.contact-page6-social-icons a:hover {
  background: var(--dark-olive);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(58, 90, 58, 0.3);
}

/* Contact Form Section - Left Side (RTL) */
.contact-page6-contact-info-form {
  background-color: var(--earthy-green);
  position: relative;
  background: linear-gradient(145deg, var(--earthy-green), var(--dark-olive));
}

.contact-page6-circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, rgba(255, 255, 255, 0.1));
  position: absolute;
}

.contact-page6-circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  left: -40px;
  /* Changed for RTL */
}

.contact-page6-circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  left: 30px;
  /* Changed for RTL */
}

.contact-page6-contact-info-form::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: var(--dark-olive);
  transform: rotate(45deg);
  bottom: 66px;
  right: -13px;
  /* Changed for RTL */
}

.contact-page6-contact-info-form form {
  padding: 2.5rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.contact-page6-contact-info-form .contact-page6-title {
  color: #fff;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Amiri', serif;
}

.contact-page6-social-input-containers {
  position: relative;
  margin: 1.5rem 0;
}

.contact-page6-input {
  width: 100%;
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-radius: 12px;
  transition: 0.3s;
  font-family: 'Cairo', sans-serif;
}

.contact-page6-input:focus {
  border-color: var(--golden-sand);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(217, 197, 166, 0.1);
}

.contact-page6-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-page6-social-input-containers.textarea textarea {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 12px;
  resize: none;
  overflow-y: auto;
}

.contact-page6-social-input-containers label {
  position: absolute;
  top: 50%;
  right: 15px;
  /* Changed for RTL */
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
  background: transparent;
  padding: 0 5px;
  font-weight: 500;
}

.contact-page6-social-input-containers.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.contact-page6-input:focus~label,
.contact-page6-input:not(:placeholder-shown)~label {
  top: 0;
  right: 20px;
  font-size: 0.8rem;
  background: var(--earthy-green);
  padding: 0 8px;
  color: var(--golden-sand);
  border-radius: 10px;
}

.contact-page6-btn {
  padding: 0.8rem 2rem;
  background-color: #fff;
  border: 2px solid #fff;
  font-size: 1.1rem;
  color: var(--earthy-green);
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 700;
  width: 100%;
  margin-top: 1rem;
  font-family: 'Cairo', sans-serif;
}

.contact-page6-btn:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Map Section */
.map {
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

a {
  text-decoration: none;
}

img,
.navbar-logo,
.card-img-top,
.image-wrapper img {
  content-visibility: auto;
}

.navbar-logo {
  width: auto;
  height: 60px;
}

.about-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Preserve exact original dimensions, no new visual properties */
.image-wrapper img[style*="width: 550px; height: 500px;"] {
  aspect-ratio: 550/500;
  object-fit: cover;
}

img,
.card-img-top,
.hero-slide {
  content-visibility: auto;
}

.navbar-logo {
  width: auto;
  height: 60px;
}

.hero-slide {
  background-size: cover;
  background-position: center;
}

img,
.navbar-logo,
.contact-page6-social-information i,
.map iframe {
  content-visibility: auto;
}

.navbar-logo {
  width: auto;
  height: 60px;
}

.about-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* Preserve aspect ratio for map, no visual change */
.map {
  position: relative;
  width: 100%;
}

img,
.navbar-logo,
.card-img-top {
  content-visibility: auto;
}

.navbar-logo {
  width: auto;
  height: 60px;
}

.about-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-img-wrapper {
  width: 100%;
  overflow: hidden;
}

.card-img-top {
  width: 100%;
  height: auto;
  aspect-ratio: 600/400;
  object-fit: cover;
}

.badge.bg-earthy {
  display: inline-block;
}