/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #465a67;
  --secondary: #516874;
  --accent: #ffff;
  --dark: #2c3e50;
  --light-bg: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--accent);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--primary);
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(70, 90, 103, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.lang-btn {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--primary);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  background: transparent;
  color: var(--primary);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(70, 90, 103, 0.7) 0%, rgba(81, 104, 116, 0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1.2s ease forwards;
}

.badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-weight: 500;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.headline {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent);
  letter-spacing: -1px;
}

.subheadline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.btn {
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s ease;
  font-size: 1rem;
  letter-spacing: 0.5px;
  display: inline-block;
}

.btn.primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn.primary:hover {
  background: var(--light-bg);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.btn.secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn.secondary:hover {
  background: var(--accent);
  color: var(--primary);
}

.hero-tagline {
  margin-top: 4rem;
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  animation: fadeIn 2s ease-in 0.8s forwards;
  opacity: 0;
}

/* ---------- WHY SECTION ---------- */
.why-modern {
  background: var(--accent);
  padding: 8rem 5%;
  position: relative;
}

.why-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-heading {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.why-intro {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 850px;
  margin: 0 auto 5rem;
  text-align: center;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.why-item {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 2.5rem;
  border: 1px solid rgba(70, 90, 103, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-item:hover::before {
  transform: scaleX(1);
}

.why-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(70, 90, 103, 0.15);
}

.why-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.why-item p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--accent);
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-box:hover::before {
  opacity: 1;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(70, 90, 103, 0.3);
}

.stat-box h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-weight: 700;
}

.stat-box p {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  background: var(--light-bg);
  padding: 8rem 5%;
}

.about-container {
  display: flex;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 520px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.about-text h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.linkedin-btn {
  background: var(--primary);
  color: var(--accent);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.linkedin-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(70, 90, 103, 0.25);
}

.about-image {
  flex: 0 0 400px;
  text-align: center;
}

.about-image.mobile {
  display: none;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(70, 90, 103, 0.2);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* ---------- SERVICES SECTION ---------- */
/* ---------- SERVICES SECTION ---------- */
.services-section {
  background: var(--accent);
  padding: 8rem 5%;
  text-align: center;
}

.services-header h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.services-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.services-header p {
  color: var(--text-light);
  font-style: italic;
  margin: 2.5rem 0 4rem;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(70, 90, 103, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(70, 90, 103, 0.05), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(70, 90, 103, 0.15);
}

.service-card .icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-card .details {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.service-card .benefit {
  font-weight: 600;
  color: var(--secondary);
  font-size: 1rem;
}

/* ---------- WHO I HELP ---------- */
.who-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, #e8eef2 100%);
  padding: 8rem 5%;
}

.who-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.who-text {
  flex: 1 1 500px;
}

.who-text h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.who-text h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.who-text p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.who-list {
  list-style: none;
  padding: 0;
}

.who-list li {
  background: var(--accent);
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
  color: var(--text-dark);
}

.who-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(70, 90, 103, 0.1);
}

.who-cards {
  flex: 1 1 450px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.who-card {
  background: var(--accent);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(70, 90, 103, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(70, 90, 103, 0.1);
}

.who-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(70, 90, 103, 0.2);
}

.who-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.who-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.who-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

.case-study {
  max-width: 900px;
  margin: 6rem auto 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--accent);
  padding: 3rem 4rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(70, 90, 103, 0.3);
  position: relative;
  overflow: hidden;
}

.case-study::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}

.case-study blockquote {
  font-size: 1.25rem;
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

/* ---------- PROCESS SECTION ---------- */
/* How It Works Section */
.process-section {
  position: relative;
  background: url('images/house-isolated-field.jpg') center/cover no-repeat;
  color: #333;
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.process-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.process-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-left: 5%;
}

.process-box {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  animation: slideIn 1.2s ease both;
}

@keyframes slideIn {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.process-box h2 {
  font-size: 2rem;
  color: #0a2239;
  margin-bottom: 25px;
  font-weight: 700;
  border-left: 5px solid black;
  padding-left: 15px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step h3 {
  color: black;
  font-weight: 600;
}

.step p {
  color: #444;
  line-height: 1.6;
}

.lang-toggle {
  margin-top: 25px;
  background: rgba(70, 90, 103, 0.05);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  float: right;
}

.lang-toggle:hover {
  background: rgba(70, 90, 103, 0.05);
}

@media (max-width: 768px) {
  .process-box {
    max-width: 90%;
    padding: 30px;
  }
  .process-section {
    padding: 60px 0;
    justify-content: center;
  }
}




/* Responsive for Process Section */
@media (max-width: 900px) {
  .process-section {
    padding: 5rem 4%;
    min-height: auto;
  }

  .process-overlay {
    background: rgba(255, 255, 255, 0.9);
  }

  .process-box h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step {
    padding: 2rem 1.5rem;
  }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  background: var(--light-bg);
  padding: 8rem 5%;
  text-align: center;
}

.testimonials-header h2 {
  font-size: 2.8rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.testimonials-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.testimonials-header p {
  color: var(--text-light);
  margin: 2.5rem 0 4rem;
  font-size: 1.1rem;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.testimonial-card {
  background: var(--accent);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(70, 90, 103, 0.1);
  padding: 3rem 2.5rem;
  max-width: 500px;
  transition: all 0.4s ease;
  border: 1px solid rgba(70, 90, 103, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 8rem;
  color: rgba(70, 90, 103, 0.05);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(70, 90, 103, 0.2);
}

.quote {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
}

.client {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.trust-logos a {
  transition: all 0.3s ease;
  padding: 1rem 2rem;
  background: var(--accent);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(70, 90, 103, 0.1);
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-logos a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(70, 90, 103, 0.2);
  background: var(--primary);
  color: var(--accent);
}

.trust-logos img {
  width: 80px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.trust-logos img:hover {
  opacity: 1;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
  background: var(--accent);
  padding: 8rem 5%;
  text-align: center;
}

.faq-header h2 {
  font-size: 2.8rem;
  color: var(--primary);
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.faq-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.faq-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin: 2.5rem 0 4rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: 15px;
  background: var(--light-bg);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(70, 90, 103, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  color: var(--primary);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--secondary);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-question.open::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  transition: all 0.4s ease;
}

.faq-answer.active {
  max-height: 400px;
  padding: 0 2rem 1.5rem;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--accent);
  text-align: center;
  padding: 8rem 5%;
}

.contact-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.contact-subtext {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-style: italic;
  font-weight: 300;
}

.cta-container {
  margin-bottom: 4rem;
}

.cta-btn {
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  background: var(--light-bg);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.language-note {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.contact-info {
  margin-top: 3rem;
}

.contact-info p {
  margin: 1rem 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: var(--light-bg);
}

.social-links {
  margin-top: 2rem;
}

.social-links a {
  margin: 0 1rem;
  font-weight: 600;
  color: var(--accent);
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.social-links a:hover {
  color: var(--light-bg);
  transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
.footer {
  background: rgb(64, 65, 64);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 2.5rem 5%;
}

.footer-text {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.help-text {
  background: var(--accent);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(70, 90, 103, 0.2);
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.whatsapp-icon {
  background: #25D366;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.4s ease;
}

.whatsapp-icon img {
  width: 35px;
  height: 35px;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
  }
  to { 
    opacity: 1; 
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .header {
    padding: 1rem 4%;
  }

  .logo-img {
    height: 42px;
  }

  .headline {
    font-size: 2.2rem;
  }

  .subheadline {
    font-size: 1.05rem;
  }

  .why-heading, 
  .services-header h2, 
  .testimonials-header h2, 
  .faq-header h2, 
  .contact-heading {
    font-size: 2rem;
  }

  .about-container {
    flex-direction: column;
  }

  .about-image.desktop {
    display: none !important;
  }

  .about-image.mobile {
    display: block !important;
    margin: 1.5rem auto 2rem;
    width: 100%;
    max-width: 360px;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .who-container {
    flex-direction: column;
  }

  .who-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .stat-box h3 {
    font-size: 2.5rem;
  }

  .whatsapp-icon {
    width: 55px;
    height: 55px;
  }

  .whatsapp-icon img {
    width: 28px;
    height: 28px;
  }

  .case-study {
    padding: 2rem;
  }

  .case-study blockquote {
    font-size: 1.1rem;
  }

  .why-modern,
  .about-section,
  .services-section,
  .who-section,
  .process-section,
  .testimonials-section,
  .faq-section,
  .contact-section {
    padding: 5rem 4%;
  }
}

@media (max-width: 480px) {
  .headline {
    font-size: 1.8rem;
  }

  .subheadline {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem 2rem;
  }

  .badges {
    gap: 0.5rem;
  }

  .badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .why-heading, 
  .services-header h2, 
  .testimonials-header h2, 
  .faq-header h2, 
  .contact-heading {
    font-size: 1.6rem;
  }

  .why-intro,
  .services-header p,
  .testimonials-header p,
  .faq-header p {
    font-size: 1rem;
  }

  .about-text h2,
  .who-text h2,
  .process-box h2 {
    font-size: 2rem;
  }

  .stat-box h3 {
    font-size: 2rem;
  }

  .stat-box p {
    font-size: 0.9rem;
  }

  .service-card,
  .who-card,
  .step,
  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .case-study {
    padding: 1.5rem;
  }

  .case-study blockquote {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }

  .faq-answer.active {
    padding: 0 1.5rem 1.2rem;
  }

  .contact-heading {
    font-size: 1.8rem;
  }

  .contact-subtext {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .help-text {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
  }

  .trust-logos a {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }

  .trust-logos img {
    width: 60px;
  }

  .footer-text {
    font-size: 0.85rem;
  }

  .footer-links a {
    display: inline-block;
    margin: 0.5rem 0.5rem;
  }
}

/* ---------- EXTRA SMOOTH SCROLLING ---------- */
html {
  scroll-behavior: smooth;
}

/* ---------- SELECTION STYLING ---------- */
::selection {
  background: var(--primary);
  color: var(--accent);
}

::-moz-selection {
  background: var(--primary);
  color: var(--accent);
}

/* ---------- FOCUS STYLES FOR ACCESSIBILITY ---------- */
button:focus,
a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ---------- CONTAINER UTILITY ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}