* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
.logo-text {
  font-family: "Playfair Display", serif;
}

body {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  color: #2c3e50;
  overflow-x: hidden;
}

/* ========================================
   NAVIGATION STYLES
   ======================================== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #66ccff;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #66ccff;
  transition: width 0.3s ease;
}

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

.nav-links a:hover {
  color: #66ccff;
}

.language-switcher {
  display: flex;
  align-items: center;
}

.language-switcher button {
  background: transparent;
  border: 2px solid #66ccff;
  color: #66ccff;
  padding: 8px 15px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.language-switcher button:hover {
  background: #66ccff;
  color: white;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #66ccff;
  z-index: 1001;
}

/* ========================================
   MOBILE MENU STYLES
   ======================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 30px 30px;
  overflow-y: auto;
  /* Default: Slide from right (LTR) */
  right: -100%;
  transform: translateX(0);
}

/* When in Arabic mode, slide from left */
html[dir="rtl"] .mobile-menu {
  right: auto;
  left: -100%;
}

.mobile-menu.active {
  /* Active state based on direction */
  right: 0;
}

html[dir="rtl"] .mobile-menu.active {
  right: auto;
  left: 0;
}

.mobile-nav-links {
  list-style: none;
  margin-bottom: 30px;
}

.mobile-nav-links li {
  margin: 20px 0;
  opacity: 0;
  /* Default: Slide from right */
  transform: translateX(20px);
  transition: all 0.4s ease;
}

html[dir="rtl"] .mobile-nav-links li {
  /* In RTL: Slide from left */
  transform: translateX(-20px);
}

.mobile-menu.active .mobile-nav-links li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-links li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-nav-links li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-nav-links li:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-nav-links li:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  color: #66ccff;
  padding-left: 10px;
}

html[dir="rtl"] .mobile-nav-links a:hover {
  padding-right: 10px;
  padding-left: 0;
}

.mobile-language-switcher {
  margin-top: auto;
  padding: 20px 0;
  text-align: center;
}

.mobile-language-switcher button {
  background: transparent;
  border: 2px solid #66ccff;
  color: #66ccff;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.mobile-language-switcher button:hover {
  background: #66ccff;
  color: white;
}

/* ========================================
   OVERLAY (FOR MOBILE MENU)
   ======================================== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  padding-top: 80px;
  position: relative;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #66ccff;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #34495e;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 2rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #66ccff;
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px);
  background: #33bbff;
}

.btn {
  display: inline-block;
  background: #66ccff;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #66ccff;
}

.btn:hover {
  background: transparent;
  color: #66ccff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(102, 204, 255, 0.3);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.burger-container {
  position: relative;
  width: 500px;
  height: 500px;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
}

.burger-img {
  width: 100%;
  height: 100%;
  background: url("/Untitled\ Project-12.jpg") no-repeat center center;
  background-size: contain;
  transform: translateZ(30px);
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.2));
  border-radius: 30px;
}

.burger-shadow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 30px;
  background: rgba(102, 204, 255, 0.3);
  border-radius: 50%;
  filter: blur(10px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate3d(0.5, 1, 0, 5deg);
  }
  50% {
    transform: translateY(-20px) rotate3d(0.5, 1, 0, -5deg);
  }
}

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */
.decoration {
  position: absolute;
  z-index: -1;
  opacity: 0.15;
  color: #66ccff;
}

.decoration-1 {
  top: 10%;
  left: 5%;
  font-size: 5rem;
}

.decoration-2 {
  bottom: 20%;
  right: 10%;
  font-size: 4rem;
}

.decoration-3 {
  top: 50%;
  left: 15%;
  font-size: 3rem;
}

.decoration-4 {
  bottom: 15%;
  right: 20%;
  font-size: 3.5rem;
}

