/*
Theme Name: spanishacademy
Theme URI: https://spanishacademy.in
Author: sounthar
Description: Spanish Academy India - Professional Spanish Language Services
Version: 1.0
*/

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

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: #FFFFFF;
    }

    /* Premium Color Palette */
    :root {
      --deep-charcoal: #1A1A2E;
      --terracotta: #C85C3C;
      --terracotta-light: #D97A5C;
      --sand: #F5F0E8;
      --cream: #FAF7F2;
      --white: #FFFFFF;
      --stone: #6B6B7A;
      --gold-soft: #D4AF37;
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      z-index: 1000;
      padding: 15px 30px;
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
.header img {
    width: 200px;
}
.footer-logo img {
    width: 200px;
}
    .header-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--deep-charcoal);
      text-decoration: none;
      letter-spacing: -0.5px;
      display: flex;
    }
.nav ul,
.nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li::marker {
    display: none;
    content: "";
}
    .logo span {
      color: var(--terracotta);
      font-weight: 800;
    }

    .nav {
      display: flex;
      gap: 35px;
      align-items: center;
    }

    .nav a {
      text-decoration: none;
      color: var(--deep-charcoal);
      font-weight: 500;
      font-size: 16px;
      transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
    }
/* Active link bottom border */
.nav .current-menu-item > a,
.nav .current_page_item > a {
  border-bottom: 2px solid #c85c3c;
}
    .nav a:hover {
      color: var(--terracotta);
    }

    .nav-cta {
      background: var(--terracotta);
      color: white !important;
      padding: 0.6rem 1.5rem !important;
      border-radius: 40px;
      transition: all 0.3s ease !important;
		display: grid;
    grid-template-columns: 0.3fr 1fr;
    align-items: center;
    }
.nav-cta i.fab.fa-whatsapp {
    font-size: 25px;
}
.hero-buttons i.fab.fa-whatsapp {
    font-size: 25px;
}
    .nav-cta:hover {
      background: var(--deep-charcoal);
      transform: translateY(-2px);
    }

    /* Premium Hero Section */
    .hero {
      min-height: 750px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
	  padding: 10rem 2rem 5rem 2rem;
    }

    /* Animated Background Waves */
    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 200%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23C85C3C" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x;
      background-size: cover;
      animation: waveMove 20s linear infinite;
    }

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

    /* Floating Particles */
    .particle {
      position: absolute;
      background: rgba(200, 92, 60, 0.15);
      border-radius: 50%;
      animation: floatParticle 12s infinite ease-in-out;
    }

    @keyframes floatParticle {
      0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
      50% { transform: translateY(-40px) translateX(20px); opacity: 0.8; }
    }

    .particle-1 { width: 300px; height: 300px; top: -100px; right: -100px; animation-duration: 15s; }
    .particle-2 { width: 200px; height: 200px; bottom: 50px; left: -80px; animation-duration: 12s; animation-delay: 2s; }
    .particle-3 { width: 150px; height: 150px; top: 40%; right: 20%; animation-duration: 18s; animation-delay: 4s; }

    .interpret-particle-1 { 
width: 300px;
    height: 300px;
    top: 0px;
    right: 100px;
    animation-duration: 15s;
 }
    .interpret-particle-2 { 
	width: 200px;
    height: 200px;
    bottom: 50px;
    left: -80px;
    animation-duration: 12s;
    animation-delay: 2s;
} 
    .interpret-particle-3 { 
	width: 150px;
    height: 150px;
    top: 72%;
    right: 29%;
    animation-duration: 18s;
    animation-delay: 4s; }

    .hero-container {
      max-width: 1280px;
      margin: 0 auto;
/*       padding: 0 4rem; */
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    /* Hero Content */
    .hero-content {
      animation: fadeInUp 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200, 92, 60, 0.12);
      padding: 0.4rem 1rem;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--terracotta);
      margin-bottom: 1.5rem;
    }

    .hero-badge i {
      font-size: 12px;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 70px;
      font-weight: 700;
      line-height: 1.1;
      color: var(--deep-charcoal);
      margin-bottom: 1.5rem;
      letter-spacing: -1px;
    }

    .hero h1 span {
      color: var(--terracotta);
      position: relative;
      display: inline-block;
    }

