/* 
   Malabar Packers and Movers - Main Stylesheet
   Author: Envaq Technologies Private Limited
   Version: 1.0
*/

/* ===== GLOBAL STYLES ===== */
:root {
  --primary-color: #ef0808;
  --primary-dark: #ef0808;
  --primary-light: #ef0808;
  --secondary-color: #0c317a;
  --text-color: #333333;
  --text-light: #666666;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --gray-light: #f1f1f1;
  --gray: #dddddd;
  --border-color: #e0e0e0;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --box-shadow: 0 5px 15px 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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

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

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

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

.section-header h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

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

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

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

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

.btn-secondary:hover {
  background-color: #1e1f2f;
  color: var(--white);
}

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

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

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

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--secondary-color);
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

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

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

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

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

.nav-links a {
  color: var(--secondary-color);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

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

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

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

.language-selector {
  display: flex;
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
  font-weight: 500;
}

.language-selector span {
  margin-right: 5px;
}

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

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

/* ===== HERO SECTION ===== */
.hero {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0c317a 0%, #2555b4 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  margin-left: 50px;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  padding: 80px 0;
  background-color: var(--light-bg);
}

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

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 75, 43, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

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

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(5px);
}

.view-all-services {
  text-align: center;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
  padding: 80px 0;
}

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

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  transition: var(--transition);
}

.feature:hover {
  background-color: var(--light-bg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 75, 43, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 25px;
  color: var(--primary-color);
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.feature p {
  color: var(--text-light);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.testimonial-slider {
  display: flex;
  overflow: hidden;
  position: relative;
}

.testimonial {
  min-width: 100%;
  padding: 0 15px;
  transition: var(--transition);
}

.testimonial-content {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  transform: rotate(45deg);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-color);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.prev-btn, .next-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

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

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

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

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

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

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

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

/* ===== FOOTER ===== */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 70px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

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

.footer-logo p {
  opacity: 0.8;
  max-width: 300px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  min-width: 160px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info li i {
  margin-right: 10px;
  color: var(--primary-color);
  margin-top: 5px;
}

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

.copyright p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.social-links {
  display: flex;
}

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

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

/* ===== PAGE BANNER ===== */
.page-banner {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

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

.breadcrumb {
  font-size: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  opacity: 0.8;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  padding: 80px 0;
}

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

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

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

.about-text p {
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.mission-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.mission-image {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.mission-text h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.mission-box {
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 8px;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
}

.mission-box h3 {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.mission-box h3 i {
  color: var(--primary-color);
  margin-right: 10px;
}

.mission-box p {
  color: var(--text-light);
  line-height: 1.7;
}

.mission-box ul {
  padding-left: 20px;
}

.mission-box ul li {
  margin-bottom: 10px;
  color: var(--text-light);
  position: relative;
}

.mission-box ul li::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.our-journey {
  padding: 80px 0;
}

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

.timeline::before {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--gray);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: -10px;
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-content {
  padding: 20px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.timeline-content h4 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-light);
}

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

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

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

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

.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);
}

.member-info {
  padding: 20px;
  text-align: center;
}

.member-info h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.bio {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.member-info .social-links {
  justify-content: center;
}

.member-info .social-links a {
  background-color: var(--light-bg);
  color: var(--secondary-color);
}

.member-info .social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ===== SERVICES PAGE ===== */
.services-intro {
  padding: 60px 0;
}

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

.intro-content p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.1rem;
}

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

.service-detail.alt-bg {
  background-color: var(--light-bg);
}

.service-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.service-content.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

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

.service-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

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

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

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

.pricing-section {
  padding: 80px 0;
}

.pricing-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pricing-info p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.pricing-info ul {
  display: inline-block;
  text-align: left;
  margin-bottom: 30px;
}

.pricing-info ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.pricing-info ul li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.pricing-cta {
  margin-top: 30px;
}

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

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

.faq-item {
  background-color: var(--white);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

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

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.toggle-icon {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
}

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

.faq-item.active .faq-answer {
  display: block;
}

/* ===== CONTACT PAGE ===== */
.contact-info-section {
  padding: 80px 0;
}

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

.contact-info-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.contact-info-card .icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 75, 43, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-info-card .icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.contact-info-card h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.contact-info-card p {
  color: var(--text-light);
  margin-bottom: 5px;
}

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

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.contact-form h2 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

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

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

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

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-color);
}

input, select, textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  color: var(--text-color);
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 75, 43, 0.2);
}

textarea {
  resize: vertical;
}

.contact-map {
  flex: 1;
  min-width: 300px;
}

.contact-map h2 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.quote-section {
  padding: 80px 0;
}

.quote-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

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

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

.branch-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.branch-card h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.branch-card p {
  margin-bottom: 10px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
}

.branch-card p i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 992px) {
  .hero-content h1 {
      font-size: 2.5rem;
  }
  
  .section-header h2 {
      font-size: 2rem;
  }
  
  .hero .container {
      flex-direction: column;
  }
  
  .hero-content {
      text-align: center;
      margin-bottom: 40px;
  }
  
  .cta-buttons {
      justify-content: center;
  }
  
  .hero-image {
      margin-left: 0;
  }
  
  .timeline::before {
      left: 40px;
  }
  
  .timeline-item {
      width: 100%;
      padding-left: 80px;
      padding-right: 0;
  }
  
  .timeline-item:nth-child(even) {
      left: 0;
  }
  
  .timeline-dot {
      left: 30px;
      right: auto;
  }
  
  .timeline-item:nth-child(even) .timeline-dot {
      left: 30px;
  }
}

@media screen and (max-width: 768px) {
  header .container {
      flex-wrap: wrap;
  }
  
  .nav-links {
      display: none;
      width: 100%;
      flex-direction: column;
      background-color: var(--white);
      position: absolute;
      top: 70px;
      left: 0;
      padding: 20px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
      display: flex;
  }
  
  .nav-links li {
      margin: 10px 0;
  }
  
  .mobile-menu-btn {
      display: block;
  }
  
  .language-selector {
      margin-right: 15px;
  }
  
  .auth-buttons .btn {
      padding: 8px 15px;
      font-size: 0.9rem;
  }
  
  .hero-content h1 {
      font-size: 2rem;
  }
  
  .footer-content {
      flex-direction: column;
  }
  
  .footer-logo {
      margin-bottom: 40px;
  }
  
  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }
  
  .copyright {
      margin-bottom: 20px;
  }
  
  .social-links {
      justify-content: center;
  }
  
  .form-row {
      flex-direction: column;
      gap: 20px;
  }
}

@media screen and (max-width: 576px) {
  .hero {
      padding: 60px 0;
  }
  
  .hero-content h1 {
      font-size: 1.8rem;
  }
  
  .cta-buttons {
      flex-direction: column;
      gap: 15px;
  }
  
  .section-header h2 {
      font-size: 1.8rem;
  }
  
  .service-content, .about-content, .mission-content {
      gap: 30px;
  }
  
  .contact-info-grid {
      grid-template-columns: 1fr;
  }
}