/* Main Styles for undressherIN.pw */
:root {
  --primary: #FF9800;
  --primary-dark: #F57C00;
  --secondary: #4CAF50;
  --secondary-dark: #388E3C;
  --accent: #9C27B0;
  --text: #212121;
  --text-light: #757575;
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --gradient: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

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

.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

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

p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: white;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-primary {
  background: var(--primary);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}

/* Header Styles */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
}

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

.logo {
  max-width: 180px;
}

.logo-svg {
  height: 40px;
  width: auto;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.menu-icon, 
.menu-icon:before, 
.menu-icon:after {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

.menu-icon {
  top: 14px;
}

.menu-icon:before {
  content: '';
  top: -10px;
}

.menu-icon:after {
  content: '';
  top: 10px;
}

.menu-toggle.active .menu-icon {
  background-color: transparent;
}

.menu-toggle.active .menu-icon:before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle.active .menu-icon:after {
  transform: rotate(-45deg);
  top: 0;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  padding: 5px;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding: 140px 0 80px;
  background-color: #FFF8E1;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.hero-design {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-shape {
  width: 100%;
  max-width: 400px;
  opacity: 0.7;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--text);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

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

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

.feature {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

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

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text);
}

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

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: #F5F5F5;
}

.steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.step:last-child {
  margin-bottom: 40px;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 25px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text);
}

.step-content p {
  color: var(--text-light);
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-color: var(--bg-white);
}

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

.testimonial {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  padding: 30px;
  background-color: var(--bg-light);
  border-left: 3px solid var(--primary);
}

.testimonial-content p {
  position: relative;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-content p::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text);
}

.testimonial-author p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: #F5F5F5;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 30px;
  background-color: var(--bg-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.faq-toggle {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-toggle:before,
.faq-toggle:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

.faq-toggle:after {
  transform: rotate(90deg);
}

.faq-item.active .faq-toggle:after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 20px;
  max-height: 1000px;
}

.faq-answer p {
  color: var(--text-light);
}

/* Final CTA Section */
.final-cta {
  padding: 80px 0;
  background: var(--gradient);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Footer */
.footer {
  padding: 80px 0 30px;
  background-color: #263238;
  color: white;
}

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

.footer-brand p {
  margin-top: 15px;
  opacity: 0.7;
}

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

.footer h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

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

.footer-keywords p {
  opacity: 0.7;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Animation classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeInUp 0.5s ease forwards;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    padding: 20px 0;
    box-shadow: var(--shadow-md);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  
  .nav-menu ul li {
    margin: 15px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-design {
    display: none;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  
  .feature {
    padding: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