/*     .hero h1 span::after {
      content: '';
      position: absolute;
      bottom: 8px;
      left: 0;
      width: 100%;
      height: 6px;
      background: rgba(200, 92, 60, 0.2);
      z-index: -1;
    } */

    .hero-subhead {
      font-size: 18px;
      line-height: 1.6;
      color: var(--stone);
      margin-bottom: 2rem;
      max-width: 500px;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--terracotta);
      color: white;
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 4px 15px rgba(200, 92, 60, 0.25);
    }

    .btn-primary:hover {
      background: var(--deep-charcoal);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(200, 92, 60, 0.35);
    }

    .btn-secondary {
      background: transparent;
      border: 2px solid var(--terracotta);
      color: var(--terracotta);
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

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

    .trust-strip {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      padding-top: 2rem;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .trust-item i {
      font-size: 20px;
      color: #c85c3c;
    }

    .trust-item span {
      font-size: 14px;
      font-weight: 500;
      color: var(--deep-charcoal);
    }

    /* Hero Illustration */
    .hero-illustration {
      position: relative;
      animation: fadeInRight 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(40px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .hero-image-wrapper {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
    }

    .hero-image-wrapper img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .hero-image-wrapper:hover img {
      transform: scale(1.02);
    }

    .stats-card {
      position: absolute;
      background: white;
      padding: 1rem 1.5rem;
      border-radius: 20px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      gap: 12px;
      animation: floatCard 4s ease-in-out infinite;
    }

    @keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    .stats-card-1 {
      bottom: -20px;
      left: -30px;
      animation-delay: 0s;
    }

    .stats-card-2 {
      top: 20%;
      right: -30px;
      animation-delay: 1s;
    }

    .stats-card i {
      font-size: 32px;
      color: #c85c3c;
    }

    .stats-card-content h4 {
      font-size: 20px;
      font-weight: 800;
      color: var(--deep-charcoal);
    }

    .stats-card-content p {
      font-size: 12px;
      color: var(--stone);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 6rem 2rem 3rem;
        text-align: center;
      }
      .hero h1 { font-size: 48px; }
      .hero-subhead { margin-left: auto; margin-right: auto; }
      .hero-buttons { justify-content: center; }
      .trust-strip { justify-content: center; }
      .stats-card-1 { left: 10px; bottom: -30px; }
      .stats-card-2 { top: auto; bottom: 20px; right: 10px; }
    }

    @media (max-width: 768px) {
        .nav {
    display: none !important;
  }

  .nav.active {
    display: flex !important;
  }
      .hero h1 { font-size: 50px; }
      .hero-container { padding: unset; }
      .stats-card { padding: 0.75rem 1rem; }
      .stats-card i { font-size: 24px; }
      .stats-card-content h4 { font-size: 16px; }
.hero {
    padding: 8rem 2rem 5rem 2rem;
}
    }

/* ===============================
   MOBILE NAV + HAMBURGER CLEAN
================================= */

.menu-toggle {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {

  /* SHOW HAMBURGER */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
  }

  .menu-toggle .bar {
    width: 26px;
    height: 3px;
    background: var(--deep-charcoal);
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  /* ANIMATION */
  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  /* NAV PANEL */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 25px;
    gap: 25px;
    transition: 0.4s ease;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

  /* ACTIVE STATE */
  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 18px;
    width: 100%;
  }
}

/* HOME ABOUT SECTION STYLES */

.home-about {
  padding: 80px 20px;
  background: #FFFFFF;
}

.home-about-container {
  max-width: 1280px;
  margin: 0 auto;
}

.home-about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Column - Image */
.home-about-image-col {
  position: relative;
}

.home-about-image-frame {
  position: relative;
  border-radius: 28px;
  overflow: visible;
}

.home-about-image-frame img {
  width: 100%;
  border-radius: 28px;
  display: block;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.home-about-image-frame:hover img {
  transform: scale(1.015);
}

.home-about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #C85C3C;
  color: white;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 26px rgba(200, 92, 60, 0.35);
  animation: floatCard 4s ease-in-out infinite;
}

.home-about-image-badge i {
  font-size: 22px;
}

.home-about-image-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.home-about-image-badge span {
  font-size: 10px;
  opacity: 0.85;
}

/* Right Column - Content */
.home-about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 92, 60, 0.1);
  color: #C85C3C;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.home-about-pill i {
  font-size: 10px;
}

.home-about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #1A1A2E;
  margin-bottom: 20px;
}

.home-about-heading span {
  color: #C85C3C;
}

.home-about-description {
  font-size: 16px;
  line-height: 1.7;
  color: #6B6B7A;
  margin-bottom: 20px;
}

.home-about-description-second {
  margin-bottom: 0;
}

.home-about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 70px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.home-about-stat-item {
  text-align: left;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
}

.home-about-stat-number {
font-family: 'Cormorant Garamond', serif;
    font-size: 70px;
    font-weight: 700;
    color: #C85C3C;
    line-height: 1;
    padding-bottom: 15px;
}

.home-about-stat-number span {
  font-size: 20px;
}

.home-about-stat-label {
  font-size: 16px;
  color: #6B6B7A;
  margin-top: 5px;
}

.home-about-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C85C3C;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 28px;
  border-radius: 50px;
  margin-top: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(200, 92, 60, 0.25);
}
.home-about-button-main {
 text-align: center;
}

.home-about-button:hover {
  background: #1A1A2E;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(200, 92, 60, 0.3);
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .home-about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .home-about-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .home-about {
    padding: 4rem 2rem 4rem 2rem;
  }
  
  .home-about-heading {
    font-size: 32px;
  }
  
  .home-about-stats {
    gap: 25px;
  }
  
  .home-about-stat-number {
    font-size: 30px;
  }
  
  .home-about-image-badge {
    bottom: -10px;
    right: -10px;
    padding: 10px 14px;
  }
}
/* ============================================
   HOME PAGE SECTIONS STYLES
   ============================================ */

/* ---------- SERVICES SECTION ---------- */
.home-services {
  padding: 80px 20px;
  background: #FAF7F2;
}

.home-services-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.home-services-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 92, 60, 0.1);
  color: #C85C3C;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.home-services-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 15px;
}

.home-services-title span {
  color: #C85C3C;
}

.home-services-subtitle {
  font-size: 18px;
  color: #6B6B7A;
  max-width: 540px;
  margin: 0 auto;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.home-service-card {
  background: #FFFFFF;
  padding: 35px 28px;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.home-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.09);
}

.home-service-card-featured {
  background: #C85C3C;
  border-color: transparent;
      overflow: hidden;
}

