/* ===== PAGES.CSS - UNIFIED PAGE STYLES ===== */
/* Combines: about.css, contact.css, service.css, faq.css, landing-pages.css */

/* ===== ABOUT PAGE STYLES ===== */

/* ABOUT HERO */
#about-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: url;
}

#about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 81, 50, 0.88) 0%,
    rgba(20, 108, 67, 0.75) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
    background: url("/images/about-company.webp") center/cover no-repeat;

  z-index: 1;
}

#about-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 60px 20px;
}

#about-hero .hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

#about-hero .hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ABOUT SECTIONS GRID */
.about-sections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.about-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 81, 50, 0.08);
  border: 1px solid rgba(15, 81, 50, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15, 81, 50, 0.15);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card .card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(15, 81, 50, 0.1),
    rgba(26, 122, 79, 0.2)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.about-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

.about-card .values-list {
  list-style: none;
  padding: 0;
  text-align: right;
}

.about-card .values-list li {
  font-size: 0.88rem;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px solid rgba(15, 81, 50, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-card .values-list li:last-child {
  border-bottom: none;
}

.about-card .values-list li .fas {
  color: var(--primary);
  font-size: 0.75rem;
}

/* ABOUT SECTION */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* WHY US SECTION */
.container-why {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

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

.card-why {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  border-right: 4px solid var(--primary);
  font-weight: 600;
  transition: 0.3s;
}

.card-why:hover {
  background: var(--light-green);
}

/* ACHIEVEMENTS */
.achievements-section {
  background: linear-gradient(135deg, var(--primary), #1a7a4f);
  padding: 70px 20px;
  text-align: center;
}

.achievements-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 40px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.achievement {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 20px;
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.achievement:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.achievement .fas {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.achievement h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

.achievement p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* TEAM */
.team-section {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8fffe, #e8f5ee);
}

.team-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 40px;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.member {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 81, 50, 0.08);
  border: 1px solid rgba(15, 81, 50, 0.08);
  transition: all 0.35s ease;
}

.member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(15, 81, 50, 0.15);
}

.member img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.member h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin: 16px 0 6px;
}

.member p {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 16px;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 70px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(15, 81, 50, 0.08);
  border: 1px solid rgba(15, 81, 50, 0.08);
  transition: all 0.35s ease;
  text-align: right;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  color: rgba(15, 81, 50, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15, 81, 50, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(15, 81, 50, 0.2);
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 4px;
}

.testimonial-info .testimonial-phone {
  display: none;
}

.testimonial-info .stars {
  color: var(--accent);
  font-size: 0.9rem;
}

.testimonial blockquote {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  border: none;
  padding: 0;
}

/* ABOUT DETAILS */
.about-details {
  padding: 70px 0;
}

/* ===== CONTACT PAGE STYLES ===== */

/* CONTACT HERO */
#contact-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #0a3c23 0%,
    var(--primary) 50%,
    #1a7a4f 100%
  );
}

#contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/about-company.webp") center/cover no-repeat;
  opacity: 0.15;
}

#contact-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 60px 20px;
}

#contact-hero .hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--accent);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

#contact-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

#contact-hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* CONTACT INFO CARDS */
.contact-info-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5ee 100%);
}

.contact-info-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 16px;
}

.contact-info-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 81, 50, 0.08);
  border: 1px solid rgba(15, 81, 50, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15, 81, 50, 0.15);
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-info-card .card-icon-wrap {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.contact-info-card:hover .card-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.contact-info-card.phone .card-icon-wrap {
  background: linear-gradient(
    135deg,
    rgba(15, 81, 50, 0.1),
    rgba(26, 122, 79, 0.2)
  );
  color: var(--primary);
}

.contact-info-card.whatsapp .card-icon-wrap {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.1),
    rgba(37, 211, 102, 0.2)
  );
  color: #25d366;
}

.contact-info-card.email .card-icon-wrap {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(212, 175, 55, 0.2)
  );
  color: var(--accent);
}

.contact-info-card.location .card-icon-wrap {
  background: linear-gradient(
    135deg,
    rgba(220, 53, 69, 0.1),
    rgba(220, 53, 69, 0.2)
  );
  color: #dc3545;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-info-card a:hover {
  color: #1a7a4f;
}

.contact-info-card .hours-badge {
  display: inline-block;
  background: rgba(15, 81, 50, 0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-top: 8px;
  font-weight: 600;
}

/* SOCIAL MEDIA CARDS */
.social-section {
  padding: 50px 0;
  background: #fff;
}

.social-section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 40px;
}

.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.social-card {
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  color: #fff;
  transition: all 0.35s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.social-card.facebook {
  background: linear-gradient(135deg, #1877f2, #0d5dc9);
}

.social-card.instagram {
  background: linear-gradient(135deg, #e1306c, #833ab4, #fd1d1d);
}

.social-card.tiktok {
  background: linear-gradient(135deg, #010101, #2d2d2d);
}

.social-card .social-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.social-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.social-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
/* CONTACT FORM */
.contact-form-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5ee 100%);
}

.contact-form-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 50px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form-box {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(15, 81, 50, 0.1);
}

.contact-form-box h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #333;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  background: #fafafa;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.1);
  background: #fff;
}

.contact-form-box textarea {
  height: 120px;
  resize: vertical;
}

.contact-form-box .btn-send {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #1a7a4f);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-form-box .btn-send:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(15, 81, 50, 0.3);
}

.contact-info-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-aside-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 4px 20px rgba(15, 81, 50, 0.08);
  border-right: 4px solid var(--primary);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-aside-card .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(15, 81, 50, 0.1),
    rgba(26, 122, 79, 0.2)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}

