/* Base Styles and Variables */
:root {
  --primary: #FF3366;
  --primary-dark: #CC1A4A;
  --primary-light: #FF6699;
  --secondary: #9900CC;
  --secondary-dark: #6600AA;
  --accent: #FFCC00;
  --accent-dark: #FF6600;
  --dark: #111111;
  --light: #FFFFFF;
  --gray: #F0F0F0;
  --text: #333333;
  --text-light: #FFFFFF;
  --text-muted: #777777;
  --border-radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--light);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img, svg {
  max-width: 100%;
  height: auto;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 51, 102, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.section-subtitle {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background-color: transparent;
  transition: var(--transition);
}

header.scrolled {
  background-color: var(--dark);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo svg {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  color: var(--light);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

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

.nav-list {
  display: flex;
  list-style: none;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  color: var(--light);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

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

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

.nav-button {
  margin-left: 20px;
}

.menu-toggle {
  display: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  color: var(--light);
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,128C960,149,1056,171,1152,165.3C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Features Section */
.features {
  background-color: var(--light);
}

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

.feature-card {
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  z-index: -1;
  transition: var(--transition);
  opacity: 0.1;
}

.feature-card:hover:before {
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-text {
  color: var(--text-muted);
}

/* Process Section */
.process {
  background-color: var(--gray);
  position: relative;
  overflow: hidden;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 60px auto 0;
  position: relative;
}

.process-step {
  flex: 0 0 calc(33.333% - 40px);
  margin: 0 20px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--dark);
}

.step-text {
  color: var(--text-muted);
}

/* Testimonials */
.testimonials {
  background-color: var(--light);
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
  content: '"';
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  line-height: 1;
}

.testimonial-text:before {
  top: -20px;
  left: -20px;
}

.testimonial-text:after {
  bottom: -60px;
  right: -20px;
}

.testimonial-author {
  font-weight: 700;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  text-align: center;
}

.cta .section-title {
  color: var(--light);
}

.cta .section-title:after {
  background-color: var(--accent);
  left: 50%;
  transform: translateX(-50%);
}

.cta .section-subtitle {
  color: var(--light);
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 80px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-description {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .process-step {
    flex: 0 0 calc(50% - 40px);
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--dark);
    flex-direction: column;
    padding: 50px 20px;
    transition: var(--transition);
  }
  
  .nav.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .nav-button {
    margin: 20px 0 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-card, .process-step {
    flex: 0 0 100%;
  }
}
