/* Main CSS for undressaiporn.xyz - Unique Teal/Purple Design */
:root {
  --primary-color: #0D9488;
  --secondary-color: #8B5CF6;
  --dark-color: #0F766E;
  --accent-color: #C084FC;
  --background-color: #ECFEFF;
  --text-color: #1E293B;
  --light-text: #64748B;
  --card-bg: #FFFFFF;
  --card-shadow: 0 10px 25px rgba(13, 148, 136, 0.1);
  --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

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

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

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

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

/* Unique curved header design with floating elements */
header {
  position: relative;
  background-color: var(--primary-color);
  padding: 7rem 0 12rem;
  overflow: hidden;
  border-bottom-left-radius: 30% 10%;
  border-bottom-right-radius: 30% 10%;
}

.floating-circle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 10%;
}

.circle-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 20%;
}

.header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.logo-wrapper {
  display: inline-block;
  margin-bottom: 2.5rem;
  position: relative;
}

.logo {
  width: 130px;
  height: 130px;
}

.site-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #C084FC);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tagline {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 1s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(139, 92, 246, 0.4);
  color: white;
}

.cta-button:hover:before {
  transform: translateX(100%);
}

/* Unique honeycomb features layout */
.features-section {
  position: relative;
  margin-top: -6rem;
  padding-bottom: 6rem;
  z-index: 5;
}

.features-section h2,
.process-section h2,
.testimonials-section h2,
.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
}

.features-section p,
.process-section p,
.testimonials-section p {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.feature-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 10;
  border-bottom: 4px solid var(--primary-color);
}

.feature-card:nth-child(even) {
  border-bottom-color: var(--secondary-color);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.2);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  background: var(--gradient);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: rotate(0deg);
}

.feature-icon {
  width: 40px;
  height: 40px;
  fill: white;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(0deg) scale(1.2);
}

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

.feature-card:nth-child(even) .feature-title {
  color: var(--secondary-color);
}

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

/* Unique process section with connected cards */
.process-section {
  padding: 7rem 0;
  background-color: #F8FAFC;
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--background-color);
  clip-path: ellipse(70% 100% at 50% 0%);
}

.process-grid {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0;
  display: flex;
  justify-content: space-between;
}

.process-item {
  flex: 0 1 28%;
  text-align: center;
  position: relative;
}

.process-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gradient);
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(13, 148, 136, 0.2);
  position: relative;
  z-index: 1;
}

.process-number {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 5px 10px rgba(192, 132, 252, 0.3);
}

.process-icon svg {
  width: 45px;
  height: 45px;
  fill: white;
}

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

.process-description {
  color: var(--light-text);
}

.process-connector {
  position: absolute;
  top: 45px;
  left: calc(28% + 45px);
  right: calc(28% + 45px);
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  z-index: 0;
}

/* Unique testimonial section */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--background-color);
  position: relative;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(13, 148, 136, 0.15);
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(13, 148, 136, 0.2);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

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

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

.author-info h4 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.author-location {
  font-size: 0.875rem;
  color: var(--light-text);
}

/* Unique CTA section with wavy design */
.cta-section {
  padding: 8rem 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

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

.cta-section::before {
  top: -100px;
  left: -50%;
  border-radius: 50%;
}

.cta-section::after {
  bottom: -100px;
  right: -50%;
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

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

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

/* Unique footer with overlapping sections */
footer {
  background-color: #0F172A;
  color: white;
  padding: 7rem 0 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--primary-color);
  clip-path: ellipse(70% 100% at 50% 0%);
}

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

.footer-logo-wrapper {
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 100px;
  height: auto;
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

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

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

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

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

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

/* Mobile Responsive */
@media (max-width: 992px) {
  .process-grid {
    flex-direction: column;
    gap: 4rem;
  }
  
  .process-item {
    flex: 0 1 100%;
  }
  
  .process-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-title {
    font-size: 2.25rem;
  }
  
  .tagline {
    font-size: 1.125rem;
  }
  
  .cta-button {
    padding: 1rem 2rem;
  }
  
  header {
    padding: 5rem 0 8rem;
  }
  
  .features-grid {
    gap: 3rem;
  }
  
  .cta-heading {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .site-title {
    font-size: 1.75rem;
  }
  
  .logo {
    width: 100px;
    height: 100px;
  }
  
  .testimonial-grid {
    gap: 3rem;
  }
}