.home-service-card-featured .home-service-name,
.home-service-card-featured .home-service-description,
.home-service-card-featured .home-service-link {
  color: white !important;
}

.home-service-card-featured .home-service-icon {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.home-service-ribbon {
position: absolute;
    top: 30px;
    right: -29px;
    background: #D4AF37;
    color: #1A1A2E;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 38px;
    transform: rotate(35deg);
}

.home-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(200, 92, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #C85C3C;
  transition: transform 0.3s;
}

.home-service-card:hover .home-service-icon {
  transform: rotate(-6deg) scale(1.1);
}

.home-service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 12px;
}

.home-service-description {
  font-size: 16px;
  line-height: 1.7;
  color: #6B6B7A;
  margin-bottom: 20px;
}

.home-service-link {
  font-size: 14px;
  font-weight: 600;
  color: #C85C3C;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.home-service-link:hover {
  gap: 12px;
}

/* ---------- WHY CHOOSE US SECTION ---------- */
.home-whyus {
  padding: 80px 20px;
  background: #FFFFFF;
}

.home-whyus-container {
  max-width: 1280px;
  margin: 0 auto;
}

.home-whyus-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.home-whyus-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 92, 60, 0.1);
  color: #C85C3C;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.home-whyus-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 20px;
}

.home-whyus-heading span {
  color: #C85C3C;
}

.home-whyus-description {
  font-size: 18px;
  line-height: 1.7;
  color: #6B6B7A;
  margin-bottom: 30px;
}

.home-whyus-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.home-whyus-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.home-whyus-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: #C85C3C;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.home-whyus-text h4 {
font-size: 18px;
    font-weight: 600;
    color: #1A1A2E;
    margin-bottom: 10px;
}

.home-whyus-text p {
  font-size: 16px;
  color: #6B6B7A;
  line-height: 1.65;
}

.home-whyus-image-frame {
  position: relative;
  border-radius: 28px;
  overflow: visible;
}
.home-whyus-image-frame img {
  width: 100%;
  border-radius: 28px;
  display: block;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.1);
}

.home-whyus-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #FFFFFF;
  color: #1A1A2E;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.11);
      animation: floatCard 4s ease-in-out infinite;
}

.home-whyus-image-badge i {
  font-size: 22px;
  color: #c85c3c;
}

.home-whyus-image-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.home-whyus-image-badge span {
  font-size: 10px;
  color: #6B6B7A;
}

/* ---------- TESTIMONIALS SECTION ---------- */
.home-testimonials {
  padding: 80px 20px;
  background: #FAF7F2;
}

.home-testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.home-testimonials-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 92, 60, 0.1);
  color: #C85C3C;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.home-testimonials-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 700;
  color: #1A1A2E;
}

.home-testimonials-title span {
  color: #C85C3C;
}

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

.home-testimonial-card {
  background: #FFFFFF;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.home-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.home-testimonial-card-dark {
  background: #1A1A2E;
  border-color: transparent;
}

.home-testimonial-card-dark .home-testimonial-text,
.home-testimonial-card-dark .home-testimonial-info strong {
  color: white !important;
}

.home-testimonial-card-dark .home-testimonial-info span {
  color: rgba(255, 255, 255, 0.55) !important;
}

.home-testimonial-stars {
  font-size: 15px;
  color: #D4AF37;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.home-testimonial-text {
font-size: 16px;
    line-height: 1.72;
    color: #6B6B7A;
    /* font-style: italic; */
    margin-bottom: 20px;
    min-height: 85px;
}

.home-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(200, 92, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C85C3C;
  font-size: 15px;
}

.home-testimonial-avatar-white {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.home-testimonial-info strong {
  display: block;
  font-size: 14px;
  color: #1A1A2E;
}

.home-testimonial-info span {
  font-size: 11px;
  color: #6B6B7A;
}

/* ---------- CITIES SECTION ---------- */
.home-cities {
  padding: 80px 20px;
  background: #FFFFFF;
}

.home-cities-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.home-cities-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 92, 60, 0.1);
  color: #C85C3C;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.home-cities-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 15px;
}

.home-cities-title span {
  color: #C85C3C;
}

.home-cities-subtitle {
  font-size: 18px;
  color: #6B6B7A;
}

.home-cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 15px;
}

.home-city-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  background: #F5F0E8;
  border: 1.5px solid rgba(200, 92, 60, 0.2);
  font-size: 16px;
  font-weight: 600;
  color: #1A1A2E;
  transition: all 0.25s ease;
}

.home-city-badge i {
  color: #C85C3C;
  font-size: 14px;
}

.home-city-badge:hover {
  background: #C85C3C;
  color: white;
  border-color: #C85C3C;
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(200, 92, 60, 0.25);
}

.home-city-badge:hover i {
  color: white;
}

/* ---------- CONTACT SECTION ---------- */
.home-contact {
  padding: 80px 20px;
  background: #1A1A2E;
}

.home-contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

.home-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 50px;
}

.home-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 92, 60, 0.15);
  color: #C85C3C;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.home-contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.home-contact-heading span {
  color: #C85C3C;
}

.home-contact-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  line-height: 1.6;
}

.home-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.home-contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
}

.home-contact-method:hover {
  border-color: #C85C3C;
  transform: translateX(5px);
}

.home-contact-method-green {
  background: rgba(46, 125, 50, 0.15);
}

