/* Main CSS file for undressvip.pw */
:root {
  --primary-color: #10B981;
  --secondary-color: #F59E0B;
  --dark-color: #064E3B;
  --light-color: #D1FAE5;
  --text-color: #1F2937;
  --light-text: #4B5563;
  --background-color: #ECFDF5;
  --card-bg: #FFFFFF;
  --card-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
}

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

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

/* Distinctive diamond pattern header */
header {
  background-color: var(--primary-color);
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(135deg, rgba(245, 158, 11, 0.15) 25%, transparent 25%),
    linear-gradient(225deg, rgba(245, 158, 11, 0.15) 25%, transparent 25%),
    linear-gradient(315deg, rgba(245, 158, 11, 0.15) 25%, transparent 25%),
    linear-gradient(45deg, rgba(245, 158, 11, 0.15) 25%, transparent 25%);
  background-size: 40px 40px;
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.logo {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
}

.site-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.site-description {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--secondary-color), #FBBF24);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  color: white;
}

/* Main section styles */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

/* Unique features layout with hexagon shape */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature-item {
  position: relative;
  background: var(--card-bg);
  border-radius: 10px;
  padding: 3rem 2rem 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

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

.feature-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.feature-description {
  color: var(--light-text);
  font-size: 1rem;
}

/* How it works section with custom spacing */
.how-it-works {
  background-color: #F8FAFC;
  position: relative;
}

.steps {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  z-index: 1;
}

.step {
  display: flex;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.step:last-child {
  margin-bottom: 0;
}

.step:nth-child(odd) {
  flex-direction: row;
}

.step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-content {
  flex: 1;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
}

.step:nth-child(odd) .step-content {
  margin-right: 2rem;
  margin-left: 5rem;
}

.step:nth-child(even) .step-content {
  margin-left: 2rem;
  margin-right: 5rem;
}

.step-marker {
  position: absolute;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 8px var(--background-color);
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* Unique CTA design with waves */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 12rem;
  background: rgba(255, 255, 255, 0.1);
  left: -50%;
}

.cta-section::before {
  top: -8rem;
  border-radius: 0 0 50% 50%;
}

.cta-section::after {
  bottom: -8rem;
  border-radius: 50% 50% 0 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

/* Testimonials with unique design */
.testimonials {
  background-color: white;
}

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

.testimonial-card {
  background-color: var(--background-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  position: relative;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-size: 5rem;
  color: rgba(16, 185, 129, 0.1);
  font-family: Georgia, serif;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.author-name {
  font-weight: 600;
  color: var(--primary-color);
}

/* Footer with distinctive design */
footer {
  background-color: #064E3B;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-logo {
  width: 100px;
  margin-bottom: 1rem;
}

.footer-description {
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .steps::before {
    left: 2rem;
  }
  
  .step {
    flex-direction: column !important;
    margin-bottom: 3rem;
  }
  
  .step-content {
    margin: 0 0 0 4rem !important;
  }
  
  .step-marker {
    left: 2rem;
  }
}

@media (max-width: 768px) {
  .site-title {
    font-size: 2.25rem;
  }
  
  .site-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}
