/* ==============================================
   KLIN LAUNDRY SERVICE - COMPLETE STYLESHEET
   All styles for Homepage, Pricing, About, Login & Signup pages
   ============================================== */

/* ==============================================
   GLOBAL STYLES & CSS VARIABLES
   ============================================== */

:root {
  --teal: #84c0ad;
  --teal-dark: #6fb89f;
  --coral: #f28f6d;
  --coral-dark: #e87d5d;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --black: #4a4a4a;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-teal {
  color: var(--teal);
}

.text-coral {
  color: var(--coral);
}

/* ==============================================
   NAVIGATION
   ============================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gray-700);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.logo-text {
  background: linear-gradient(135deg, var(--teal), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gray-700);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.navbar-menu .menu-sect{
	display: flex;
	gap:16px;
	
}

.nav-link {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--teal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 0.625rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-nav-secondary {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn-nav-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-nav-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-md);
}

.btn-nav-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==============================================
   HOMEPAGE - HERO SECTION
   ============================================== */

.hero-section {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.gradient-orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 0;
}

.gradient-orb-1 {
  top: 0;
  right: 0;
  background: linear-gradient(to bottom right, var(--teal), transparent);
}

.gradient-orb-2 {
  bottom: 0;
  left: 0;
  background: linear-gradient(to top right, var(--coral), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(132, 192, 173, 0.1);
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--teal);
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
}

.hero-heading {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.user-type-toggle {
  display: inline-flex;
  background: var(--gray-100);
  border-radius: 2rem;
  padding: 0.375rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.user-type-btn {
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  border: none;
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s ease;
}

.user-type-btn.active[data-type="private"] {
  background: var(--white);
  color: var(--teal);
  box-shadow: var(--shadow-md);
}

.user-type-btn.active[data-type="business"] {
  background: var(--white);
  color: var(--coral);
  box-shadow: var(--shadow-md);
}

.hero-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: 2rem;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.hero-input:focus {
  outline: none;
  border-color: var(--teal);
}

.hero-submit-btn {
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  border: none;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(132, 192, 173, 0.3);
}

.hero-submit-btn.business-mode {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
}

.hero-submit-btn.business-mode:hover {
  box-shadow: 0 10px 20px rgba(242, 143, 109, 0.3);
}

.hero-helper-text {
  font-size: 0.875rem;
  color: var(--gray-500);
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-glow {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 18rem;
  height: 18rem;
  background: linear-gradient(to bottom right, rgba(132, 192, 173, 0.3), rgba(242, 143, 109, 0.3));
  border-radius: 3rem;
  filter: blur(50px);
  z-index: 0;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 3rem;
  box-shadow: var(--shadow-2xl);
  z-index: 1;
}

.hero-floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 14rem;
  z-index: 2;
}

.floating-card-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(132, 192, 173, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--teal);
}

.floating-card-number {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.floating-card-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ==============================================
   HOMEPAGE - STATS SECTION
   ============================================== */

.stats-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: var(--white);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ==============================================
   HOMEPAGE - HOW IT WORKS SECTION
   ============================================== */

.how-it-works-section {
  position: relative;
  padding: 5rem 0;
  background: var(--gray-50);
  overflow: hidden;
}

.section-gradient-orb {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.section-gradient-orb-1 {
  top: 5rem;
  right: 0;
  background: linear-gradient(to bottom right, var(--teal), transparent);
}

.section-gradient-orb-2 {
  bottom: 5rem;
  left: 0;
  background: linear-gradient(to top right, var(--coral), transparent);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.step-card {
  position: relative;
  background: var(--white);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  text-align: center;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.step-number {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.step-icon-box {
  width: 5rem;
  height: 5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 1.5rem;
}

.step-icon-box svg {
  width: 2.25rem;
  height: 2.25rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
}

.step-description {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  color: var(--gray-300);
}

.step-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}

.step-card:nth-child(4) .step-arrow {
  display: none;
}

/* ==============================================
   HOMEPAGE - COVERAGE SECTION
   ============================================== */

.coverage-section {
  position: relative;
  padding: 5rem 0;
  background: var(--white);
  overflow: hidden;
}

.coverage-gradient-orb {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to bottom right, rgba(132, 192, 173, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(132, 192, 173, 0.1);
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.section-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--teal);
}

.section-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.coverage-map-wrapper {
  position: relative;
  z-index: 10;
}

.coverage-map-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: var(--shadow-lg);
}

.coverage-map-image {
  width: 100%;
  border-radius: 1rem;
}

.coverage-zones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.zone-card {
  background: var(--gray-50);
  border-radius: 1rem;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.zone-card:hover {
  background: rgba(132, 192, 173, 0.05);
}

.zone-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.zone-areas {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ==============================================
   HOMEPAGE - WHY CHOOSE US SECTION
   ============================================== */

.why-choose-section {
  position: relative;
  padding: 5rem 0;
  background: var(--gray-50);
  overflow: hidden;
}

.why-gradient-orb {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to top right, rgba(242, 143, 109, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-image-wrapper {
  position: relative;
}

.why-image-glow {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 18rem;
  height: 18rem;
  background: linear-gradient(to bottom right, rgba(242, 143, 109, 0.2), rgba(132, 192, 173, 0.2));
  border-radius: 3rem;
  filter: blur(50px);
}

.why-image {
  position: relative;
  width: 100%;
  border-radius: 3rem;
  box-shadow: var(--shadow-2xl);
}

.section-badge-left {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(132, 192, 173, 0.1);
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.section-badge-left svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--teal);
}

.section-badge-left span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
}

.why-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.why-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-feature-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.why-feature-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.why-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.why-feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--gray-700);
}

.why-feature-desc {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ==============================================
   HOMEPAGE - CTA SECTION
   ============================================== */

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--teal);
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xl);
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

/* ==============================================
   PRICING PAGE
   ============================================== */

.pricing-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background: linear-gradient(to bottom right, var(--gray-50), var(--white));
}

.pricing-hero-content {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(132, 192, 173, 0.1);
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.pricing-badge svg {
  color: var(--teal);
  width: 1.25rem;
  height: 1.25rem;
}

.pricing-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
}

.pricing-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--gray-700);
}