.home-contact-method-green:hover {
  border-color: #2e7d32;
}

.home-contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 11px;
  background: #C85C3C;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.home-contact-icon-green {
  background: #2e7d32;
}

.home-contact-detail strong {
  display: block;
  font-size: 16px;
  color: white;
}

.home-contact-detail span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.home-contact-method-green .home-contact-detail strong {
  color: #4caf50;
}

.home-contact-assurance {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(200, 92, 60, 0.1);
  border-radius: 11px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.home-contact-assurance i {
  color: #C85C3C;
  font-size: 16px;
}

.home-contact-assurance strong {
  color: white;
}

.home-contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
}

.home-contact-form-fields {
  display: flex;
  flex-direction: column;
}

.home-contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.home-contact-form-group {
  margin-bottom: 18px;
}

.home-contact-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.home-contact-form-group input,
.home-contact-form-group select,
.home-contact-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 11px;
  font-family: inherit;
  font-size: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: border-color 0.2s;
}

.home-contact-form-group input:focus,
.home-contact-form-group select:focus,
.home-contact-form-group textarea:focus {
  border-color: #C85C3C;
}

.home-contact-form-group input::placeholder,
.home-contact-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.home-contact-form-group select option {
  background: #1A1A2E;
  color: white;
}

.home-contact-submit {
  width: 100%;
  background: #C85C3C;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 11px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.home-contact-submit:hover {
  background: #A8421E;
  transform: translateY(-2px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .home-services-grid,
  .home-testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .home-whyus-wrapper,
  .home-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .home-services-title,
  .home-whyus-heading,
  .home-testimonials-title,
  .home-cities-title {
    font-size: 36px;
  }
  
  .home-contact-wrapper {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .home-services,
  .home-whyus,
  .home-testimonials,
  .home-cities,
  .home-contact {
    padding: 4rem 2rem 4rem 2rem;
  }
  
  .home-services-title,
  .home-whyus-heading,
  .home-testimonials-title,
  .home-cities-title {
    font-size: 32px;
  }
  
  .home-services-grid,
  .home-testimonials-grid {
    gap: 20px;
  }
  
  .home-contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .home-whyus-image-badge {
    left: 0;
    bottom: -10px;
  }
}

/* ============================================
   FOOTER SECTION STYLES
   ============================================ */

.footer {
  background: #0A0A1A;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Column 1 - Brand */
.footer-col-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
  display: inline-block;
  margin-bottom: 15px;
}

.footer-logo span {
  color: #C85C3C;
}

.footer-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  background: #C85C3C;
  transform: translateY(-3px);
}

/* Column Headings */
.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #C85C3C;
}

/* Column 2 - Quick Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #C85C3C;
  transform: translateX(5px);
}

/* Column 3 - Contact Info */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
  width: 32px;
  height: 32px;
  background: rgba(200, 92, 60, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #C85C3C;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: #C85C3C;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.6);
}

/* Column 4 - Cities Served */
.footer-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-city {
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-city:hover {
  background: #C85C3C;
  color: white;
  transform: translateY(-2px);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding-top: 25px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.footer-whatsapp-float {
position: fixed;
    bottom: 85px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: footer-whatsapp-pulse 2s infinite;
}

.footer-whatsapp-float:hover {
  transform: scale(1.1);
  background: #20b859;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.footer-whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #1A1A2E;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.footer-whatsapp-float:hover .footer-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@keyframes footer-whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-col-brand {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 5rem 2rem 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-heading::after {
    left: 0;
    right: auto;
  }
  
  .footer-whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 85px;
    right: 25px;
  }
  
  .footer-whatsapp-tooltip {
    display: none;
  }
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: white;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    color: white;
}

.scroll-top {
position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border: none;
    /* border-radius: 50%; */
    background: #c85c3c;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: all 0.3s ease;
}
.scroll-top:hover {
  background: #333;
  transform: translateY(-3px);
}


.interpret-container {
max-width: 1280px;
    margin: 0 auto;
/*     padding: 0 20px; */
    position: relative;
    z-index: 999;
}

/* ========== SIMPLE HERO ========== */
.interpret-hero {
  background: linear-gradient(135deg, #FAF7F2 0%, #F5F0E8 100%);
  padding: 10rem 2rem 5rem 2rem;
  text-align: center;
  position: relative;
}
.interpret-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.interpret-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--deep-charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.interpret-hero h1 span {
  color: #C85C3C;
}

.interpret-hero p {
  font-size: 18px;
  color: #6B6B7A;
  max-width: 700px;
  margin: 0 auto 30px;
}

.interpret-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.interpret-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C85C3C;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.interpret-btn-primary:hover {
  background: #1A1A2E;
  transform: translateY(-3px);
}

.interpret-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid #C85C3C;
  color: #C85C3C;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.interpret-btn-outline:hover {
  background: #C85C3C;
  color: white;
  transform: translateY(-3px);
}

/* ========== INTRO SECTION ========== */
.interpret-intro {
  padding: 5rem 2rem;
  background: white;
}

