:root {
  --primary-blue: #5b42f3; /* Vibrant blue from SalesRadar */
  --light-blue: #4633c0; /* Lighter shade of blue */
  --dark-text: #2a3342; /* Dark gray for text */
  --muted-text: #556987; /* Lighter gray for secondary text */
  --light-bg: #f7f8fc; /* Very light gray background */
  --white-bg: #ffffff;
  --black-cta: #1c2126; /* Black for header Get Started */
  --light-gray-border: #e5e7eb;
  --transition: all 0.3s ease;
  --shadow: 0px 8px 16px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0px 12px 24px rgba(0, 0, 0, 0.08);
  --border-radius: 10px; /* Slightly less rounded than before */
  --border-radius-lg: 16px;
  --logoFont: "Pacifico", cursive;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-text);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
.logo-text {
  font-family: var(--logoFont);
  color: var(--primary-blue);
}
.logo-text-footer {
  font-family: var(--logoFont);
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
section {
  padding: 60px 0;
}

.logo-icon-inline {
  font-size: 0.8em; /* Adjust as needed */
  color: var(--primary-blue);
  margin: 0 2px;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10.5px);
  -webkit-backdrop-filter: blur(10.5px);
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); */
  transition: var(--transition);
}
header.scrolled {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-text);
  text-decoration: none;
}
.logo .logo-icon-inline {
  font-size: 22px;
} /* Main logo icon size */

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted-text);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-actions .contact-link {
  color: var(--muted-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}
.header-actions .contact-link:hover {
  color: var(--primary-blue);
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background-color: var(--primary-blue);
  color: white;
  box-shadow: 0 4px 12px rgba(61, 94, 225, 0.3);
}
.btn-primary:hover {
  background-color: var(--light-blue);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--light-gray-border);
  color: var(--dark-text);
  box-shadow: none;
}
.btn-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background-color: #f0f3ff;
}

.btn-dark {
  /* For header Get Started */
  background-color: var(--black-cta);
  color: white;
  /* box-shadow: 0 4px 12px rgba(28, 33, 38, 0.2); */
}
.btn-dark:hover {
  background-color: #000;
  transform: translateY(-2px);
}
.cta-section {
  background-color: var(--white-bg);
  padding: 60px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding-top: 125px;
  padding-bottom: 60px;
  background-color: var(--white-bg);
  text-align: center;
  position: relative;
}
/* Optional subtle background pattern for hero */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-image: radial-gradient(var(--light-bg) 1px, transparent 1px); */
  /* background-size: 20px 20px; opacity: 0.5; */
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-text);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero p.subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--muted-text);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.hero-dashboard-mockup {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
.hero-dashboard-mockup svg,
.hero-dashboard-mockup img {
  display: block;
  width: 100%;
  height: auto;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 20px;
}
.section-title .tag {
  /* Optional tag above title */
  display: inline-block;
  padding: 4px 12px;
  background-color: #e0e7ff;
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-text);
}
.section-title p {
  color: var(--muted-text);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Advantages / Why Choose Us Section */
.advantages {
  background-color: var(--light-bg);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.advantage-card {
  background: var(--white-bg);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}
.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--light-gray-border);
}
.advantage-card .icon {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #e0e7ff;
  border-radius: 8px;
}
.advantage-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.advantage-card p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.5;
}
.advantage-card.highlighted {
  background-color: var(--primary-blue);
  color: white;
}
.advantage-card.highlighted .icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.advantage-card.highlighted h3 {
  color: white;
}
.advantage-card.highlighted p {
  color: rgba(255, 255, 255, 0.85);
}

/* How It Works Section (Home) */
.how-it-works {
  background-color: var(--white-bg);
}
.steps-visual-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px; /* Space between step and visual */
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  width: 100%;
}
.step-item {
  background: var(--light-bg);
  padding: 25px;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid var(--light-gray-border);
}
.step-item .step-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  display: inline-block;
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 32px;
}
.step-item h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-item p {
  font-size: 0.9rem;
  color: var(--muted-text);
}
.steps-visual {
  /* Placeholder for a larger visual if needed */
  max-width: 700px;
  margin-top: 30px;
}
.steps-visual img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Testimonial Snippet (Home) */
.testimonial-snippet {
  background-color: var(--light-bg);
  padding: 60px 0;
}
.testimonial-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--white-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.testimonial-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.testimonial-avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0 -8px; /* Overlap effect */
}
.testimonial-text {
  font-size: 1rem;
  color: var(--muted-text);
  margin-bottom: 15px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
}
.testimonial-author span {
  font-weight: 400;
  color: var(--muted-text);
}