.pricing-hero-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.75;
}

.pricing-search-wrapper {
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.pricing-search {
  position: relative;
  width: 100%;
}

.pricing-search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  width: 1.25rem;
  height: 1.25rem;
}

.pricing-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 2px solid var(--gray-200);
  border-radius: 2rem;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.pricing-search-input:focus {
  outline: none;
  border-color: var(--teal);
}

.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.pricing-tab {
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  background: var(--gray-100);
  color: var(--gray-700);
  transition: all 0.3s ease;
}

.pricing-tab:hover {
  background: var(--gray-200);
}

.pricing-tab.active {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.pricing-content {
  padding: 2rem 0 4rem;
  background: var(--white);
}

.pricing-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pricing-container-narrow {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pricing-results {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-category-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.pricing-category-title:first-child {
  margin-top: 0;
}

.pricing-section-card {
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: fadeInUp 0.4s ease;
}

.pricing-section-header {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--white);
  padding: 1.5rem;
}

.pricing-section-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
}

.pricing-section-content {
  padding: 1.5rem;
}

.pricing-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.pricing-item-name {
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.pricing-item-price {
  font-weight: 700;
  color: var(--teal);
  font-size: 1.125rem;
  white-space: nowrap;
  margin-left: 1rem;
}

.pricing-section-note {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(132, 192, 173, 0.1);
  border-radius: 0.75rem;
}

.pricing-section-note p {
  color: var(--teal);
  font-size: 0.875rem;
  margin: 0;
}

.pricing-no-results {
  text-align: center;
  padding: 3rem;
}

.pricing-no-results p {
  color: var(--gray-500);
  font-size: 1.125rem;
}

.pricing-faq {
  padding: 4rem 0;
  background: var(--gray-50);
}

.pricing-faq-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--gray-700);
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
}

.faq-question {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.faq-answer {
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0;
}

.pricing-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.pricing-cta-content {
  text-align: center;
}

.pricing-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.pricing-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.pricing-cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--teal);
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xl);
}

.pricing-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

/* ==============================================
   ABOUT PAGE
   ============================================== */

.about-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom right, var(--gray-50), var(--white));
}

.about-container {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-container-wide {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-hero-content {
  text-align: center;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(132, 192, 173, 0.1);
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.about-badge svg {
  color: var(--teal);
  width: 1.25rem;
  height: 1.25rem;
}

.about-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
}

.about-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--gray-700);
}

