/* Modern gradient color system with vibrant, creative palette */
:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --warm-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --cool-gradient: linear-gradient(135deg, #30cfd0 0%, #330867 100%);

  --primary: #667eea;
  --secondary: #764ba2;
  --accent: #f5576c;
  --light: #f8f9ff;
  --dark: #1a1a2e;
}

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

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.5px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.3px;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 1.8rem;
  letter-spacing: -0.2px;
  font-weight: 600;
  color: var(--dark);
}

h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
}

p {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(102, 126, 234, 0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(102, 126, 234, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Logo styling with image and text */
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.nav-link:hover {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary-gradient);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: top;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0e6ff 50%, #ffe6f0 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Added animated gradient background elements */
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--secondary-gradient);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: var(--accent-gradient);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 15px auto;
  padding: 0 20px;
  padding-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  margin: auto;
}

.hero-title {
  text-align: center;
  font-weight: 800;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.3rem;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.1s both;
}

.quote {
  background: var(--primary-gradient);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  margin: 1.5rem 0;
  position: relative;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
  animation: fadeInUp 1s ease 0.2s both;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -10px;
  left: 15px;
  opacity: 0.3;
}

.quote p {
  font-style: italic;
  margin-bottom: 0.5rem;
  color: white;
}

.quote span {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
  margin-bottom: 1.5rem;
}

.cta-button {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary-gradient);
  transition: left 0.3s ease;
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:active {
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
}

.cta-button.secondary:hover {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

/* Hero Slideshow Styles - Modern interactive carousel with animations */
.hero-slideshow {
  margin: auto;
  position: relative;
  height: auto;
  max-height: 770px;
  animation: fadeInRight 1s ease 0.8s both;
}

.slideshow-loader {
  position: relative;
  width: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.spinner-ring {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(102, 126, 234, 0.1);
  border-top: 4px solid var(--primary-gradient);
  border-radius: 50%;
  animation: spinnerRotate 1.2s linear infinite;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), transparent);
}

@keyframes spinnerRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  animation: loaderPulse 1.5s ease-in-out infinite;
  letter-spacing: 0.5px;
}

@keyframes loaderPulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.slideshow-wrapper {
  position: relative;

  height: auto;
  max-height: 770px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  animation: fadeInUp 0.6s ease;
}

.slide {
  display: none;
  width: 100%;
  position: relative;
}

.slide.fade {
  animation: fade 1.2s ease-in-out;
}

.slide img {
  width: 100%;
  height: 774px;
  display: block;
  object-fit: cover;
  text-align: center;
}

/* Slideshow Navigation Arrows */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 3px;
  background-color: rgba(102, 126, 234, 0.7);
  user-select: none;
  z-index: 10;
}

.next {
  right: 0;
}

.prev {
  left: 0;
}

.prev:hover,
.next:hover {
  background-color: var(--secondary-gradient);
  background: rgba(118, 75, 162, 0.9);
  transform: scale(1.1);
}

.prev:active,
.next:active {
  transform: scale(0.95);
}

/* Added dots/indicators for slideshow navigation */
.dots-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 1.5rem 0;
  border-radius: 0 0 20px 20px;
  position: absolute;
  bottom: 10px;
  left: 50%;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0;
  background-color: rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
}

.dot.active {
  background: var(--secondary-gradient);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  transform: scale(1.3);
}

.dot:hover {
  background-color: rgba(102, 126, 234, 0.6);
  transform: scale(1.15);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: var(--primary-gradient);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-gradient);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  margin-top: 2rem;
}

/* How It Works Section */
.how-it-works {
  padding: 8rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.step-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--secondary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  opacity: 0.15;
}

.step-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.2);
}

.step-icon img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.step-content h3 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.step-content p {
  color: #666;
  line-height: 1.7;
}