.interpret-intro-grid {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.interpret-intro-text {
  flex: 1;
}

.interpret-intro-text h2 {
font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #1A1A2E;
    margin-bottom: 20px;
}

.interpret-intro-text h2 span {
  color: #C85C3C;
}

.interpret-intro-text p {
  font-size: 16px;
  color: #6B6B7A;
  margin-bottom: 20px;
  line-height: 1.7;
}

.interpret-intro-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.interpret-mode-card {
  background: #FAF7F2;
  padding: 28px;
  border-radius: 20px;
  transition: all 0.3s;
}

.interpret-mode-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.interpret-mode-card i {
  font-size: 42px;
  color: #C85C3C;
  margin-bottom: 15px;
}

.interpret-mode-card h3 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #1A1A2E;
}

.interpret-mode-card p {
  color: #6B6B7A;
  line-height: 1.6;
}

/* ========== SERVICES LIST ========== */
.interpret-services {
  padding: 5rem 2rem;
  background: #FAF7F2;
}

.interpret-section-title {
font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #1A1A2E;
    margin-bottom: 20px;
    text-align: center;
}

.interpret-section-title span {
  color: #C85C3C;
}

.interpret-section-subtitle {
  text-align: center;
  color: #6B6B7A;
  margin-bottom: 50px;
  font-size: 18px;
}

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

.interpret-service-item {
  background: white;
  padding: 18px 24px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.interpret-service-item:hover {
  background: #C85C3C;
  transform: translateX(8px);
}

.interpret-service-item:hover i,
.interpret-service-item:hover span {
  color: white;
}

.interpret-service-item i {
  font-size: 28px;
  color: #C85C3C;
  transition: color 0.3s;
}

.interpret-service-item span {
  font-size: 18px;
  font-weight: 500;
  color: #1A1A2E;
  transition: color 0.3s;
}

.interpret-service-highlight {
  background: #C85C3C;
  position: relative;
}

.interpret-service-highlight i,
.interpret-service-highlight span {
  color: white;
}

.interpret-service-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #D4AF37;
  color: #1A1A2E;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ========== INDUSTRIES SECTION ========== */
.interpret-industries {
  padding: 5rem 2rem;
  background: #1A1A2E;
  text-align: center;
}

.interpret-industries .interpret-section-title {
  color: white;
}

.interpret-industries .interpret-section-title span {
  color: #D4AF37;
}

.interpret-industries-desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 50px;
  font-size: 18px;
}

.interpret-industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.interpret-industry {
  background: rgba(255,255,255,0.1);
  padding: 12px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: white;
  transition: all 0.3s;
}

.interpret-industry i {
  color: #D4AF37;
  font-size: 16px;
}

.interpret-industry:hover {
  background: #C85C3C;
  transform: translateY(-3px);
}

.interpret-industry:hover i {
  color: white;
}

/* ========== TESTIMONIALS ========== */
.interpret-testimonials {
  padding: 5rem 2rem;
  background: #FAF7F2;
}

.interpret-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.interpret-testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  border-left: 4px solid #C85C3C;
  transition: all 0.3s;
}

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

.interpret-stars {
  color: #D4AF37;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.interpret-testimonial-card p {
  color: #1A1A2E;
  margin-bottom: 20px;
  line-height: 1.6;
}

.interpret-client {
  font-size: 14px;
  color: #6B6B7A;
}

.interpret-client strong {
  color: #C85C3C;
}

/* ========== CITIES SECTION ========== */
.interpret-cities {
  padding: 5rem 2rem;
  background: white;
  text-align: center;
}

.interpret-cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 15px;
  margin-top: 40px;
}

.interpret-city {
  background: #F5F0E8;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  color: #1A1A2E;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.interpret-city i {
  color: #C85C3C;
  font-size: 14px;
}

.interpret-city:hover {
  background: #C85C3C;
  color: white;
  transform: translateY(-3px);
}

.interpret-city:hover i {
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .interpret-testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .interpret-hero h1 {
    font-size: 36px;
  }
  
  .interpret-section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .interpret-intro-grid {
    flex-direction: column;
  }
  
  .interpret-hero h1 {
    font-size: 50px;
  }
  .interpret-intro-text h2 {
    font-size: 32px;
}
.interpret-mode-card h3 {
    font-size: 25px;
}
  .interpret-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Container */
.translation-container {
max-width: 1280px;
    margin: 0 auto;
    /* padding: 0 20px; */
    position: relative;
    z-index: 999;
}

/* ========== SIMPLE HERO ========== */
.translation-hero {
background: linear-gradient(135deg, #FAF7F2 0%, #F5F0E8 100%);
    padding: 10rem 2rem 5rem 2rem;
    text-align: center;
    position: relative;
}

.translation-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--deep-charcoal);
padding-bottom: 1.5rem;
    letter-spacing: -1px;
    max-width: 900px;
    margin: 0 auto;
}

.translation-hero h1 span {
  color: #C85C3C;
}

.translation-hero p {
  font-size: 18px;
  color: #6B6B7A;
  max-width: 900px;
  margin: 0 auto 30px;
}

.translation-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.translation-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C85C3C;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.translation-btn-primary:hover {
  background: #1A1A2E;
  transform: translateY(-3px);
}

.translation-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid #C85C3C;
  color: #C85C3C;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.translation-btn-outline:hover {
  background: #C85C3C;
  color: white;
  transform: translateY(-3px);
}

/* ========== INTRO SECTION ========== */
.translation-intro {
  padding: 80px 20px;
  background: white;
}

