/* Base Styles */
:root {
  --primary-color: #1f2937;        /* Sophisticated Charcoal */
  --secondary-color: #374151;      /* Professional Gray */
  --accent-color: #1d4ed8;         /* Strategic Blue */
  --light-color: #f9fafb;          /* Off-White */
  --dark-color: #111827;           /* Deep Black */
  --text-color: #1f2937;           /* Dark Professional */
  --text-light: #6b7280;           /* Medium Gray */
  --border-color: #d1d5db;         /* Light Gray */
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --success-color: #10b981;        /* Success Green */
  --error-color: #ef4444;          /* Alert Red */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

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

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: var(--primary-color);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn i {
  margin-right: 8px;
}

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

.btn-primary:hover {
  background-color: #6c63ff;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
  background-color: #1e5954;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

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

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.logo img {
  height: 50px;
}
.logo {
  height: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.logo img {
  height: 70px; /* bigger than container */
  max-height: none;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  margin-right: 20px;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  color: var(--dark-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.language-switcher {
  display: flex;
  align-items: center;
  margin-left: 20px;
  font-weight: 500;
}

.language-switcher a {
  padding: 5px;
  color: var(--text-light);
  transition: var(--transition);
}

.language-switcher a.active,
.language-switcher a:hover {
  color: var(--primary-color);
}

.language-switcher span {
  color: var(--text-light);
  margin: 0 5px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Mobile menu styles */
#mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

#mobile-menu.active {
  display: block;
}

#mobile-menu .nav-links {
  display: block;
  padding: 0;
  margin: 0;
  position: static;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  background: transparent;
  overflow-y: visible;
}

#mobile-menu .nav-links li {
  display: block;
  margin: 0;
}

#mobile-menu .nav-links li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* Add the underline effect for mobile menu links */
#mobile-menu .nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 1.5rem;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

#mobile-menu .nav-links li a:hover::after,
#mobile-menu .nav-links li a.active::after {
  width: calc(100% - 3rem); /* Adjust width to account for padding */
}

#mobile-menu .nav-links li a:hover {
  background-color: transparent; /* Remove background color change */
  color: var(--primary-color);
}

#mobile-menu .nav-links li a.active {
  color: var(--primary-color);
  font-weight: 600;
}

#mobile-menu .language-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.75rem 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

#mobile-menu .language-switcher a {
  padding: 5px 10px;
  color: var(--text-light);
  transition: var(--transition);
  font-weight: 500;
  position: relative;
}

/* Add underline effect to language switcher in mobile menu */
#mobile-menu .language-switcher a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

#mobile-menu .language-switcher a:hover::after,
#mobile-menu .language-switcher a.active::after {
  width: calc(100% - 20px);
}

#mobile-menu .language-switcher a.active,
#mobile-menu .language-switcher a:hover {
  color: var(--primary-color);
}

#mobile-menu .language-switcher span {
  color: var(--text-light);
  margin: 0 5px;
}

#mobile-menu .cta-buttons {
  padding: 0.75rem 1.5rem;
  text-align: center;
}

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

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.cta-buttons {
  display: flex;
  gap: 15px;
}
:root {
  --primary-color: #1f2937;        /* Sophisticated Charcoal */
  --secondary-color: #374151;      /* Professional Gray */
  --accent-color: #1d4ed8;         /* Strategic Blue */
  --light-color: #f9fafb;          /* Off-White */
  --dark-color: #111827;           /* Deep Black */
  --text-color: #1f2937;           /* Dark Professional */
  --text-light: #6b7280;           /* Medium Gray */
  --border-color: #d1d5db;         /* Light Gray */
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --success-color: #10b981;
  --error-color: #ef4444;
}

.why-choose-us-section {
  background: white;
  padding: 80px 20px;
  border-radius: 30px;
  margin: 60px auto;
  max-width: 1300px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.why-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 60px;
  color: var(--primary-color);
}

.why-title span {
  color: var(--accent-color);
}

.underline {
  display: block;
  width: 80px;
  height: 4px;
  background: var(--dark-color);
  margin: 8px auto 0;
  border-radius: 2px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  text-align: center;
}

.why-card {
  position: relative;
  padding: 30px 20px 70px;
}

.why-illustration {
  width: 140px;
  max-width: 100%;
  margin: 0 auto 30px;
  display: block;
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0 auto 30px;
  max-width: 300px;
}

.why-number {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  font-weight: bold;
  color: rgba(31, 41, 55, 0.08); /* faded --primary-color */
  pointer-events: none;
}


/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: #fff;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin: 20px 0;
  border-left: 4px solid var(--secondary-color);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content::before {
  content: "\201C";
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: var(--secondary-color);
  opacity: 0.2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
}

.author-info h4 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.prev-btn,
.next-btn {
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
  color: var(--secondary-color);
}