.decoration-5 {
  top: 25%;
  right: 15%;
  font-size: 4rem;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

@media (max-width: 1200px) {
  .burger-container {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 3rem;
  }

  .social-icons {
    justify-content: center;
  }

  .burger-container {
    width: 350px;
    height: 350px;
  }

  .nav-links,
  .language-switcher {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .burger-container {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

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

  .burger-container {
    width: 250px;
    height: 250px;
  }

  .mobile-menu {
    width: 85%;
  }
}

/* ========================================
   RTL SUPPORT (Arabic Language)
   ======================================== */
html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] .logo img {
  margin-right: 0;
  margin-left: 10px;
}

html[dir="rtl"] .nav-links {
  text-align: right;
}

/* ========================================
   About Resturant SECTION
   ======================================== */
/* About Section Styles */
.about-section {
  padding: 100px 5%;
  background: linear-gradient(to bottom, #ffffff 0%, #f7fbff 100%);
  position: relative;
  overflow: hidden;
}

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

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.divider-line {
  height: 2px;
  width: 50px;
  background: #66ccff;
}

.divider-icon {
  color: #66ccff;
  font-size: 1.2rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-gallery {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.image-frame:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

.image-frame:hover {
  opacity: 1;
}

.gallery-thumbnails {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumb:hover,
.thumb.active {
  opacity: 1;
  border-color: #66ccff;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.about-text > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #34495e;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.feature {
  text-align: center;
  padding: 25px 15px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(102, 204, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #66ccff;
  font-size: 1.5rem;
}

.feature h4 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.feature p {
  font-size: 0.95rem;
  color: #7f8c8d;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #66ccff;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 1rem;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 5%;
    margin-top: 30px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 25px;
  }

  .image-frame img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .gallery-thumbnails {
    justify-content: center;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }
}

/* Animation for stats counter */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Menu SECTION
   ======================================== */

/* Menu Section Styles */
.menu-section {
  padding: 100px 5%;
  background: linear-gradient(to bottom, #f7fbff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.divider-line {
  height: 2px;
  width: 50px;
  background: #66ccff;
}

.divider-icon {
  color: #66ccff;
  font-size: 1.2rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}

/* Menu Filter */
.menu-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 25px;
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 30px;
  color: #7f8c8d;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #66ccff;
  color: #66ccff;
}

.filter-btn.active {
  background: #66ccff;
  border-color: #66ccff;
  color: white;
}

/* Menu Items */
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.menu-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.item-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item:hover .item-image img {
  transform: scale(1.05);
}

.item-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #66ccff;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.item-badge.new {
  background: #ff6b6b;
}

.item-content {
  padding: 20px;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.item-header h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-right: 15px;
  font-family: "Playfair Display", serif;
}

.item-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #66ccff;
  white-space: nowrap;
}

.item-content p {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #f39c12;
  font-weight: 600;
}

.item-rating span:last-child {
  color: #95a5a6;
  font-size: 0.9rem;
  margin-left: 5px;
}

/* View All Button */
.view-all-container {
  text-align: center;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #66ccff;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #33bbff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(102, 204, 255, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .menu-items {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .menu-section {
    padding: 80px 5%;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .menu-items {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-filter {
    gap: 10px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .item-header {
    flex-direction: column;
    gap: 10px;
  }

  .item-price {
    align-self: flex-start;
  }

  .view-all-btn {
    padding: 12px 25px;
  }
}

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

.menu-item {
  animation: fadeIn 0.5s ease forwards;
}

.menu-item:nth-child(1) {
  animation-delay: 0.1s;
}
.menu-item:nth-child(2) {
  animation-delay: 0.2s;
}
.menu-item:nth-child(3) {
  animation-delay: 0.3s;
}
.menu-item:nth-child(4) {
  animation-delay: 0.4s;
}
.menu-item:nth-child(5) {
  animation-delay: 0.5s;
}
.menu-item:nth-child(6) {
  animation-delay: 0.6s;
}

/* ========================================
   Contact SECTION
   ======================================== */

/* Contact Section Styles */
.contact-section {
  padding: 120px 5%;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  position: relative;
  overflow: hidden;
}

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

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  color: #1a3a5f;
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #66ccff, transparent);
  border-radius: 2px;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.divider-line {
  height: 1px;
  width: 60px;
  background: #ddd;
  margin: 0 15px;
}

.divider-icon {
  color: #66ccff;
  font-size: 1.4rem;
}

.section-subtitle {
  color: #5a6b7c;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Content Layout */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Contact Info */
.contact-info h3 {
  font-size: 1.6rem;
  color: #1a3a5f;
  margin-bottom: 30px;
  font-family: "Playfair Display", serif;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.info-icon {
  color: #66ccff;
  font-size: 1.3rem;
  min-width: 36px;
  display: flex;
  align-items: center;
}

.info-details h4 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 6px;
}

.info-details p {
  color: #5a6b7c;
  font-size: 0.95rem;
  margin: 0;
}

.social-links h4 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #66ccff;
  color: white;
  border-radius: 50%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #33bbff;
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 30px;
  margin-top: -30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 1.6rem;
  color: #1a3a5f;
  margin-bottom: 25px;
  font-family: "Playfair Display", serif;
}

/* Form Group with Floating Labels */
.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 1rem;
  background: transparent;
  transition: all 0.3s ease;
  color: #2c3e50;
  z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #66ccff;
  outline: none;
}

.form-group label {
  position: absolute;
  top: 15px;
  inset-inline-start: 15px;
  color: #95a5a6;
  pointer-events: none;
  transition: all 0.3s ease;
  background: white;
  padding: 0 5px;
  font-size: 1rem;
}

/* Floating Label (when focused or filled) */
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  inset-inline-start: 10px;
  font-size: 0.8rem;
  color: #66ccff;
}

/* Error Message */
.error-message {
  font-size: 0.85rem;
  color: #e74c3c;
  margin-top: 6px;
  display: none;
}

.form-error {
  color: #e74c3c;
  font-size: 0.95rem;
  margin-top: 10px;
  background: #fdf2f2;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #fbc7c7;
}

.form-success {
  color: #27ae60;
  font-size: 0.95rem;
  margin-top: 10px;
  background: #f2fdf7;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #c7fbc7;
}

/* Submit Button */
.btn-primary {
  display: grid;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #66ccff;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #33bbff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(102, 204, 255, 0.3);
}

/* Map */
.map-container {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
  color: #7f8c8d;
}

.map-placeholder i {
  font-size: 3rem;
  color: #66ccff;
  margin-bottom: 15px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  min-width: auto;
  border: none;
  display: block;
  border-radius: 16px;
}

.map-placeholder h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

/* Responsive Design - Mobile View Only */
@media (max-width: 768px) {
  .contact-section {
    padding: 90px 5%;
  }

  .section-title h2 {
    font-size: 2.4rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .contact-info,
  .contact-form {
    text-align: center;
    padding: 20px;
  }

  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .info-details,
  .social-links {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .form-group {
    text-align: center;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .map-container {
    text-align: center;
  }
}

/* Desktop View (unchanged) */
@media (min-width: 769px) {
  .contact-info,
  .contact-form {
    text-align: left;
  }

  .info-item {
    justify-content: flex-start;
    text-align: left;
  }

  .info-details,
  .social-links {
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .form-group {
    text-align: left;
  }

  .btn-primary {
    width: auto;
    justify-content: flex-start;
  }
}

/* RTL Support */
html[dir="rtl"] .form-error,
html[dir="rtl"] .form-success,
html[dir="rtl"] .btn-primary,
html[dir="rtl"] .info-item,
html[dir="rtl"] .form-group,
html[dir="rtl"] .social-links {
  text-align: right;
}

html[dir="rtl"] .info-details,
html[dir="rtl"] .social-links,
html[dir="rtl"] .form-group {
  text-align: right;
}

html[dir="rtl"] .contact-info h3,
html[dir="rtl"] .contact-form h3 {
  text-align: right;
}

/* RTL Support for Mobile */
@media (max-width: 768px) {
  html[dir="rtl"] .info-item,
  html[dir="rtl"] .form-group,
  html[dir="rtl"] .social-links {
    text-align: center;
  }

  html[dir="rtl"] .info-details,
  html[dir="rtl"] .social-links,
  html[dir="rtl"] .form-group {
    text-align: center;
  }

  html[dir="rtl"] .contact-info h3,
  html[dir="rtl"] .contact-form h3 {
    text-align: center;
  }
}

/* ========================================
   Footer SECTION
   ======================================== */
/* Footer Section Styles */
.footer-section {
  background: linear-gradient(to bottom, #f7fbff 0%, #e6f2ff 100%);
  padding: 60px 5% 20px;
  color: #2c3e50;
  position: relative;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

/* Footer Brand */
.footer-brand {
  grid-column: 1 / 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #66ccff;
  font-family: "Playfair Display", serif;
}

.footer-description {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #66ccff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #33bbff;
  transform: translateY(-5px);
}

/* Footer Links */
.footer-links {
  grid-column: 2 / 3;
}

.footer-title {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  position: relative;
  padding-bottom: 12px;
  text-align: left;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 50px;
  height: 2.5px;
  background: #66ccff;
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 0;
}

.footer-title:hover::after,
.footer-title.active::after {
  width: 50px;
}

/* Footer Menu */
.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: #7f8c8d;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-inline-start: 15px;
  display: inline-block;
}

.footer-menu a::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #66ccff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: #66ccff;
  padding-inline-start: 20px;
}

.footer-menu a:hover::before {
  opacity: 1;
}

/* Footer Contact */
.footer-contact {
  grid-column: 3 / 4;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(102, 204, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #66ccff;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-details span {
  color: #7f8c8d;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Footer Newsletter */
.footer-newsletter {
  grid-column: 4 / 5;
}

.newsletter-description {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-form {
  position: relative;
}

.input-group {
  position: relative;
  display: flex;
}

.input-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e8e8e8;
  border-radius: 30px 0 0 30px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s ease;
  color: #2c3e50;
}

.input-group input:focus {
  border-color: #66ccff;
  outline: none;
}

.input-group label {
  position: absolute;
  top: 15px;
  inset-inline-start: 15px;
  color: #95a5a6;
  pointer-events: none;
  transition: all 0.3s ease;
  background: white;
  padding: 0 5px;
  font-size: 1rem;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  top: -10px;
  inset-inline-start: 10px;
  font-size: 0.8rem;
  color: #66ccff;
}

.input-group {
  position: relative;
  display: flex;
}

.input-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e8e8e8;
  border-radius: 30px 0 0 30px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s ease;
  color: #2c3e50;
}

/* RTL: Flip input radius in Arabic */
html[dir="rtl"] .input-group input {
  border-radius: 0 30px 30px 0;
}

.input-group input:focus {
  border-color: #66ccff;
  outline: none;
}

.input-group label {
  position: absolute;
  top: 15px;
  inset-inline-start: 15px;
  color: #95a5a6;
  pointer-events: none;
  transition: all 0.3s ease;
  background: white;
  padding: 0 5px;
  font-size: 1rem;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  top: -10px;
  inset-inline-start: 10px;
  font-size: 0.8rem;
  color: #66ccff;
}

/* RTL: Flip label position logic */
html[dir="rtl"] .input-group input:focus + label,
html[dir="rtl"] .input-group input:not(:placeholder-shown) + label {
  inset-inline-start: 10px;
}

/* Submit Button */
.input-group button {
  padding: 15px 20px;
  background: #66ccff;
  color: white;
  border: none;
  border-radius: 0 30px 30px 0; /* Rounded on the right (LTR) */
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

/* In RTL: Button should be rounded on the LEFT */
html[dir="rtl"] .input-group button {
  border-radius: 30px 0 0 30px; /* Now rounded on the left */
  padding: 15px 20px;
}

/* Newsletter Success & Error Messages */
.form-success,
.form-error {
  margin-top: 12px;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: left;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.form-success {
  background: #e6f7ee;
  color: #27ae60;
  border: 1px solid #d1eeda;
}

.form-error {
  background: #fdf2f2;
  color: #e74c3c;
  border: 1px solid #fbc7c7;
}

/* Show messages */
.form-success.show,
.form-error.show {
  opacity: 1;
  height: auto;
  margin: 10px 0;
}

/* RTL Support for Messages */
html[dir="rtl"] .form-success,
html[dir="rtl"] .form-error {
  text-align: right;
}

/* Newsletter Form Styles */
.form-loading,
.form-success,
.form-error {
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
}

.form-loading {
  background-color: rgba(102, 204, 255, 0.1);
  color: #66ccff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-success {
  background-color: rgba(46, 204, 113, 0.1);
  color: #27ae60;
  border: 1px solid #2ecc71;
}

.form-error {
  background-color: rgba(231, 76, 60, 0.1);
  color: #c0392b;
  border: 1px solid #e74c3c;
}

.input-group {
  position: relative;
}

.input-group input:valid {
  border-color: #2ecc71;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
}

.footer-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.copyright {
  text-align: center;
  color: #7f8c8d;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RTL Support */
html[dir="rtl"] .footer-menu a {
  padding-inline-start: 0;
  padding-inline-end: 15px;
}

html[dir="rtl"] .footer-menu a::before {
  inset-inline-start: auto;
  inset-inline-end: 0;
}

html[dir="rtl"] .footer-menu a:hover {
  padding-inline-end: 20px;
}

html[dir="rtl"] .footer-contact h3,
html[dir="rtl"] .footer-links h3,
html[dir="rtl"] .footer-newsletter h3 {
  text-align: right;
}

html[dir="rtl"] .footer-logo img {
  margin-right: 0;
  margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / 3;
    text-align: center;
  }

  .footer-links {
    grid-column: 1 / 2;
  }

  .footer-contact {
    grid-column: 2 / 3;
  }

  .footer-newsletter {
    grid-column: 1 / 3;
  }

  .footer-title {
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .contact-item {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 40px 5% 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-newsletter {
    grid-column: 1;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
  }

  .footer-description {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-title {
    text-align: center;
  }

  .footer-title::after {
    inset-inline-start: 50%;
    transform: translateX(-50%);
  }

  .footer-menu {
    text-align: center;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  html[dir="rtl"] .footer-contact h3,
  html[dir="rtl"] .footer-links h3,
  html[dir="rtl"] .footer-newsletter h3 {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logo img {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .input-group {
    flex-direction: column;
  }

  .input-group input {
    border-radius: 30px;
    margin-bottom: 10px;
    padding: 14px;
  }

  .input-group input + label {
    left: 15px;
  }

  .input-group button {
    border-radius: 30px;
    padding: 12px;
  }
}

/* Animation for footer elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-newsletter {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.footer-links {
  animation-delay: 0.1s;
}
.footer-contact {
  animation-delay: 0.2s;
}
.footer-newsletter {
  animation-delay: 0.3s;
}