.translation-intro-grid {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.translation-intro-text {
  flex: 1;
}

.translation-intro-text h2 {
font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #1A1A2E;
    margin-bottom: 20px;
}

.translation-intro-text h2 span {
  color: #C85C3C;
}

.translation-intro-text p {
  font-size: 16px;
  color: #6B6B7A;
  margin-bottom: 20px;
  line-height: 1.7;
}

.translation-intro-highlight {
  flex: 1;
  background: linear-gradient(135deg, #FAF7F2, #F5F0E8);
  padding: 35px;
  border-radius: 24px;
  text-align: center;
}

.translation-intro-highlight i {
  font-size: 48px;
  color: #D4AF37;
  margin-bottom: 20px;
}

.translation-intro-highlight h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1A1A2E;
}

.translation-intro-highlight p {
  color: #6B6B7A;
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.translation-testimonials {
  padding: 80px 20px;
  background: #FAF7F2;
}

.translation-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.translation-testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  border-left: 4px solid #C85C3C;
  transition: all 0.3s;
}

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

.translation-stars {
  color: #D4AF37;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.translation-testimonial-card p {
/*   font-style: italic; */
  color: #1A1A2E;
  margin-bottom: 20px;
  line-height: 1.6;
}

.translation-client {
  font-size: 14px;
  color: #6B6B7A;
}

.translation-client strong {
  color: #C85C3C;
}

/* ========== CITIES SECTION ========== */
.translation-cities {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.translation-cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 15px;
  margin-top: 40px;
}

.translation-city {
  background: #F5F0E8;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  color: #1A1A2E;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.translation-city i {
  color: #C85C3C;
  font-size: 14px;
}

.translation-city:hover {
  background: #C85C3C;
  color: white;
  transform: translateY(-3px);
}

.translation-city:hover i {
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .translation-testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .translation-hero h1 {
    font-size: 36px;
  }
  
  .translation-section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .translation-intro-grid {
    flex-direction: column;
  }
  
  .translation-hero h1 {
    font-size: 50px;
  }
.translation-intro-text h2 {
    font-size: 32px;
}
}

/* Section Header */
.translation-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.translation-section-tag {
  display: inline-block;
  background: rgba(200, 92, 60, 0.12);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  color: #C85C3C;
  margin-bottom: 15px;
}

.translation-section-title {
font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #1A1A2E;
    margin-bottom: 20px;
    text-align: center;
}

.translation-section-title span {
  color: #C85C3C;
}

/* DOCUMENT TYPES GRID */
.translation-doc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.translation-doc-item {
  background: white;
  padding: 20px 16px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.translation-doc-item:hover {
  background: #C85C3C;
  transform: translateY(-5px);
}

.translation-doc-item:hover i,
.translation-doc-item:hover span {
  color: white;
}

.translation-doc-item i {
  font-size: 32px;
  color: #C85C3C;
  margin-bottom: 12px;
  display: block;
}

.translation-doc-item span {
  font-size: 14px;
  font-weight: 500;
  color: #1A1A2E;
}

/* KEY BENEFITS GRID */
.translation-benefits {
  padding: 80px 0;
  background: white;
}

.translation-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.translation-benefit-item {
  text-align: center;
  padding: 25px 15px;
  background: #f8f6f2;
  border-radius: 20px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.translation-benefit-item:hover {
  transform: translateY(-8px);
  background: #C85C3C;
}

.translation-benefit-item:hover .translation-benefit-icon,
.translation-benefit-item:hover h4,
.translation-benefit-item:hover p {
  color: white;
}

.translation-benefit-icon {
  font-size: 40px;
  color: #C85C3C;
  margin-bottom: 15px;
}

.translation-benefit-item h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #1A1A2E;
}

.translation-benefit-item p {
  font-size: 12px;
  color: #6B6B7A;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .translation-doc-grid,
  .translation-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .translation-section-title {
    font-size: 32px;
  }
  
  .translation-doc-grid,
  .translation-benefits-grid {
    grid-template-columns: 1fr;
  }
}
section.translation-documents {
    padding: 80px 20px;
    background: #f8f6f2;
}

/* ========== Course Page ========== */
/* ============================================
   SPANISH COURSES PAGE - COMPLETE CSS
   ============================================ */

/* Container */
.courses-container {
  max-width: 1280px;
  margin: 0 auto;
/*   padding: 0 20px; */
}

/* ========== HERO SECTION ========== */
.courses-hero {
  background: linear-gradient(135deg, #FAF7F2 0%, #F5F0E8 100%);
  padding: 10rem 2rem 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.courses-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(200, 92, 60, 0.1);
  border-radius: 50%;
  animation: floatParticle 12s infinite ease-in-out;
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  50% { transform: translateY(-40px) translateX(20px); opacity: 0.6; }
}

.courses-particle-1 { width: 300px; height: 300px; top: -100px; right: -100px; animation-duration: 15s; }
.courses-particle-2 { width: 200px; height: 200px; bottom: 50px; left: -80px; animation-duration: 12s; animation-delay: 2s; }
.courses-particle-3 { width: 150px; height: 150px; top: 40%; right: 10%; animation-duration: 18s; animation-delay: 4s; }

.courses-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--deep-charcoal);
padding-bottom: 1.5rem;
    letter-spacing: -1px;
    max-width: 900px;
    margin: 0 auto;
}

.courses-hero h1 span {
  color: var(--terracotta);
}

.courses-hero p {
  font-size: 18px;
  color: var(--stone);
  max-width: 700px;
  margin: 0 auto 30px;
}

.courses-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.courses-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracotta);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.courses-btn-primary:hover {
  background: var(--deep-charcoal);
  transform: translateY(-3px);
}