/* About Us Page Specifics */
.about-intro {
  background-color: var(--white-bg);
}
.about-intro-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.about-intro-text {
  flex: 1;
}
.about-intro-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.about-intro-text p {
  font-size: 1.05rem;
  color: var(--muted-text);
  margin-bottom: 15px;
}
.about-intro-image {
  flex: 0.8;
}
.about-intro-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.mission-vision {
  background-color: var(--light-bg);
}
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.mission-item,
.vision-item {
  background: var(--white-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.mission-item h3,
.vision-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mission-item p,
.vision-item p {
  font-size: 1rem;
  color: var(--muted-text);
}

.our-team-section {
  background-color: var(--white-bg);
}
.team-intro p {
  font-size: 1.05rem;
  color: var(--muted-text);
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}
/* No team member cards for now, just text as requested by keeping it simpler */

.our-values {
  background-color: var(--light-bg);
}
/* Using .advantages-grid and .advantage-card styling for values */

/* Pricing Section */
.pricing {
  background-color: var(--white-bg);
  padding-top: 50px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}
.pricing-plan {
  background: var(--white-bg);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  /* box-shadow: var(--shadow); */
  border: 1px solid var(--light-gray-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.pricing-plan:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pricing-plan.highlighted {
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}
.pricing-plan.highlighted .plan-name,
.pricing-plan.highlighted .plan-description,
.pricing-plan.highlighted .price,
.pricing-plan.highlighted .price-term,
.pricing-plan.highlighted .plan-features li {
  color: white;
}
.pricing-plan.highlighted .plan-features li i {
  color: white;
  opacity: 0.8;
}
.pricing-plan.highlighted .btn {
  background-color: white;
  color: var(--primary-blue);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.pricing-plan.highlighted .btn:hover {
  background-color: #f0f3ff;
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.plan-description {
  font-size: 0.9rem;
  color: var(--muted-text);
  margin-bottom: 20px;
  min-height: 50px;
}
.price-tag {
  margin-bottom: 20px;
}
.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-text);
}
.price sup {
  font-size: 1.3rem;
  font-weight: 600;
}
.price-term {
  font-size: 0.85rem;
  color: var(--muted-text);
}
.plan-features {
  list-style: none;
  margin-bottom: 25px;
  flex-grow: 1;
}
.plan-features li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li i {
  color: var(--primary-blue);
  font-size: 1rem;
}
.pricing-plan .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
}

/* Contact Section - Simplified (as per previous iteration) */
.contact {
  background-color: var(--light-bg);
}
.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white-bg);
  padding: 35px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
/* ... other contact form styles from previous ... */
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 0.9rem;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--light-gray-border);
  border-radius: var(--border-radius);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 2px rgba(61, 94, 225, 0.2);
}
textarea.form-control {
  min-height: 100px;
  resize: vertical;
}
.contact-wrapper .btn {
  width: 100%;
}

/* Footer */
footer {
  background-color: var(--black-cta);
  color: #a0aec0;
  padding: 50px 0 20px;
  font-size: 0.9rem;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.footer-col .logo {
  margin-bottom: 15px;
}
.footer-col .logo span {
  color: white;
}
.footer-col > p {
  margin-bottom: 15px;
  max-width: 250px;
  line-height: 1.5;
}
.footer-col h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover {
  color: white;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  color: white;
  font-size: 1rem;
  transition: var(--transition);
}
.social-links a:hover {
  background-color: var(--primary-blue);
}
.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}
.copyright a {
  color: var(--primary-blue);
  text-decoration: none;
}

