/*
* undressingIN.pw - Main Styles
* Custom design for Indian audience
* Primary colors based on Indian flag: #FF9933 (saffron), #FFFFFF (white), #138808 (green)
* Accent color: #FF5733 (darker orange/red)
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #FCFCFC;
    overflow-x: hidden;
}

.main-container {
    max-width: 100%;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #222222;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    text-align: center;
}

h3 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #FF5733;
    transition: color 0.3s ease;
}

a:hover {
    color: #138808;
}

section {
    padding: 4rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.section-header h2 {
    display: inline-block;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    background: linear-gradient(to right, #FF9933, #138808);
    margin: 0 auto;
    width: 80px;
    border-radius: 2px;
}

.accent {
    color: #FF5733;
}

/* Header styles */
header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.8rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    max-width: 220px;
}

.logo-svg {
    width: 100%;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    position: relative;
    padding-bottom: 3px;
}

nav ul li a:hover {
    color: #FF5733;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, #FF9933, #138808);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, #FF9933, #FF5733);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 153, 51, 0.3);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #FF5733, #138808);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 87, 51, 0.4);
}

.cta-btn::after {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.05), rgba(19, 136, 8, 0.05));
    padding: 5rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.1) 0%, rgba(255, 153, 51, 0) 70%);
    top: -200px;
    right: -100px;
    z-index: 0;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-svg {
    width: 100%;
    max-width: 450px;
    height: auto;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.primary-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF9933, #FF5733);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #FF5733, #138808);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 87, 51, 0.4);
    color: white;
}

.hero-stats {
    display: flex;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF5733;
}

.stat-text {
    font-size: 0.9rem;
    color: #666;
}

/* Features Section */
.features-section {
    background-color: white;
    padding: 5rem 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #FFF;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #FF9933;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

/* How-to Section */
.how-to-section {
    background-color: #F9F9F9;
    padding: 5rem 1rem;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.step-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FF9933, #FF5733);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0.5rem auto 1.5rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.secondary-btn {
    display: inline-block;
    background: white;
    color: #FF5733;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #FF5733;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #FF9933, #FF5733);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 87, 51, 0.2);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #FF9933, #138808);
    padding: 4rem 1rem;
    text-align: center;
    color: white;
}

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

.banner-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.banner-content h2::after {
    display: none;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.accent-btn {
    display: inline-block;
    background: white;
    color: #FF5733;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accent-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #138808;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 1rem;
    background-color: white;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: #F9F9F9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.faq-item h3 {
    color: #FF5733;
    margin-bottom: 0.8rem;
}

/* Footer */
footer {
    background-color: #222222;
    color: white;
    padding: 4rem 1rem 1rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 3rem;
    justify-content: space-between;
}

.footer-logo, .footer-links, .footer-legal, .footer-contact {
    margin-bottom: 2rem;
}

.footer-logo {
    flex: 2;
    min-width: 300px;
}

.footer-svg {
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #CCC;
    margin-bottom: 1.5rem;
}

.footer-links, .footer-legal, .footer-contact {
    flex: 1;
    min-width: 200px;
}

footer h3 {
    color: white;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

footer h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #FF9933;
    left: 0;
    bottom: 0;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 0.7rem;
}

footer ul li a {
    color: #AAA;
}

footer ul li a:hover {
    color: #FF9933;
}

.footer-favicon {
    margin-top: 1rem;
    display: flex;
    align-items: center;
}

.favicon-footer {
    margin-right: 1rem;
}

.social-icons {
    display: flex;
    margin-top: 1rem;
}

.social-icon {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    color: #AAA;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hamburger {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        transition: all 0.5s ease;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 1.5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 87, 51, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    }
}

.feature-card, .step-card, .faq-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.3s; }
.feature-card:nth-child(3) { animation-delay: 0.5s; }
.feature-card:nth-child(4) { animation-delay: 0.7s; }

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.3s; }
.step-card:nth-child(3) { animation-delay: 0.5s; }

.primary-btn {
    animation: pulse 2s infinite;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF9933, #FF5733);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 51, 0.3);
    z-index: 99;
    border: none;
}
