/* Main Styles for Almaheron Umrah Services Website */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap');

:root {
  --primary-color: #006641;  /* Dark Green */
  --secondary-color: #d4af37; /* Gold */
  --dark-color: #333333;
  --light-color: #f8f8f8;
  --text-color: #4a4a4a;
  --white-color: #ffffff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  direction: rtl;
  background-color: var(--light-color);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
header {
  background-color: var(--white-color);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

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

.logo img {
  height: 60px;
  margin-left: 10px;
}

.logo h1 {
  color: var(--primary-color);
  font-size: 1.8rem;
}

.logo span {
  color: var(--secondary-color);
}

/* Navigation */
nav ul {
  display: flex;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  transition: var(--transition);
  padding: 5px 10px;
  border-radius: 4px;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
  background-color: rgba(0, 102, 65, 0.1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 2px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 90px;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white-color);
  padding: 20px;
}

.hero-content {
  max-width: 800px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
  padding: 12px 30px;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: var(--white-color);
}

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

.section-title h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
}

.section-title p {
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-content {
  padding: 25px;
}

.service-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.service-content p {
  color: var(--text-color);
  margin-bottom: 20px;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--light-color);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 20px;
  position: relative;
}

.about-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
}

.about-content p {
  margin-bottom: 20px;
}

.about-features {
  margin-top: 30px;
}

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

.feature-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 102, 65, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Portfolio Section */
.portfolio {
  padding: 80px 0;
  background-color: var(--white-color);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 102, 65, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white-color);
  text-align: center;
  padding: 20px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.1);
}

.portfolio-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.portfolio-overlay p {
  font-size: 0.9rem;
}