.info-aside-card .info-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.info-aside-card .info-text p {
  font-size: 0.88rem;
  color: #555;
  margin: 0;
}

.info-aside-card .info-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

/* MAP SECTION */
.map-section {
  padding: 0 0 70px;
}

.map-section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 30px;
  padding-top: 50px;
}

.map-section iframe {
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(15, 81, 50, 0.1);
}

/* ===== SERVICE PAGE STYLES ===== */

/* SERVICE HERO SLIDER */
#service-slider {
  position: relative;
  height: 70vh;
  min-height: 450px;
  overflow: hidden;
}

#service-slider .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease;
}

#service-slider .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 60, 35, 0.85) 0%,
    rgba(15, 81, 50, 0.7) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

#service-slider .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

#service-slider .hero-badge {
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--accent);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
  animation: fadeInDown 0.8s ease;
}

#service-slider .hero-title-main {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.9s ease;
}

#service-slider .hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 28px;
  animation: fadeInUp 1s ease;
}

#service-slider .hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1.1s ease;
}

/* MOVING IMAGES STRIP */
.moving-images-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  overflow: hidden;
  z-index: 3;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.moving-images-track {
  display: flex;
  gap: 4px;
  animation: slideImages 20s linear infinite;
  height: 100%;
}

.moving-image-thumb {
  min-width: 120px;
  height: 80px;
  background-size: cover; /* ًں”¥ ط£ظ‡ظ… ط³ط·ط± */
  background-position: center; /* ًں”¥ */
  background-repeat: no-repeat; /* ًں”¥ */
  border-radius: 4px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  flex-shrink: 0; /* ًں”¥ ظ…ظ‡ظ… ظ„ظ„ط­ط±ظƒط© */
}

.moving-image-thumb:hover {
  opacity: 1;
}

@keyframes slideImages {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* SERVICE DETAIL */
.service-detail-section {
  padding: 70px 0;
  background: #fff;
}

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

.service-detail-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-detail-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-detail-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* OFFER GRID */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.offer-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 81, 50, 0.08);
  border: 1px solid rgba(15, 81, 50, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15, 81, 50, 0.15);
}

.offer-card:hover::before {
  transform: scaleX(1);
}

.offer-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}

.offer-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

.offer-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.offer-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* SERVICE CTA */
.service-cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary), #1a7a4f);
  text-align: center;
  color: #fff;
}

.service-cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 30px;
}

.service-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn .btn-primary {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FAQ PAGE STYLES ===== */

.faq-item {
  background: #f9f9f9;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: 0.3s;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question h3 {
  margin: 0;
  color: var(--primary);
  font-size: 16px;
}

.faq-icon {
  font-size: 24px;
  color: var(--primary);
  transition: 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px 20px;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.8;
}

/* ===== LANDING PAGES STYLES ===== */

/* HERO */
.landing-hero {
  color: white;
  padding: 110px 5% 80px;
  text-align: center;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.landing-hero > * {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--accent);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.landing-hero h1 {
  color: white;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.landing-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badges span i {
  color: var(--accent);
}

/* CONTAINER */
.container-landing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* FEATURES */
.features-section {
  padding: 80px 5%;
  background: #f8fffe;
}

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

.feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 81, 50, 0.08);
  border: 1px solid rgba(15, 81, 50, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15, 81, 50, 0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}

.feature-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* WHY US */
.why-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, #e8f5ee, #f0faf4);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 81, 50, 0.08);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 81, 50, 0.12);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(15, 81, 50, 0.1),
    rgba(26, 122, 79, 0.2)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--primary);
}

.why-item h3 {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-item p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* STATS */
.stats-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--primary), #1a7a4f);
  text-align: center;
  color: #fff;
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.stat-card .fas {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.stat-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 50px;
}

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

.testimonials-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(15, 81, 50, 0.08);
  border: 1px solid rgba(15, 81, 50, 0.08);
  transition: all 0.35s ease;
  text-align: right;
}

.testimonials-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15, 81, 50, 0.15);
}

.testimonials-card .stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testimonials-card p {
  color: #555;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonials-card .author {
  font-weight: 700;
  color: var(--primary);
}

/* CTA SECTION */
.cta-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--primary), #1a7a4f);
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn .btn-primary {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* COUNTRIES GRID (Medical page) */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.country-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 81, 50, 0.08);
  transition: all 0.35s ease;
}

.country-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.country-card h3 {
  padding: 16px;
  color: var(--primary);
  font-size: 1rem;
  margin: 0;
}

.country-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15, 81, 50, 0.15);
}

/* PROCESS STEPS */
.process-section {
  padding: 80px 5%;
  background: #f8fffe;
  text-align: center;
}

.process-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 50px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(15, 81, 50, 0.08);
  border: 1px solid rgba(15, 81, 50, 0.08);
  transition: all 0.35s ease;
  position: relative;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15, 81, 50, 0.15);
}

.process-step i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.process-step h3 {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
}

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

@media (max-width: 1024px) {
  .about-sections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .team-members {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-cards-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-sections-grid {
    grid-template-columns: 1fr;
  }
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-members {
    grid-template-columns: 1fr;
  }
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .social-cards-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-box {
    padding: 24px 18px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .countries-grid {
    grid-template-columns: 1fr;
  }
  .btn .btn-primary {
    flex-direction: column;
  }
  .btn .btn-primary .btn {
    width: 100%;
  }
}
.hero-title {
  color: #ffc107;
}

.hero-sub {
  color: #ff9c07;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* SERVICES */
.services .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ARTICLES 
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}*/

/* ARTICLE CONTAINER */
.article-container {
  max-width: 900px;
  margin: auto;
  padding: 100px 5% 60px;
}