/* Animations & Page Transitions (same as before) */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}
.page-section {
  display: none;
  min-height: 60vh;
  padding-top: 100px;
} /* Adjusted min-height */
#home.page-section {
  padding-top: 0;
}
.page-section.active {
  display: block;
  animation: fadeInEffect 0.4s ease;
}
@keyframes fadeInEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    gap: 20px;
  } /* Reduce gap */
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-dashboard-mockup {
    max-width: 700px;
  }
  .advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block; /* ... */
  }
  .nav-links {
    position: fixed;
    top: 60px; /* Check header height */
    left: 0;
    width: 100%;
    background-color: var(--white-bg);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    box-shadow: var(--shadow);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease;
  }
  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header-actions .contact-link {
    display: none;
  } /* Hide contact link in mobile nav actions */

  .hero {
    padding-top: 120px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p.subtitle {
    font-size: 1rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 250px;
  }
  .hero-dashboard-mockup {
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
  .advantages-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .about-intro-content {
    flex-direction: column;
    text-align: center;
  }
  .about-intro-image {
    margin-top: 30px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col > p,
  .social-links {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .logo {
    justify-content: center;
  }
  .btn-dark {
    display: none;
  }
}

/* WhatsApp Chat Bot Styles */
#whatsapp-chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  font-family: "Poppins", sans-serif;
  /* Ensure it works on mobile */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.chat-widget-button {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  position: relative;
  /* Mobile touch improvements */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.chat-widget-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.chat-widget-button:active {
  transform: scale(0.95);
}

.chat-widget-button i {
  color: white;
  font-size: 28px;
  /* Prevent text selection on mobile */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: none;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  animation: pulse 1s infinite;
  /* Ensure badge is visible on mobile */
  z-index: 10001;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

#chatInterface {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s ease;
  z-index: 10000;
  overflow: hidden;
  /* Mobile improvements */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

#chatInterface.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-header {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px 15px 0 0;
  /* Prevent text selection */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-avatar i {
  font-size: 20px;
}

.chat-title h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-title .status {
  font-size: 12px;
  opacity: 0.9;
}

.close-chat {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.3s ease;
  /* Mobile touch improvements */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-width: 30px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-chat:hover {
  background: rgba(255, 255, 255, 0.2);
}

.close-chat:active {
  background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f8f9fa;
  /* Mobile scroll improvements */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.message {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.bot-message {
  align-items: flex-start;
}

.user-message {
  align-items: flex-end;
}

.message-content {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.bot-message .message-content {
  background: white;
  color: var(--dark-text);
  border-bottom-left-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-message .message-content {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-bottom-right-radius: 5px;
}

.message-content p {
  margin: 0 0 5px 0;
  line-height: 1.4;
  font-size: 14px;
  word-wrap: break-word;
}

.message-content a {
  color: var(--primary-blue);
  text-decoration: underline;
  word-break: break-all;
}

.user-message .message-content a {
  color: white;
  text-decoration: underline;
}

.message-time {
  font-size: 11px;
  opacity: 0.7;
  display: block;
}

.typing-indicator {
  align-items: flex-start;
}

.typing-dots {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: white;
  border-radius: 18px;
  border-bottom-left-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
  animation-delay: -0.32s;
}
.typing-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.chat-input {
  padding: 15px 20px;
  background: white;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  min-height: 70px;
}

.chat-input input {
  flex: 1;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
  /* Mobile input improvements */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  min-height: 44px;
  margin-right: 8px;
}

.chat-input input:focus {
  border-color: #25d366;
}

.chat-input button {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  /* Mobile touch improvements */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
}

.chat-input button:hover {
  transform: scale(1.1);
}

.chat-input button:active {
  transform: scale(0.95);
}

.chat-input button i {
  font-size: 16px;
}

.quick-replies {
  padding: 15px 20px;
  background: white;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}

.quick-reply {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--dark-text);
  /* Mobile touch improvements */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  white-space: nowrap;
}

.quick-reply:hover {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

.quick-reply:active {
  transform: scale(0.95);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #chatInterface {
    width: 80vw;
    height: 100vh;
    bottom: 0;
    right: 10vw;
    left: 10vw;
    top: 0;
    max-width: none;
    max-height: none;
    border-radius: 15px;
    position: fixed;
  }

  .chat-widget-button {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
  }

  .chat-widget-button i {
    font-size: 24px;
  }

  .quick-replies {
    flex-direction: column;
    padding: 10px 15px;
  }

  .quick-reply {
    text-align: center;
    padding: 10px 15px;
    font-size: 13px;
    margin-bottom: 5px;
  }

  .chat-messages {
    padding: 15px;
    flex: 1;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
  }

  .message-content {
    max-width: 85%;
    padding: 10px 14px;
  }

  .chat-input {
    padding: 12px 15px;
    gap: 8px;
    min-height: 60px;
    align-items: center;
    flex-shrink: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    position: relative;
    z-index: 10;
    display: flex;
    width: 100%;
  }

  .chat-input input {
    padding: 12px 15px;
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 44px;
    flex: 1;
    margin-right: 8px;
    width: calc(100% - 60px);
    max-width: calc(100% - 60px);
    box-sizing: border-box;
  }

  .chat-input button {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
    position: relative;
    z-index: 11;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-left: auto;
  }

  .chat-input button i {
    font-size: 16px;
  }

  .chat-header {
    padding: 12px 15px;
    border-radius: 15px 15px 0 0;
    flex-shrink: 0;
  }

  .chat-title h4 {
    font-size: 15px;
  }

  .chat-title .status {
    font-size: 11px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  #chatInterface {
    width: 85vw;
    height: 100vh;
    bottom: 0;
    right: 7.5vw;
    left: 7.5vw;
    top: 0;
    border-radius: 15px;
  }

  .chat-widget-button {
    width: 50px;
    height: 50px;
    bottom: 10px;
    right: 10px;
  }

  .chat-widget-button i {
    font-size: 22px;
  }

  .chat-messages {
    padding: 12px;
    max-height: calc(100vh - 180px);
  }

  .message-content {
    max-width: 90%;
    padding: 8px 12px;
    font-size: 13px;
  }

  .chat-input {
    padding: 10px 12px;
    gap: 6px;
    min-height: 56px;
    display: flex;
    width: 100%;
  }

  .chat-input input {
    padding: 10px 12px;
    font-size: 16px;
    min-height: 40px;
    margin-right: 6px;
    width: calc(100% - 52px);
    max-width: calc(100% - 52px);
    box-sizing: border-box;
  }

  .chat-input button {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-left: auto;
  }

  .chat-input button i {
    font-size: 14px;
  }

  .quick-replies {
    padding: 8px 12px;
    flex-shrink: 0;
  }

  .quick-reply {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Very small mobile devices */
@media (max-width: 360px) {
  #chatInterface {
    width: 90vw;
    height: 100vh;
    bottom: 0;
    right: 5vw;
    left: 5vw;
    top: 0;
    border-radius: 15px;
  }

  .chat-input {
    padding: 8px 10px;
    gap: 5px;
    min-height: 52px;
    display: flex;
    width: 100%;
  }

  .chat-input input {
    padding: 8px 10px;
    font-size: 16px;
    min-height: 36px;
    margin-right: 5px;
    width: calc(100% - 46px);
    max-width: calc(100% - 46px);
    box-sizing: border-box;
  }

  .chat-input button {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-left: auto;
  }

  .chat-input button i {
    font-size: 12px;
  }

  .chat-messages {
    padding: 10px;
    max-height: calc(100vh - 160px);
  }

  .message-content {
    max-width: 92%;
    padding: 6px 10px;
    font-size: 12px;
  }
}

/* Landscape mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
  #chatInterface {
    width: 80vw;
    height: 100vh;
    bottom: 0;
    right: 10vw;
    left: 10vw;
    top: 0;
    border-radius: 15px;
  }

  .chat-messages {
    flex: 1;
    overflow-y: auto;
    max-height: calc(100vh - 150px);
  }

  .chat-input {
    min-height: 50px;
    display: flex;
    width: 100%;
  }

  .chat-input input {
    min-height: 38px;
    width: calc(100% - 54px);
    max-width: calc(100% - 54px);
    box-sizing: border-box;
  }

  .chat-input button {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-left: auto;
  }
}

/* Ensure chat doesn't interfere with mobile navigation */
@media (max-width: 768px) {
  #whatsapp-chat-widget {
    bottom: 15px;
    right: 15px;
  }

  /* Prevent chat from overlapping with mobile menu */
  .nav-links.active + #whatsapp-chat-widget {
    z-index: 9999;
  }

  /* Full screen chat should be on top */
  #chatInterface.active {
    z-index: 10001;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  #chatInterface {
    background: #1f2937;
    color: white;
  }

  .chat-messages {
    background: #111827;
  }

  .bot-message .message-content {
    background: #374151;
    color: white;
  }

  .chat-input {
    background: #1f2937;
    border-top-color: #374151;
  }

  .chat-input input {
    background: #374151;
    border-color: #4b5563;
    color: white;
  }

  .quick-replies {
    background: #1f2937;
    border-top-color: #374151;
  }

  .quick-reply {
    background: #374151;
    border-color: #4b5563;
    color: white;
  }
}

/* Enhanced Contact Page Styles */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

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

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--text-secondary);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--white-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

/* .contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
} */

.contact-method .icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-method .method-details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-method .method-details p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-method .method-details span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

.contact-form {
  width: 100%;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text-primary);
  text-align: center;
}

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

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  color: var(--text-primary);
  transition: all 0.3s ease;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(91, 66, 243, 0.1), 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
  opacity: 1;
}

.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

/* Most specific button styling to override any conflicts */
.contact-form-container .contact-form button[type="submit"].btn.btn-primary {
  width: 100% !important;
  padding: 16px 24px !important;
  background: linear-gradient(135deg, #5b42f3 0%, #7c3aed 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 20px !important;
  box-shadow: 0 4px 12px rgba(91, 66, 243, 0.3) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-family: inherit !important;
  line-height: 1 !important;
  text-decoration: none !important;
  outline: none !important;
  background-image: linear-gradient(
    135deg,
    #5b42f3 0%,
    #7c3aed 100%
  ) !important;
  background-color: #5b42f3 !important;
}

.contact-form-container
  .contact-form
  button[type="submit"].btn.btn-primary:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #5b42f3 100%) !important;
  background-image: linear-gradient(
    135deg,
    #7c3aed 0%,
    #5b42f3 100%
  ) !important;
  background-color: #7c3aed !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(91, 66, 243, 0.4) !important;
  color: white !important;
}

.contact-form-container
  .contact-form
  button[type="submit"].btn.btn-primary:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(91, 66, 243, 0.3) !important;
}

.contact-form-container
  .contact-form
  button[type="submit"].btn.btn-primary:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: 0 2px 8px rgba(91, 66, 243, 0.2) !important;
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%) !important;
  background-image: linear-gradient(
    135deg,
    #6b7280 0%,
    #4b5563 100%
  ) !important;
  background-color: #6b7280 !important;
}

.contact-form-container .contact-form button[type="submit"].btn.btn-primary i {
  font-size: 1rem !important;
  color: white !important;
}

.contact-form-container
  .contact-form
  button[type="submit"].btn.btn-primary.loading {
  opacity: 0.8 !important;
  cursor: not-allowed !important;
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%) !important;
  background-image: linear-gradient(
    135deg,
    #6b7280 0%,
    #4b5563 100%
  ) !important;
  background-color: #6b7280 !important;
}