/* Hotels Section */
.hotels {
  padding: 80px 0;
  background-color: var(--light-color);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.hotel-card {
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hotel-img {
  height: 200px;
  overflow: hidden;
}

.hotel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.hotel-content {
  padding: 25px;
}

.hotel-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.hotel-content p {
  color: var(--text-color);
  margin-bottom: 20px;
}

/* VIP Trips Section */
.vip-trips {
  padding: 80px 0;
  background-color: var(--white-color);
}

.vip-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.feature-box {
  flex: 1;
  min-width: 300px;
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.vip-gallery {
  margin-bottom: 50px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.vip-card {
  flex: 1;
  min-width: 300px;
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.vip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vip-img {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.vip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.vip-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.vip-content {
  padding: 25px;
}

.vip-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.vip-features-list {
  list-style: none;
}

.vip-features-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vip-features-list li i {
  color: var(--primary-color);
  font-size: 1rem;
}

.vip-schedule {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.schedule-title {
  text-align: center;
  margin-bottom: 30px;
}

.schedule-title h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.schedule-table {
  overflow-x: auto;
  margin-bottom: 30px;
}

.schedule-table table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.schedule-table th {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.schedule-table tr:hover {
  background-color: rgba(0, 102, 65, 0.05);
}

.status {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.status.available {
  background-color: rgba(0, 102, 65, 0.2);
  color: var(--primary-color);
}

.status.full {
  background-color: rgba(255, 0, 0, 0.2);
  color: #ff0000;
}

.book-now {
  text-align: center;
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1.2rem;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  border-radius: 50px;
  transition: var(--transition);
  display: inline-block;
}

.btn-lg:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Economic Trips Section */
.economic-trips {
  padding: 80px 0;
  background-color: var(--light-color);
}

/* Style for the day column in economic trips schedule */
.schedule-table td[rowspan] {
  background-color: rgba(0, 102, 65, 0.3);
  color: var(--primary-color);
  font-weight: bold;
}

.economic-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.economic-gallery {
  margin-bottom: 50px;
}

.economic-card {
  flex: 1;
  min-width: 300px;
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.economic-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.economic-img {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.economic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.economic-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #3498db;
  color: var(--white-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.economic-content {
  padding: 25px;
}

.economic-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.economic-features-list {
  list-style: none;
}

.economic-features-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.economic-features-list li i {
  color: #3498db;
  font-size: 1rem;
}

.economic-schedule {
  background-color: var(--white-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.packages-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.package-card {
  flex: 1;
  min-width: 320px;
  background-color: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.package-card.featured {
  border: 2px solid var(--secondary-color);
  position: relative;
}

.package-header {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: var(--white-color);
  padding: 20px;
  text-align: center;
  position: relative;
}

.package-card.featured .package-header {
  background: linear-gradient(135deg, var(--secondary-color), #b8941f);
}

.package-header h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: #e74c3c;
  color: var(--white-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.package-details {
  padding: 25px;
}

.package-details ul {
  list-style: none;
  margin-bottom: 20px;
}

.package-details ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-details ul li i {
  color: #27ae60;
  font-size: 1rem;
}

.package-schedule {
  margin: 20px 0;
}

.package-schedule table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.package-schedule th,
.package-schedule td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.package-schedule th {
  background-color: rgba(52, 152, 219, 0.1);
  color: #3498db;
  font-weight: 600;
}

.package-card.featured .package-schedule th {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--secondary-color);
}

.package-book {
  text-align: center;
  margin-top: 20px;
}

.package-book .btn {
  width: 100%;
  padding: 12px;
  background-color: #3498db;
  color: var(--white-color);
  border-radius: 8px;
  transition: var(--transition);
}

.package-card.featured .package-book .btn {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.package-book .btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.general-booking {
  text-align: center;
  padding: 30px;
  background-color: var(--light-color);
  border-radius: 10px;
  margin-top: 30px;
}

.general-booking p {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--light-color);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 15px;
  flex-shrink: 0;
}

.contact-details h3 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.contact-form {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark-color);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Tajawal', Arial, sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Map */
.map {
  height: 400px;
  margin-top: 50px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 60px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

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

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

.footer-logo span {
  color: var(--secondary-color);
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
}

.footer-links li {
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-links li:hover {
  padding-right: 10px;
  color: var(--secondary-color);
}

.footer-links i {
  margin-left: 5px;
  color: var(--secondary-color);
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
}

.footer-contact i {
  color: var(--secondary-color);
  margin-left: 10px;
  margin-top: 5px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Call and WhatsApp Buttons */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: var(--white-color);
  font-size: 1.5rem;
  transition: var(--transition);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.call-btn {
  background-color: var(--primary-color);
}

.whatsapp-btn {
  background-color: #25d366;
}

/* Admin Panel Styles */
.admin-panel {
  padding: 120px 0 80px;
}

.admin-container {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.admin-header {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 20px;
}

.admin-body {
  padding: 30px;
}

.admin-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

.admin-tab {
  padding: 10px 20px;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.admin-tab.active {
  border-bottom-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 700;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  text-align: right;
}

.admin-table th {
  background-color: rgba(0, 102, 65, 0.1);
  font-weight: 700;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.edit-btn,
.delete-btn {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.edit-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.delete-btn {
  background-color: #ff3333;
  color: var(--white-color);
}

/* تصميم الصفحات الفرعية */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://public.youware.com/users-website-assets/prod/ed93ed6c-9264-4bb3-9a64-9a644e1e527c/36bccaf5da6444e0838d1f9e29adb340.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-top: 90px;
}

.page-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* تصميم قسم آراء العملاء */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px auto 0;
    border: 5px solid #d4af37;
}

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

.testimonial-content {
    padding: 20px;
    text-align: center;
}

.testimonial-rating {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-author {
    margin-top: 20px;
}

.testimonial-author h3 {
    color: #006641;
    margin-bottom: 5px;
}

.submit-testimonial {
    max-width: 800px;
    margin: 60px auto 0;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.submit-testimonial h3 {
    color: #006641;
    text-align: center;
    margin-bottom: 10px;
}

.submit-testimonial p {
    text-align: center;
    margin-bottom: 20px;
}

.rating-input {
    direction: ltr;
    text-align: center;
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 10px;
}

.rating-star {
    cursor: pointer;
    padding: 0 5px;
}

.rating-star:hover, .rating-star.active {
    color: #d4af37;
}

/* تصميم قسم الأسئلة الشائعة */
.faq-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.category-btn {
    padding: 10px 20px;
    background-color: #fff;
    border: 2px solid #006641;
    color: #006641;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.category-btn.active, .category-btn:hover {
    background-color: #006641;
    color: #fff;
}

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

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #006641;
}

.toggle-icon {
    background-color: #f0f0f0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #006641;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 15px 0;
}

.faq-answer ul {
    margin-right: 20px;
}

.ask-question {
    max-width: 700px;
    margin: 60px auto 0;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ask-question h3 {
    color: #006641;
    text-align: center;
    margin-bottom: 10px;
}

.ask-question p {
    text-align: center;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .about-container {
    flex-direction: column;
  }
  
  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 10px 0;
  }
  
  .logo img {
    height: 45px;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background-color: var(--white-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
    padding: 20px;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .container {
    width: 95%;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 25px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .about-content h2 {
    font-size: 1.6rem;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}