.courses-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

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

/* ========== INTRO SECTION ========== */
.courses-intro {
  padding: 80px 20px;
  background: white;
}

.courses-intro-grid {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.courses-intro-text {
  flex: 1;
}

.courses-intro-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #1A1A2E;
    margin-bottom: 20px;

}

.courses-intro-text h2 span {
  color: var(--terracotta);
}

.courses-intro-text p {
  font-size: 16px;
  color: var(--stone);
  margin-bottom: 20px;
  line-height: 1.7;
}

.courses-intro-feature {
  flex: 1;
  background: linear-gradient(135deg, var(--cream), var(--sand));
  padding: 35px;
  border-radius: 24px;
  text-align: center;
}

.courses-intro-feature i {
  font-size: 48px;
  color: var(--gold-soft);
  margin-bottom: 20px;
}

.courses-intro-feature h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--deep-charcoal);
}

.courses-intro-feature p {
  color: var(--stone);
  line-height: 1.6;
}

/* ========== COURSE CARDS SECTION ========== */
.courses-cards {
  padding: 80px 20px;
  background: linear-gradient(135deg, #F8F6F2 0%, #F5F0E8 100%);
}

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

.courses-section-tag {
  display: inline-block;
  background: rgba(200, 92, 60, 0.12);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.courses-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #1A1A2E;
    margin-bottom: 20px;
	text-align: center;
}

.courses-section-title span {
  color: var(--terracotta);
}

.courses-section-subtitle {
  font-size: 18px;
  color: var(--stone);
  max-width: 600px;
  margin: 0 auto;
}

/* Course Grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

/* Course Card */
.courses-card {
  background: white;
  border-radius: 28px;
  padding: 32px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
}

.courses-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold-soft));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.courses-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

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

/* Featured Card */
.courses-card-featured {
  background: linear-gradient(135deg, #1A1A2E, #2A2A3E);
  color: white;
  border: 1px solid rgba(200,92,60,0.3);
}

.courses-card-featured .courses-card-title,
.courses-card-featured .courses-card-subtitle,
.courses-card-featured .courses-detail-label,
.courses-card-featured .courses-detail-value,
.courses-card-featured .courses-feature {
  color: white;
}

.courses-card-featured .courses-detail-item {
  border-bottom-color: rgba(255,255,255,0.1);
}

.courses-card-featured .courses-detail-icon i {
  color: var(--gold-soft);
}

/* Card Badge */
.courses-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(200,92,60,0.12);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  color: var(--terracotta);
}

.courses-badge-popular {
  background: var(--gold-soft);
  color: #1A1A2E;
}

.courses-card-featured .courses-card-badge {
  background: var(--terracotta);
  color: white;
}

/* Level Tag */
.courses-card-level {
  margin-bottom: 20px;
}

.courses-level-tag {
  display: inline-block;
  background: #F0F0F0;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--terracotta);
}

.courses-card-featured .courses-level-tag {
  background: rgba(255,255,255,0.15);
  color: var(--gold-soft);
}

/* Card Icon */
.courses-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--cream), var(--sand));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.courses-card-icon i {
  font-size: 36px;
  color: var(--terracotta);
}

.courses-card-featured .courses-card-icon {
  background: rgba(255,255,255,0.1);
}

.courses-card-featured .courses-card-icon i {
  color: var(--gold-soft);
}

/* Card Title */
.courses-card-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--deep-charcoal);
}

.courses-card-subtitle {
  font-size: 16px;
  color: var(--stone);
  margin-bottom: 24px;
}

/* Card Details */
.courses-card-details {
  background: var(--cream);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 24px;
}

.courses-card-featured .courses-card-details {
  background: rgba(255,255,255,0.08);
}

.courses-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.courses-detail-item:last-child {
  border-bottom: none;
}

.courses-detail-icon i {
  font-size: 18px;
  color: var(--terracotta);
}

.courses-detail-text {
  flex: 1;
}

.courses-detail-label {
  display: block;
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 2px;
}

.courses-detail-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--deep-charcoal);
}

.courses-price {
  font-size: 20px;
  color: var(--terracotta);
}

.courses-card-featured .courses-price {
  color: var(--gold-soft);
}

/* Features */
.courses-card-features {
  margin-bottom: 28px;
}

.courses-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--deep-charcoal);
}

.courses-feature i {
  font-size: 14px;
  color: var(--terracotta);
}

.courses-card-featured .courses-feature i {
  color: var(--gold-soft);
}

/* Button */
.courses-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #c85c3c;
  color: white;
  padding: 14px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.courses-btn-wa-featured {
  background: var(--terracotta);
}

.courses-btn-wa:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 10px 20px rgba(37,211,102,0.2);
}

.courses-btn-arrow {
  transition: transform 0.3s;
}

.courses-btn-wa:hover .courses-btn-arrow {
  transform: translateX(5px);
}

/* ========== WHY LEARN WITH US ========== */
.courses-why {
  padding: 80px 20px;
  background: white;
}

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

.courses-why-card {
  text-align: center;
  padding: 35px 20px;
  background: var(--cream);
  border-radius: 20px;
  transition: all 0.3s;
}

.courses-why-card:hover {
  transform: translateY(-5px);
  background: var(--terracotta);
}

.courses-why-card:hover i,
.courses-why-card:hover h4,
.courses-why-card:hover p {
  color: white;
}

