/* ==========================================================================
   Custom CSS for Laundromat POS Landing Page
   Modern, Beautiful Design for African Market (Nigeria)
   ========================================================================== */

:root {
  --primary-color: #0f766e;
  --primary-light: #14b8a6;
  --secondary-color: #0d47a1;
  --accent-color: #06b6d4;
  --accent-warm: #f97316;
  --success: #10b981;
  --danger: #ef4444;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray: #64748b;
  --light-gray: #f1f5f9;
  --lighter-gray: #f8fafc;
  --white: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;

  /* Animated Background System */
  --animated-bg-duration: 25s;
  --animated-bg-scale: 1.1;
  --animated-bg-blend-duration: 8s;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.6;
}

/* ===== HEADER SECTION ===== */
.cs_site_header {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
  box-shadow: 0 2px 10px rgba(15, 118, 110, 0.1);
  transition: all 0.3s ease;
}

.cs_site_header.cs_at_top {
  background: transparent;
  box-shadow: none;
}

.cs_site_header.cs_sticky_header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark) 100%);
  box-shadow: 0 4px 20px rgba(15, 118, 110, 0.15);
}

.cs_main_header {
  padding: 0.25rem 0;
}

.cs_main_header_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cs_main_header_left {
  flex-shrink: 0;
}

.cs_site_branding img {
  height: 88px;
  width: auto;
  display: block;
  margin: 10px;
}

.cs_main_header_center {
  flex-grow: 1;
}

.cs_nav_list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cs_nav_list li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
}

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

.cs_main_header_right {
  flex-shrink: 0;
}

.cs_header_btns {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cs_header_text_btn {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.cs_header_text_btn:hover {
  color: var(--accent-color);
}

.cs_btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
}

.cs_bg_accent {
  background: var(--accent-color);
  color: var(--white);
}

.cs_bg_accent:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

/* ===== HERO SECTION ===== */
.cs_hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a7a71 50%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
}

.cs_hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.cs_hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: rgba(15, 118, 110, 0.1);
  border-radius: 50%;
  animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 20px);
  }
}

.cs_hero_text {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cs_hero_title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
}

.cs_hero_subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.cs_btn_group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cs_btn_primary {
  background: var(--accent-color);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cs_btn_primary:hover {
  background: #0891b2;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.4);
}

.cs_btn_secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: 2px solid var(--white);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cs_btn_secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

/* ===== FEATURES SECTION ===== */
.cs_section_wrap_1,
.cs_section_shape_wrap_1 {
  background: var(--lighter-gray);
  padding: 80px 20px;
  position: relative;
}

.cs_section_title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cs_section_subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.cs_gradient_bg_1 {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

/* ===== PRICING SECTION ===== */
.cs_pricing_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.cs_pricing_table {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cs_pricing_table:hover {
  box-shadow: 0 20px 50px rgba(15, 118, 110, 0.15);
  transform: translateY(-8px);
}

.cs_pricing_table.active {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  box-shadow: 0 25px 60px rgba(15, 118, 110, 0.2);
  transform: translateY(-12px);
}

.cs_pricing_head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  flex-direction: column;
}

.cs_pricing_icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.cs_pricing_head_title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.cs_pricing_head_subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0.25rem 0 0 0;
}

.cs_pricing_seperator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: 1rem 0;
}

.cs_price_value {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--primary-color);
  margin: 0;
  line-height: 1;
}

.cs_price_value small {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.cs_pricing_feature {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cs_pricing_feature_list {
  list-style: none;
  margin: 1rem 0;
  flex-grow: 1;
  padding: 0;
}

.cs_pricing_feature_list li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.cs_pricing_feature_list i {
  color: var(--success);
  font-weight: bold;
  min-width: 20px;
  font-size: 0.9rem;
}

.cs_pricing_feature_list i.fa-xmark {
  color: #cbd5e1;
}

.cs_pricing_btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
  width: 100%;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.cs_pricing_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.3);
}

.cs_pricing_table.active .cs_pricing_btn {
  background: var(--white);
  color: var(--primary-color);
}

.cs_pricing_table.active .cs_pricing_btn:hover {
  background: #f1f5f9;
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.2);
}

.cs_pricing_badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-warm) 0%, #f97316 100%);
  color: var(--white);
  padding: 0.625rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

/* ===== FAQ SECTION ===== */
.cs_faq_wrap {
  background: var(--white);
  padding: 80px 20px;
}

.cs_accordian_wrap {
  background: transparent;
  max-width: 900px;
  margin: 0 auto;
}

.cs_accordian {
  background: var(--lighter-gray);
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cs_accordian.active {
  background: var(--white);
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.15);
}

