/* Modern CSS with unique color palette and layout */
:root {
  --primary-color: #FF6F00;
  --secondary-color: #E040FB;
  --accent-color: #1DE9B6;
  --text-light: #FFFFFF;
  --text-dark: #263238;
  --bg-color: #ECEFF1;
  --card-bg: #FFFFFF;
  --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

body {
  font-family: 'Quicksand', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
}

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

header {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.logo {
  height: 40px;
  width: auto;
  margin-right: 12px;
}

.site-title {
  font-weight: 700;
  font-size: 1.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--accent-color);
}

.nav-btn {
  background: var(--gradient);
  color: var(--text-light);
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--text-dark);
  color: var(--text-light);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(224, 64, 251, 0.3), transparent 70%),
              radial-gradient(circle at 30% 70%, rgba(255, 111, 0, 0.3), transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

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

.hero h1 .highlight {
  color: var(--accent-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  background: var(--gradient);
  color: var(--text-light);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.features {
  padding: 100px 0 80px;
  position: relative;
}

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

.section-heading h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.section-heading p {
  max-width: 600px;
  margin: 0 auto;
  color: #78909C;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  position: relative;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

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

.process {
  padding: 80px 0;
  background: linear-gradient(rgba(38, 50, 56, 0.9), rgba(38, 50, 56, 0.9)), 
              url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23E040FB' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  color: var(--text-light);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 50px;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 15px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.step h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
}

.gallery {
  padding: 80px 0;
  background-color: #FAFAFA;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,111,0,0.1), rgba(224,64,251,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-icon {
  width: 80px;
  height: 80px;
}

.pricing {
  padding: 80px 0;
}

.price-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 15px;
  align-items: center;
}

.price-option {
  margin-bottom: 0;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: var(--gradient);
  border-radius: 30px;
  padding: 5px;
  cursor: pointer;
}

.toggle-circle {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-circle.yearly {
  transform: translateX(30px);
}

.plans {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.plan {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  flex: 1;
  max-width: 360px;
  text-align: center;
}

.plan-popular {
  position: relative;
  overflow: hidden;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, var(--gradient) border-box;
}

.popular-tag {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--accent-color);
  color: var(--text-dark);
  font-weight: 700;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 0.8rem;
}

.plan-name {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.plan-price .currency {
  font-size: 1.2rem;
  vertical-align: super;
}

.plan-price .period {
  font-size: 0.9rem;
  color: #78909C;
  font-weight: 400;
}

.plan-features {
  list-style: none;
  margin: 25px 0;
}

.plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid #ECEFF1;
}

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

.plan .cta-btn {
  width: 100%;
  margin-top: 15px;
}

.cta-section {
  padding: 100px 0;
  background: var(--gradient);
  color: var(--text-light);
  text-align: center;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  margin: 60px 0 0;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section .cta-btn {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 60px 0 30px;
}

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

.footer-about .logo-container {
  margin-bottom: 20px;
}

.footer-about p {
  opacity: 0.7;
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

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

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

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

.footer-links li a:hover {
  opacity: 1;
}

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

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive design */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    flex-direction: column;
    gap: 30px;
  }
  
  .process-steps::before {
    display: none;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .plans {
    flex-direction: column;
    align-items: center;
  }
  
  .plan {
    width: 100%;
    max-width: 400px;
  }
  
  .plan-popular {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  nav ul {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--text-dark);
    flex-direction: column;
    padding: 20px 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 99;
  }
  
  nav ul.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  nav ul li {
    margin: 10px 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .section-heading h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section {
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  }
}