.contact-form-container
  .contact-form
  button[type="submit"].btn.btn-primary.loading
  i {
  animation: spin 1s linear infinite !important;
}

/* Form validation styles */
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-form input.valid,
.contact-form select.valid,
.contact-form textarea.valid {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Keyframes for loading animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Success message styling */
.form-success {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  color: #166534;
  padding: 16px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

/* Error message styling */
.form-error {
  background: #fef2f2;
  border: 2px solid #fecaca;
  color: #dc2626;
  padding: 16px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}

/* Field error styling */
.field-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 6px;
  display: block;
  font-weight: 500;
  padding-left: 4px;
}

/* FAQ Section Styles */
.pricing-faq {
  padding: 60px 0;
  border-radius: 16px;
  margin-top: 80px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.faq-item {
  background: white;
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--light-gray-border);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-item.active .faq-question {
  background-color: #f0f3ff;
}

.faq-question h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--dark-text);
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  font-size: 1rem;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  color: var(--muted-text);
  line-height: 1.6;
  margin: 0;
  padding-top: 10px;
}

/* Pricing CTA Section */
.pricing-cta {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 12px;
  color: white;
  margin-top: 60px;
  margin-bottom: 40px;
}

.pricing-cta h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: white;
}

.pricing-cta p {
  font-size: 1rem;
  margin: 0 0 24px 0;
  opacity: 0.9;
  color: white;
}

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

.btn-cta-primary {
  background: white;
  color: #6366f1;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-cta-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* About Page Enhanced Styles */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-top: 40px;
  align-items: start;
}

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

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.about-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 1rem;
}

.about-features li:last-child {
  border-bottom: none;
}

.about-features li strong {
  color: var(--text-primary);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.team-section {
  margin-top: 80px;
}

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

.team-member {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-light);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.member-avatar {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.team-member h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.team-member p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info h2 {
    font-size: 1.6rem;
  }

  .contact-method {
    padding: 20px;
  }

  .contact-method .icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-cta {
    padding: 30px 20px;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .pricing-cta h2 {
    font-size: 1.5rem;
  }

  .pricing-cta p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-cta-primary,
  .btn-cta-outline {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-item {
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-member {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
  }

  .contact-method .icon {
    margin: 0 auto 15px;
  }
}