.courses-why-card i {
  font-size: 48px;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.courses-why-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--deep-charcoal);
}

.courses-why-card p {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.5;
}

/* ========== TESTIMONIALS ========== */
.courses-testimonials {
  padding: 80px 20px;
  background: var(--cream);
}

.courses-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.courses-testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  border-left: 4px solid var(--terracotta);
  transition: all 0.3s;
}

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

.courses-stars {
  color: var(--gold-soft);
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.courses-testimonial-card p {
/*   font-style: italic; */
  color: var(--deep-charcoal);
  line-height: 1.6;
  margin-bottom: 20px;
}

.courses-student {
  font-size: 14px;
  color: var(--stone);
}

.courses-student strong {
  color: var(--terracotta);
}

/* ========== CITIES SECTION ========== */
.courses-cities {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.courses-cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 15px;
  margin-top: 40px;
}

.courses-city {
  background: var(--sand);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--deep-charcoal);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.courses-city i {
  color: var(--terracotta);
  font-size: 14px;
}

.courses-city:hover {
  background: var(--terracotta);
  color: white;
  transform: translateY(-3px);
}

.courses-city:hover i {
  color: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .courses-grid,
  .courses-why-grid,
  .courses-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .courses-intro-grid {
    flex-direction: column;
  }
  
  .courses-hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .courses-grid,
  .courses-why-grid,
  .courses-testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .courses-hero h1 {
    font-size: 50px;
  }
.courses-intro-text h2 {
    font-size: 32px;
}
  
  .courses-section-title {
    font-size: 32px;
  }
  
  .courses-card {
    padding: 28px;
  }
}

.jobs-container {
  max-width: 1280px;
  margin: 0 auto;
/*   padding: 0 20px; */
}

/* ========== HERO SECTION ========== */
.jobs-hero {
  background: linear-gradient(135deg, #FAF7F2 0%, #F5F0E8 100%);
  padding: 10rem 2rem 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jobs-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.jobs-particle {
  position: absolute;
  background: rgba(200, 92, 60, 0.1);
  border-radius: 50%;
  animation: floatJobs 12s infinite ease-in-out;
}

@keyframes floatJobs {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  50% { transform: translateY(-40px) translateX(20px); opacity: 0.6; }
}

.jobs-particle-1 { width: 300px; height: 300px; top: -100px; right: -100px; animation-duration: 15s; }
.jobs-particle-2 { width: 200px; height: 200px; bottom: 50px; left: -80px; animation-duration: 12s; animation-delay: 2s; }
.jobs-particle-3 { width: 150px; height: 150px; top: 40%; right: 10%; animation-duration: 18s; animation-delay: 4s; }

.jobs-hero h1 {
font-family: 'Cormorant Garamond', serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--deep-charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.jobs-hero h1 span {
  color: #C85C3C;
}

.jobs-hero p {
  font-size: 18px;
  color: #6B6B7A;
  max-width: 700px;
  margin: 0 auto;
}

/* ========== APPLICATION FORM ========== */
.jobs-form {
  padding: 60px 20px 100px;
  background: #FAF7F2;
}

.jobs-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.jobs-form-wrapper h2 {
font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #1A1A2E;
    margin-bottom: 20px;
   text-align: center;
}

.jobs-form-wrapper h2 span {
  color: #C85C3C;
}

.jobs-form-wrapper > p {
  text-align: center;
  color: #6B6B7A;
      margin-bottom: 40px;
    font-size: 18px;
}

.jobs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.jobs-form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 8px;
}
.wpcf7-form p br {
    display: none;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output
Specificity: (0,3,1)
 {
    border-color: #ffb900;
    color: #c85c3c;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: #c85c3c;
}
.jobs-form-group label i {
  color: #C85C3C;
  margin-right: 8px;
}

.jobs-form-group input,
.jobs-form-group select,
.jobs-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s;
}

.jobs-form-group input:focus,
.jobs-form-group select:focus,
.jobs-form-group textarea:focus {
  outline: none;
  border-color: #C85C3C;
}

.jobs-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.jobs-form-group small {
  font-size: 11px;
  color: #6B6B7A;
  display: block;
  margin-top: 5px;
}

.jobs-file-input input {
  padding: 10px;
  background: #FAF7F2;
}

.jobs-submit-btn {
  width: 100%;
  background: #C85C3C;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.jobs-submit-btn:hover {
  background: #1A1A2E;
  transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .jobs-form-row {
    grid-template-columns: 1fr;
  }
  
  .jobs-hero h1 {
    font-size: 50px;
  }
  
  .jobs-form-wrapper {
    padding: 30px 20px;
  }
  
  .jobs-form-wrapper h2 {
    font-size: 32px;
  }
  .translation-intro,
  section.translation-documents,
  .translation-benefits,
  .translation-testimonials,
  .translation-cities {
    padding: 4rem 2rem 4rem 2rem;
  }
  .courses-intro,
  .courses-cards,
  .courses-why,
  .courses-testimonials,
  .courses-cities,
   .jobs-form {
    padding: 4rem 2rem 4rem 2rem;
  }
}
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
}
.interpret-btn-primary i.fab.fa-whatsapp {
    font-size: 26px;
}
.courses-btn-wa i.fab.fa-whatsapp {
    font-size: 26px;
}
.courses-btn-primary i.fab.fa-whatsapp {
    font-size: 26px;
}