/* 
 * undresserIN.love - Indian AI Undressing Tool CSS
 * Unique Circular Mandala-inspired Design
 * Colors based on Indian flag: Saffron (#FF9933), White (#FFFFFF), Green (#138808), Navy (#000080)
 */

/* Base Styles and Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Indian flag colors plus accents */
    --saffron: #FF9933;
    --white: #FFFFFF;
    --green: #138808;
    --navy: #000080;
    --dark: #1A1A2E;
    --light-saffron: #FFCB8C;
    --light-green: #7DC591;
    
    /* Common values */
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #f7f7f7;
    position: relative;
    overflow-x: hidden;
}

.site-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Background Patterns - Unique for Indian site */
.mandala-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.05;
    background: radial-gradient(circle at 50% 50%, 
        var(--saffron) 2px, 
        transparent 3px), 
        radial-gradient(circle at 25% 25%, 
        var(--green) 2px, 
        transparent 3px);
    background-size: 50px 50px;
}

.mandala-divider {
    position: relative;
    height: 60px;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.mandala-divider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: radial-gradient(circle at 50% 100%, 
        var(--white) 30px, 
        var(--saffron) 30px, 
        var(--saffron) 32px, 
        transparent 32px) repeat-x;
    background-size: 60px 60px;
}

.mandala-divider-alt {
    transform: rotate(180deg);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--saffron);
}

/* Buttons */
.primary-btn, .outline-btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.primary-btn {
    background: linear-gradient(45deg, var(--saffron), var(--light-saffron));
    color: var(--dark);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.6);
}

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

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

.btn-lg {
    padding: 15px 32px;
    font-size: 1.1rem;
}

/* Header Styles */
.site-header {
    position: relative;
    z-index: 100;
}

.main-nav {
    padding: 15px 0;
    transition: var(--transition);
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
}

.logo-icon {
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin: 0 12px;
}

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

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--saffron), var(--green));
    transition: var(--transition);
}

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

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

.nav-menu .nav-btn {
    background-color: var(--saffron);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
}

.nav-menu .nav-btn:hover {
    background-color: var(--light-saffron);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section - Circular Design */
.hero-section {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(255,255,255,0.9) 20%, rgba(255,255,255,0.5) 100%);
}

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

.hero-content {
    max-width: 600px;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--saffron);
    margin-bottom: 5px;
}

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

.hero-visual {
    position: relative;
    height: 400px;
}

/* Mandala Elements - unique for Indian site */
.mandala-1, .mandala-2, .mandala-3 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
}

.mandala-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, var(--saffron), var(--white), var(--green), var(--saffron));
    animation: rotate 20s linear infinite;
}

.mandala-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid var(--navy);
}

.mandala-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--navy);
}

.mandala-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(19, 136, 8, 0.3);
}

.small {
    width: 20px;
    height: 20px;
    top: 30%;
    left: 20%;
    border-color: rgba(255, 153, 51, 0.3);
    animation: float 10s ease-in-out infinite;
}

.medium {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 70%;
    border-color: rgba(19, 136, 8, 0.3);
    animation: float 15s ease-in-out infinite reverse;
}

.large {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 80%;
    border-color: rgba(0, 0, 128, 0.3);
    animation: float 20s ease-in-out infinite;
}

.small.alt {
    top: 70%;
    left: 30%;
    border-color: rgba(0, 0, 128, 0.3);
    animation-delay: 5s;
}

.medium.alt {
    top: 40%;
    left: 60%;
    border-color: rgba(255, 153, 51, 0.3);
    animation-delay: 7s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--green));
    border-radius: 3px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

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

.about-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(19, 136, 8, 0.1) 100%);
    z-index: -1;
    border-radius: 50%;
    transform: scale(0);
    transition: var(--transition);
}

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

.about-card:hover::before {
    transform: scale(2);
}

.about-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 153, 51, 0.1);
    color: var(--saffron);
}

.about-card h3 {
    margin-bottom: 15px;
}

.about-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.features-grid {
    align-items: center;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.features-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.features-list svg {
    margin-right: 15px;
    color: var(--green);
    min-width: 24px;
}

.features-visual {
    position: relative;
    height: 400px;
}

.mandala-pattern-alt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.circle.small-alt {
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-150%, -100%);
    background-color: rgba(255, 153, 51, 0.1);
    border: 2px solid var(--saffron);
    animation: pulse 4s ease infinite;
}

.circle.medium-alt {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed var(--green);
    animation: rotate 15s linear infinite;
}

.circle.large-alt {
    width: 260px;
    height: 260px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--navy);
    animation: pulse 8s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
}

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

/* How It Works Section */
.how-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--light-saffron) 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
}

.step-icon::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px dashed var(--saffron);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.step-card h3 {
    margin-bottom: 15px;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.05) 0%, rgba(19, 136, 8, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: var(--saffron);
    font-family: Georgia, serif;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin: 20px 0 30px;
}

.testimonial-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-rating {
    color: var(--saffron);
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

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

.accordion-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.accordion-header {
    background-color: #fff;
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: var(--transition);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
    content: "";
    position: absolute;
    background-color: var(--saffron);
    transition: var(--transition);
}

.accordion-icon::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.accordion-icon::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-item.active .accordion-icon::before {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion-content {
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 20px 20px;
}

.accordion-item.active .accordion-header {
    background-color: rgba(255, 153, 51, 0.05);
}

.accordion-content p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.9) 0%, rgba(255, 203, 140, 0.9) 100%);
    text-align: center;
    color: #fff;
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 15%),
                      radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.1) 0%, transparent 15%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 2.2rem;
}

.cta-section p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .primary-btn {
    background-color: #fff;
    color: var(--saffron);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .primary-btn:hover {
    background-color: var(--dark);
    color: #fff;
}

/* Footer */
.site-footer {
    background-color: var(--dark);
    color: #fff;
    padding: 80px 0 20px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    margin-right: 15px;
}

.brand-info h3 {
    margin-bottom: 5px;
    color: #fff;
}

.brand-info p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    color: var(--saffron);
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--green);
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--saffron);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.keywords {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .mandala-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 100;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .mandala-grid,
    .about-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-visual {
        order: -1;
        height: 300px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions a {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .features-visual {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .quote-mark {
        font-size: 4rem;
        top: 10px;
        left: 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .accordion-header {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}
