:root {
  --primary: #7030a0;
  --secondary: #e74c3c;
  --accent: #3498db;
  --dark: #222222;
  --light: #ffffff;
  --gray: #f0f0f0;
  --text: #333333;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  color: var(--text);
  background-color: var(--light);
}

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

/* Header */
.header {
  background-color: var(--dark);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.logo-text {
  color: var(--light);
  font-size: 1.6rem;
  font-weight: 700;
  margin-left: 10px;
  text-decoration: none;
}

.nav-desktop {
  display: flex;
}

.nav-desktop a {
  color: var(--light);
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.nav-desktop a:hover {
  color: var(--secondary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle svg {
  fill: var(--light);
  width: 24px;
  height: 24px;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--light);
  font-weight: 600;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  background-color: var(--light);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-title p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text);
}

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

.benefit-card {
  background-color: var(--gray);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.benefit-icon {
  margin-bottom: 25px;
}

.benefit-icon svg {
  width: 60px;
  height: 60px;
  fill: var(--primary);
}

.benefit-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary);
}

/* Process Section */
.process {
  padding: 100px 0;
  background-color: var(--gray);
}

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

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.step-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary);
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background-color: var(--light);
}

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

.gallery-item {
  height: 250px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.5rem;
  font-weight: 600;
}

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

.cta h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
}

.cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

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

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

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

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  margin-left: 10px;
}

.footer-about {
  margin-top: 15px;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-links h4:after, .footer-contact h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

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

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

.footer-links a {
  color: var(--light);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}

.footer-contact p {
  margin-bottom: 15px;
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: var(--secondary);
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 2;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .benefits-grid, .process-steps {
    gap: 25px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--dark);
  padding: 20px;
  display: none;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-mobile a {
  color: var(--light);
  text-decoration: none;
  padding: 12px 0;
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover {
  color: var(--secondary);
}

.nav-mobile.active {
  display: flex;
}