.cs_accordian_title {
  padding: 1.75rem;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.cs_accordian_title:hover {
  color: var(--primary-color);
}

.cs_accordian_title i {
  transition: transform 0.3s ease;
  color: var(--accent-color);
}

.cs_accordian.active .cs_accordian_title i {
  transform: rotate(180deg);
}

.cs_accordian_body {
  padding: 0 1.75rem 1.75rem;
  display: none;
  color: var(--text-secondary);
  line-height: 1.8;
}

.cs_accordian.active .cs_accordian_body {
  display: block;
}

/* ===== TESTIMONIALS SECTION ===== */
.cs_testimonial_wrap {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: 80px 20px;
  color: var(--white);
}

.cs_testimonial_heading {
  text-align: center;
  margin-bottom: 4rem;
}

.cs_testimonial_heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cs_testimonial_heading p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.cs_testimonial_carousel {
  max-width: 1200px;
  margin: 0 auto;
}

.cs_testimonial_item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin: 0 1rem;
}

/* ===== FOOTER SECTION ===== */
.cs_site_footer {
  background: var(--dark);
  color: #cbd5e1;
  padding-top: 60px;
  padding-bottom: 30px;
  position: relative;
}

.cs_footer_shape1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
}

.cs_main_footer {
  position: relative;
  z-index: 2;
}

.cs_footer_widget {
  margin-bottom: 2rem;
}

.cs_footer_widget_title {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.cs_footer_widget_nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs_footer_widget_nav li {
  margin-bottom: 0.75rem;
}

.cs_footer_widget_nav a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.cs_footer_widget_nav a:hover {
  color: var(--accent-color);
  margin-left: 5px;
}

.cs_footer_logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.cs_social_btn {
  display: flex;
  gap: 1rem;
}

.cs_social_btn a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.2);
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cs_social_btn a:hover {
  background: var(--accent-color);
  color: var(--white);
  transform: translateY(-3px);
}

.cs_copyright_text {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* ===== UTILITIES ===== */
.cs_height_140 {
  height: 140px;
}


.cs_height_0 {
  height: 0;
}

.cs_text_white {
  color: var(--white);
}

.cs_text_field {
  margin-bottom: 2rem;
}

.cs_text_field p {
  color: #cbd5e1;
  line-height: 1.8;
}

.cs_color_1 {
  background: var(--dark);
}

.cs_sticky_footer {
  margin-top: auto;
}

.cs_perloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.6s ease, pointer-events 0.6s ease;
}

.cs_perloader.loaded {
  opacity: 0;
  pointer-events: none;
}

.cs_perloader_text {
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .cs_pricing_wrap {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .cs_nav_list {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .cs_hero_title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .cs_hero_subtitle {
    font-size: 1rem;
  }

  .cs_btn_group {
    flex-direction: column;
    align-items: center;
  }

  .cs_btn_primary,
  .cs_btn_secondary {
    width: 100%;
    max-width: 300px;
  }

  .cs_pricing_wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cs_pricing_table {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }

  .cs_section_title {
    font-size: 1.75rem;
  }

  .cs_accordian_title {
    padding: 1.25rem;
    font-size: 0.95rem;
  }

  .cs_accordian_body {
    padding: 0 1.25rem 1.25rem;
  }

  .cs_main_header_in {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .cs_main_header_center {
    order: 3;
    flex-basis: 100%;
    flex-grow: 0;
  }

  .cs_nav_list {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .cs_header_btns {
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  .cs_btn {
    padding: 0.625rem 1rem;
  }

  .cs_btn_primary,
  .cs_btn_secondary {
    padding: 0.875rem 1.5rem;
  }

  .cs_section_wrap_1,
  .cs_section_shape_wrap_1,
  .cs_faq_wrap {
    padding: 50px 15px;
  }

  .cs_section_title {
    font-size: 1.5rem;
  }

  .cs_pricing_table {
    padding: 2rem 1.5rem;
  }

  .cs_testimonial_wrap {
    padding: 50px 15px;
  }

  .cs_testimonial_item {
    margin: 0;
    margin-bottom: 1rem;
  }

  .cs_footer_widget_nav li {
    margin-bottom: 0.5rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* ===== LEGAL PAGES SECTION ===== */
.cs_legal_section {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}

.cs_legal_heading h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cs_legal_content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.cs_legal_content h2:first-child {
  margin-top: 0;
}

.cs_legal_content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  margin-top: 1rem;
}

.cs_legal_content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 3rem 2rem;
  color: #cbd5e1;
  line-height: 1.8;
}

.cs_legal_content p {
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.cs_legal_content ul {
  margin-left: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.cs_legal_content li {
  margin-bottom: 0.5rem;
}

.cs_pricing_toggle {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 1rem 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.cs_pricing_toggle.monthly {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.3);
}

.cs_toggle_label {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: default;
  transition: color 0.3s ease;
}

.cs_pricing_toggle.monthly .cs_toggle_label:first-child {
  color: var(--accent-warm);
}

.cs_pricing_toggle.monthly .cs_toggle_label:last-child {
  color: var(--text-secondary);
}

.cs_toggle_switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  cursor: pointer;
}

.cs_toggle_switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cs_toggle_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--accent-warm);
  transition: all 0.4s ease;
  border-radius: 34px;
}

.cs_toggle_slider:before {
  position: absolute;
  content: '';
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white);
  transition: transform 0.4s ease;
  border-radius: 50%;
}

input:checked + .cs_toggle_slider {
  background-color: var(--primary-color);
}

input:checked + .cs_toggle_slider:before {
  transform: translateX(26px);
}

input:focus + .cs_toggle_slider {
  box-shadow: 0 0 1px rgba(6, 182, 212, 0.5);
}

.cs_toggle_savings {
  font-size: 0.75rem;
  color: var(--accent-color);
  font-weight: 700;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .cs_pricing_toggle {
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .cs_toggle_label {
    font-size: 0.85rem;
  }
}

/* ===== LANDING PAGE CTA SECTION ===== */

.cs_landing_cta_section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark) 100%);
  border-top: 2px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

.cs_landing_cta_section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cs_landing_cta_section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cs_landing_cta_title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.cs_landing_cta_subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cs_landing_cta_buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cs_landing_cta_buttons .cs_btn {
  text-decoration: none;
}

@media (max-width: 768px) {
  .cs_landing_cta_section {
    padding: 4rem 1.5rem;
  }

  .cs_landing_cta_title {
    font-size: 1.75rem;
  }

  .cs_landing_cta_subtitle {
    font-size: 1rem;
  }

  .cs_landing_cta_buttons {
    flex-direction: column;
  }

  .cs_landing_cta_buttons .cs_btn {
    width: 100%;
  }
}

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

/* Hero Section */
.cs_contact_hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark) 100%);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.cs_contact_hero_shape1,
.cs_contact_hero_shape2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.cs_contact_hero_shape1 {
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
}