.slider-dots {
  display: flex;
  margin: 0 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: var(--border-color);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.footer-logo {
  margin-bottom: 15px;
}

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

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
  color: #bdc3c7;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
}

.footer-contact ul li i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.social-icons {
  display: flex;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #bdc3c7;
}

.footer-bottom .language-switcher {
  margin-left: 0;
}

.footer-bottom .language-switcher a {
  color: #bdc3c7;
}

.footer-bottom .language-switcher a.active,
.footer-bottom .language-switcher a:hover {
  color: var(--secondary-color);
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.breadcrumbs {
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--secondary-color);
}

.breadcrumbs span {
  color: #bdc3c7;
}

/* About Page */
.about-intro {
  padding: 80px 0;
}

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

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

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

.mission-vision {
  padding: 80px 0;
  background-color: var(--light-color);
}

.mission-vision .container {
  display: flex;
  gap: 40px;
}

.mission,
.vision {
  flex: 1;
  text-align: center;
  padding: 40px;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--secondary-color);
}

.mission .icon,
.vision .icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.mission h2,
.vision h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.values {
  padding: 80px 0;
}

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

.value-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.team {
  padding: 80px 0;
  background-color: var(--light-color);
}

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

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

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

.member-image {
  height: 250px;
  overflow: hidden;
}

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

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.team-member h3 {
  padding: 20px 20px 10px;
  color: var(--primary-color);
}

.team-member .position {
  padding: 0 20px;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-member .bio {
  padding: 0 20px 20px;
  font-size: 0.9rem;
}

.stats {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

/* Services Page */
.services-intro {
  padding: 80px 0;
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.intro-content p {
  margin-bottom: 15px;
}

.service-details {
  padding: 80px 0;
}

.service-details:nth-child(odd) {
  background-color: var(--light-color);
}

.service-details .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.service-details.alt-layout .container {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
}

.service-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.service-content {
  flex: 1;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

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

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

.service-features {
  margin-bottom: 30px;
}

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

.service-features li i {
  color: var(--secondary-color);
  margin-right: 10px;
}

.packages {
  padding: 80px 0;
  background-color: var(--light-color);
}

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

.package-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Fix for the "Most Popular" badge overlapping with the package title */
.package-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 0 10px 0 10px;
}

.package-header {
  padding: 30px;
  padding-top: 40px; /* Increased top padding to make room for the badge */
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative; /* Added to establish positioning context */
}

.package-header h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.package-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.currency {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-light);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-left: 5px;
}

.package-features {
  padding: 30px;
  flex-grow: 1; /* This makes the features section take up available space */
}

.package-features ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.package-features ul li i {
  margin-right: 10px;
}

.package-features ul li i.fa-check {
  color: var(--success-color);
}

.package-features ul li i.fa-times {
  color: var(--text-light);
}

.package-card .btn {
  display: block;
  margin: 0 30px 30px;
  text-align: center;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
}

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

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-toggle {
  font-size: 1rem;
  color: var(--secondary-color);
  transition: var(--transition);
}

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

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

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Contact Page */
.contact-info {
  padding: 80px 0;
}

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

.info-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.info-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.info-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-form-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.contact-form-section .container {
  display: flex;
  gap: 40px;
}

.form-container {
  flex: 1;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.form-container p {
  margin-bottom: 30px;
  color: var(--text-light);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.required {
  color: var(--error-color);
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.textarea-wrapper i {
  top: 20px;
  transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-group label {
  font-size: 0.9rem;
  font-weight: 400;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

#formStatus {
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  display: none;
}

#formStatus.success {
  background-color: #d4edda;
  color: #155724;
  display: block;
}

#formStatus.error {
  background-color: #f8d7da;
  color: #721c24;
  display: block;
}

.map-container {
  flex: 1;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container,
  .about-intro .container,
  .mission-vision .container,
  .service-details .container,
  .service-details.alt-layout .container /* Added this line to override the row-reverse */,
  .contact-form-section .container {
    flex-direction: column;
  }

  /* This ensures the image is always first (on top) in mobile view */
  .service-details .service-image {
    order: -1;
  }

  .hero-content,
  .about-content,
  .service-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-steps::before {
    display: none;
  }

  .step {
    margin-bottom: 40px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .package-card.featured {
    transform: none;
  }
}

/* Responsive styles for mobile menu */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  
  #mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  nav .nav-links {
    display: none;
  }
  
  nav .language-switcher {
    display: none;
  }
  
  .hamburger {
    display: block;
    cursor: pointer;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .form-actions {
    flex-direction: column;
  }
}

/* Footer Legal Links */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.footer-legal a {
  color: #bdc3c7;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--secondary-color);
}

.footer-legal span {
  color: #bdc3c7;
}