/* Trust Section */
.trust-section {
  padding: 6rem 0;
  background: var(--warm-gradient);
  border-top: none;
  border-bottom: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.trust-stat h3 {
  font-size: 3rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.trust-stat p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0;
}

/* Benefits Section */
.benefits {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0e6ff 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(102, 126, 234, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

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

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--primary);
}

.benefit-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(102, 126, 234, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
  z-index: -1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.stars {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-author h4 {
  margin: 0;
  color: var(--dark);
  font-size: 1rem;
}

.testimonial-author p {
  margin: 0;
  color: #999;
  font-size: 0.9rem;
}

/* FAQ Section Styles - Added modern accordion design with gradients */
.faq {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0e6ff 50%, #ffe6f0 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle animated background elements */
.faq::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--primary-gradient);
  border-radius: 50%;
  opacity: 0.05;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.faq::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: var(--accent-gradient);
  border-radius: 50%;
  opacity: 0.05;
  animation: float 6s ease-in-out infinite reverse;
  z-index: 0;
}

.faq-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 25px rgba(102, 126, 234, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item button {
  outline: none !important;
}

.faq-item:hover {
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3px;
  position: relative;
}

.faq-question::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-question:hover {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.02),
    rgba(240, 230, 255, 0.1)
  );
}

.faq-question:hover::before {
  transform: scaleX(1);
}

.faq-question[aria-expanded="true"]::before {
  transform: scaleX(1);
}

.question-text {
  flex: 1;
  display: flex;
  align-items: center;
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  margin-left: 1.5rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--secondary-gradient);
}

.faq-answer {
  background: linear-gradient(
    135deg,
    rgba(248, 249, 255, 0.5),
    rgba(240, 230, 255, 0.3)
  );
  padding: 0 1.8rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
}

.faq-answer[aria-expanded="true"] {
  padding: 0 1.8rem 1.8rem;
  max-height: 500px;
  opacity: 1;
  animation: slideDown 0.4s ease;
}

.faq-answer p {
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

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

/* FAQ CTA Section */
.faq-cta {
  text-align: center;
  position: relative;
  z-index: 1;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.1);
  border: 2px solid rgba(102, 126, 234, 0.1);
}

.faq-cta p {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}

.faq-cta strong {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background: var(--cool-gradient);
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  color: white;
  margin-bottom: 2rem;
  background: none;
  -webkit-text-fill-color: unset;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.contact-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.contact-item p a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item p a:hover {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-form h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-subtitle {
  color: #999;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 2rem;
  display: block;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.required {
  color: #f5576c;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  background-color: #fafafa;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  outline: none;
  border-color: var(--sec);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  background-color: white;
}

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

.submit-btn {
  width: 100%;
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-footer {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  margin: 0;
}

.footer-logo {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.8rem;
  align-items: left;
  justify-content: left;
}

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

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

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

/* Utility Classes */
.text-center {
  text-align: center;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

/* Form Success/Error States */
.form-success {
  background: #e8f5e8;
  border: 2px solid #2e8b57;
  color: #2e7d32;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
}

.form-error {
  background: #ffebee;
  border: 2px solid #f44336;
  color: #c62828;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
}

/* Responsive Design */

/* Tablets */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 1.5rem;
  }

  .nav-menu.active {
    left: 0;
  }

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

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 2rem;
    text-align: center;
  }

  .hero-image {
    order: -1;
    object-fit: cover;
    height: auto;
    width: 100%;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
  }

  .steps-grid,
  .benefits-grid,
  .preview-cards {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .floating-icon {
    display: none;
  }

  .hero-wave {
    height: 30px;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ Responsive Design */
  .faq {
    padding: 4rem 0;
  }

  .faq-question {
    padding: 1.5rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-answer[aria-expanded="true"] {
    padding: 0 1.5rem 1.5rem;
  }

  .faq-cta {
    padding: 2rem;
  }

  .faq-cta p {
    font-size: 1.1rem;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
    font-size: 1rem;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero,
  .how-it-works,
  .benefits,
  .testimonials,
  .contact {
    padding: 3rem 0;
  }

  .quote {
    padding: 1rem;
    margin: 1rem 0;
  }

  .step-card,
  .benefit-card {
    padding: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }

  .submit-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }

  .nav-logo {
    gap: 0.5rem;
  }

  .logo-img {
    height: 32px;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .trust-stat h3 {
    font-size: 2rem;
  }

  .trust-stat p {
    font-size: 0.95rem;
  }
  /* FAQ Responsive Design */
  .faq {
    padding: 2rem 0;
  }

  .faq-question {
    padding: 1.2rem;
    font-size: 0.95rem;
  }

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

  .question-text {
    line-height: 1.4;
  }

  .faq-icon {
    margin-left: 1rem;
    width: 24px;
    height: 24px;
  }

  .faq-cta {
    padding: 1.5rem;
  }

  .faq-cta p {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
  }
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-gradient);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