.cs_contact_hero_shape2 {
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

.cs_contact_hero_title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cs_contact_hero_subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 0;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Contact Main Section */
.cs_contact_main {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.05) 0%, rgba(15, 23, 42, 0.05) 100%);
}

/* Form Styles */
.cs_contact_form_container {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(15, 118, 110, 0.2);
}

.cs_contact_form_title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cs_contact_form_subtitle {
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.cs_form_group {
  margin-bottom: 1.5rem;
}

.cs_form_label {
  display: block;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cs_contact_form_input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.5);
  border-radius: 0.75rem;
  color: var(--white);
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 1rem;
}

.cs_contact_form_input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.cs_contact_form_input:focus {
  outline: none;
  background: rgba(6, 182, 212, 0.25);
  border-color: rgba(6, 182, 212, 0.8);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
}

.cs_contact_textarea {
  resize: vertical;
}

.cs_contact_submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

/* FAQ Section */
.cs_contact_faq_section {
  padding: 4rem 2rem;
  background: var(--white);
}

.cs_contact_faq_card {
  text-decoration: none;
  display: block;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.15);
}

.cs_contact_faq_card:hover {
  border-color: rgba(6, 182, 212, 0.6);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.2);
}

.cs_contact_faq_icon {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.cs_contact_faq_title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.cs_contact_faq_text {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* CTA Section */
.cs_contact_cta_section {
  padding: 4rem 2rem;
}

.cs_contact_cta_box {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(15, 118, 110, 0.2) 100%);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .cs_contact_hero_title {
    font-size: 2.5rem;
  }

  .cs_contact_hero_subtitle {
    font-size: 1rem;
  }

  .cs_contact_form_container {
    padding: 2rem;
  }

  .cs_contact_submit {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .cs_contact_cta_box {
    padding: 2rem;
  }
}

/* ===== PRICING PAGE UTILITIES ===== */
.cs_pricing_strikethrough {
  color: #cbd5e1;
  text-decoration: line-through;
  font-size: 0.85rem;
}

/* ===== FOOTER UTILS ===== */
.cs_footer_section_separator {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.cs_footer_copyright {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cs_footer_link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.cs_footer_text {
  color: #94a3b8;
  font-size: 0.85rem;
}

.cs_footer_form_wrapper {
  display: inline;
}

.cs_footer_form_button {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.cs_footer_form_button:hover {
  color: var(--accent-color);
}

.cs_footer_social_label {
  color: #cbd5e1;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

/* ===== CONTACT PAGE INFO CARDS ===== */
.cs_contact_info_wrapper {
  padding-top: 1rem;
}

.cs_contact_info_card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-radius: 1rem;
  border-left: 4px solid var(--accent-color);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.cs_contact_info_card:hover {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.25) 0%, rgba(6, 182, 212, 0.2) 100%);
  border-color: rgba(6, 182, 212, 0.5);
  transform: translateX(5px);
}

.cs_contact_info_icon_wrapper {
  flex-shrink: 0;
}

.cs_contact_info_icon {
  width: 50px;
  height: 50px;
  background: rgba(6, 182, 212, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.cs_contact_info_card.warm .cs_contact_info_icon {
  background: rgba(14, 165, 233, 0.2);
  color: #0ea5e9;
}

.cs_contact_info_card.primary .cs_contact_info_icon {
  background: rgba(15, 118, 110, 0.2);
  color: var(--primary-color);
}

.cs_contact_info_card.secondary .cs_contact_info_icon {
  background: rgba(99, 102, 241, 0.2);
  color: rgba(99, 102, 241, 1);
}

.cs_contact_info_card.warm {
  border-left-color: #0ea5e9;
}

.cs_contact_info_card.primary {
  border-left-color: var(--primary-color);
}

.cs_contact_info_card.secondary {
  border-left-color: #6366f1;
}

.cs_contact_info_label {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.cs_contact_info_card.default .cs_contact_info_label {
  color: var(--accent-color);
}

.cs_contact_info_card.warm .cs_contact_info_label {
  color: #0ea5e9;
}

.cs_contact_info_card.primary .cs_contact_info_label {
  color: var(--primary-color);
}

.cs_contact_info_card.secondary .cs_contact_info_label {
  color: #6366f1;
}

.cs_contact_info_title {
  color: var(--text-primary);
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}

.cs_contact_info_subtitle {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0.25rem 0 0 0;
}

.cs_contact_faq_header {
  text-align: center;
  margin-bottom: 3rem;
}

.cs_contact_faq_header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cs_contact_faq_header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.cs_contact_cta_center {
  text-align: center;
  margin-top: 3rem;
}

.cs_contact_info_heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  margin-top: 0;
}

.cs_contact_cta_title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  margin-top: 0;
}

.cs_contact_cta_subtitle {
  color: #cbd5e1;
  margin-bottom: 2rem;
  font-size: 1rem;
}

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

/* Issue 2: Ensure header buttons visible on mobile */
@media (max-width: 1199px) {
    .cs_header_btns {
        display: flex !important;
        gap: 10px;
    }

    .cs_header_btns .cs_btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .cs_header_btns {
        flex-direction: column;
        width: 100%;
    }

    .cs_header_btns .cs_btn {
        width: 100%;
        text-align: center;
    }
}

/* Issue 3: Fix hero section spacing on mobile */
@media (max-width: 575px) {
  .cs_hero.cs_style_1 {
    padding-top: 100px;
  }

  /* Hide hero image on mobile */
  .cs_hero_img {
    display: none;
  }
}

/* Issue 4: Mobile navigation vertical layout with transparent background */
@media (max-width: 1199px) {
  .cs_nav .cs_nav_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    background: rgba(15, 118, 110, 0.85);
    backdrop-filter: blur(5px);
  }

  .cs_nav .cs_nav_list > li {
    width: auto;
    text-align: center;
    margin-right: 0 !important;
  }

  .cs_nav .cs_nav_list > li > a {]
    padding: 12px 24px;
    display: inline-block;
  }
}

/* Issue 1: Crop landing page images on mobile */
@media (max-width: 768px) {
  .cs_hero_img img {
    max-height: 300px;
    object-fit: cover;
    width: 100%;
  }

  .cs_about_img img,
  .cs_feature_img img {
    max-height: 500px;
    object-fit: cover;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cs_hero_img img {
    max-height: 250px;
  }

  .cs_about_img img,
  .cs_feature_img img {
    max-height: 280px;
  }
}

/* ===== ANIMATED BACKGROUND SYSTEM FOR HERO ===== */

/* Base container - positions the animated background */
.animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

/* Individual image layer */
.animated-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active state for JS-driven slideshow */
.animated-bg-image.active {
    opacity: 1;
}

/* Zoom animation for JS-driven slideshow */
.animated-bg-zoom-image {
    animation: bgZoom var(--animated-bg-duration) ease-in-out infinite alternate;
}

@keyframes bgZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(var(--animated-bg-scale));
    }
}

/* Hero background slideshow */
.cs_hero .animated-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cs_hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.92) 0%, rgba(26, 122, 113, 0.88) 50%, rgba(13, 148, 136, 0.92) 100%);
    z-index: 1;
}

.cs_hero .container {
    position: relative;
    z-index: 2;
}

/* Make hero transparent when it has animated background */
.cs_hero:has(.animated-bg) {
    background: transparent !important;
}

/* Hide pseudo-elements that block the background */
.cs_hero:has(.animated-bg)::before,
.cs_hero:has(.animated-bg)::after {
    display: none;
}