.about-hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.75;
}

.about-section {
  padding: 4rem 0;
}

.about-section-coral {
  background: var(--coral);
  color: var(--white);
}

.about-section-teal {
  background: var(--teal);
  color: var(--white);
}

.about-section-white {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-grid-reverse {
  direction: rtl;
}

.about-grid-reverse > * {
  direction: ltr;
}

.about-icon-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-icon-wrapper svg {
  width: 2rem;
  height: 2rem;
}

.about-icon-white {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.about-icon-teal {
  background: rgba(132, 192, 173, 0.1);
  color: var(--teal);
}

.about-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.2;
}

.about-title-teal {
  color: var(--teal);
}

.about-section-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.about-section-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
}

.about-section-white .about-section-text {
  color: var(--gray-700);
}

.about-text-multi {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-text-multi p {
  margin: 0;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
}

/* ==============================================
   AUTH PAGES (LOGIN & SIGNUP)
   ============================================== */

.auth-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(to bottom right, var(--gray-50), var(--white));
}

.auth-gradient-orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 0;
}

.auth-gradient-orb-1 {
  top: 0;
  right: 0;
  background: linear-gradient(to bottom right, var(--teal), transparent);
}

.auth-gradient-orb-2 {
  bottom: 0;
  left: 0;
  background: linear-gradient(to top right, var(--coral), transparent);
}

.auth-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.auth-container.login-page{
	max-width: 500px;
}

.auth-card {
  background: var(--white);
  border-radius: 2rem;
  box-shadow: var(--shadow-2xl);
  padding: 3rem;
}

.auth-card-wide {
  max-width: 42rem;
  margin: 0 auto;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
}

.auth-icon svg {
  width: 2rem;
  height: 2rem;
}

.auth-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
}

.auth-type-toggle {
  display: flex;
  background: var(--gray-100);
  border-radius: 2rem;
  padding: 0.375rem;
  margin-bottom: 2rem;
  gap: 0.5rem;
}

.auth-type-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  border: none;
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-type-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

.auth-type-btn.active {
  background: var(--white);
  color: var(--teal);
  box-shadow: var(--shadow-md);
}

.auth-type-btn[data-type="business"].active {
  color: var(--coral);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-fields-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.form-label svg {
  width: 1rem;
  height: 1rem;
  color: var(--teal);
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 1rem;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--teal);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.password-input-wrapper {
  position: relative;
  width: 100%;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: var(--teal);
}

.password-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  cursor: pointer;
}

.form-checkbox {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 0.25rem;
  border: 2px solid var(--gray-300);
  cursor: pointer;
  accent-color: var(--teal);
}

.form-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.form-link:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

.auth-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: 'Poppins', sans-serif;
  border: none;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.auth-submit-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.auth-submit-btn.business-mode {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
}

.auth-footer-text {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

.auth-footer-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.auth-footer-link:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

/* Success/Error States */
.form-input.error {
  border-color: #ef4444;
}

.form-input.success {
  border-color: var(--teal);
}

.form-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
}

.form-success {
  font-size: 0.75rem;
  color: var(--teal);
  margin-top: 0.25rem;
}

/* Business Code Section */
.business-code-section {
  padding-bottom: 1.5rem;
}

.code-helper-text {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

.code-validation-message {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  display: none;
}

.code-validation-message.success {
  color: #10b981;
  display: block;
}

.code-validation-message.error {
  color: #ef4444;
  display: block;
}

.code-divider {
  height: 2px;
  background: var(--gray-100);
  margin-top: 1.5rem;
}

.form-input.code-valid {
  border-color: #10b981;
}

.form-input.code-invalid {
  border-color: #ef4444;
}

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

.footer {
  background: #f5f5f5;
  color: var(--gray-700);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 3rem;
  height: 3rem;
}

.footer-about {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.875rem;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  margin-bottom: 0;
  font-size: 0.875rem;
}

.footer-contact svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--gray-600);
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--teal);
}

.footer-certifications {
  padding: 2rem 0;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}

.footer-cert-title {
  text-align: center;
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.footer-cert-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.footer-cert-logos img {
  height: 3rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-cert-logos img:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* ==============================================
   ANIMATIONS
   ============================================== */

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

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

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */

@media (max-width: 1024px) {
  .hero-grid,
  .coverage-grid,
  .why-choose-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .step-arrow {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid-reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .navbar-menu {
    position: fixed;
    top: 4.5rem;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s ease;
    gap: 1rem;
  }
  
  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-link {
    padding: 0.75rem;
    border-radius: 0.5rem;
  }
  
  .nav-link:hover {
    background: var(--gray-50);
  }
  
  .btn-nav {
    text-align: center;
  }
  
  .hero-heading {
    font-size: 2.5rem;
  }
  
  .hero-form {
    flex-direction: column;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .coverage-zones {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-hero-title,
  .pricing-hero-title {
    font-size: 2.5rem;
  }
  
  .about-section-title {
    font-size: 2rem;
  }
  
  .about-icon-title {
    flex-direction: column;
    align-items: start;
  }
  
  .auth-card {
    padding: 2rem 1.5rem;
  }
  
  .auth-card-wide {
    max-width: 100%;
  }
  
  .auth-title {
    font-size: 1.75rem;
  }
  
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  
  .auth-type-btn {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .why-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .auth-section {
    padding: 6rem 0 2rem;
  }
  
  .auth-card {
    padding: 1.5rem;
  }
  
  .auth-title {
    font-size: 1.5rem;
  }
  
  .form-row {
    flex-direction: column;
    align-items: start;
  }
}
/* ==============================================
   FAQ PAGE STYLES
   ============================================== */

.faq-hero {
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.faq-hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(132, 192, 173, 0.1);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.faq-badge i {
  color: var(--teal);
  width: 20px;
  height: 20px;
}

.faq-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
}

.faq-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray-700);
}

.faq-hero-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.faq-search-wrapper {
  max-width: 28rem;
  margin: 0 auto;
}

.faq-search {
  position: relative;
}

.faq-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  width: 20px;
  height: 20px;
}

.faq-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 2px solid var(--gray-200);
  border-radius: 9999px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--teal);
}

.faq-content-section {
  padding: 4rem 0;
}

.container-narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-category {
  margin-bottom: 1rem;
}

.faq-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.accordion-wrapper {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--gray-200);
}

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

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all 0.3s ease;
}

.accordion-header:hover {
  color: var(--teal);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  color: var(--gray-600);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-no-results {
  text-align: center;
  padding: 3rem;
  color: var(--gray-500);
  font-size: 1.125rem;
}

.faq-cta {
  padding: 4rem 0;
  background: linear-gradient(to right, var(--teal), var(--teal-dark));
}

.faq-cta-content {
  text-align: center;
}

.faq-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.faq-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.faq-cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--teal);
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2xl);
}

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

.contact-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.contact-hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(132, 192, 173, 0.1);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.contact-badge i {
  color: var(--teal);
  width: 20px;
  height: 20px;
}

.contact-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray-700);
}

.contact-hero-description {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.contact-content {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 2rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(132, 192, 173, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: var(--teal);
  width: 24px;
  height: 24px;
}

.contact-info-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.contact-info-link {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-link:hover {
  color: var(--teal);
}

.contact-info-text {
  color: var(--gray-600);
}

.contact-hours {
  margin-top: 3rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(132, 192, 173, 0.1) 0%, rgba(242, 143, 109, 0.1) 100%);
  border-radius: 1rem;
}

.contact-hours-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

.contact-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--gray-700);
}

.contact-form-wrapper {
  background: var(--white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-textarea {
  resize: none;
}

.form-success {
  padding: 1rem;
  background: #f0fdf4;
  border: 2px solid #86efac;
  border-radius: 0.75rem;
}

.form-success p {
  color: #166534;
  font-weight: 600;
  margin: 0;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(to right, var(--teal), var(--teal-dark));
  color: var(--white);
  border: none;
  border-radius: 9999px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2xl);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-submit i {
  width: 20px;
  height: 20px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.contact-cta {
  padding: 4rem 0;
  background: linear-gradient(to right, var(--coral), var(--coral-dark));
}

.contact-cta-content {
  text-align: center;
}

.contact-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.contact-cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--coral);
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2xl);
}

/* Responsive styles for FAQ and Contact pages */
@media (max-width: 768px) {
  .faq-hero-title,
  .contact-hero-title {
    font-size: 2.5rem;
  }

  .faq-cta-title,
  .contact-cta-title {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-title {
    font-size: 1.5rem;
  }
}
