/*
 * undressaiIN.love - Main Stylesheet
 * Indian AI undressing tool website
 * Color scheme: Orange and pink with white accents
 */

/* Base styles and reset */
:root {
    --primary-color: #ff5722;
    --secondary-color: #e91e63;
    --accent-color: #ffc107;
    --dark-color: #212121;
    --light-color: #ffffff;
    --text-color: #333333;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Poppins', 'Noto Sans', sans-serif;
    color: var(--text-color);
    background-color: #f8f8f8;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.content-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

section {
    padding: 80px 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* Header and Navigation */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.brand {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navigation ul li a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.navigation ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: var(--gradient);
    transition: var(--transition);
    border-radius: 3px;
}

.navigation ul li a:hover {
    color: var(--primary-color);
}

.navigation ul li a:hover::before {
    width: 100%;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

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

.hamburger-menu.active span:first-child {
    transform: translateY(8.5px) rotate(45deg);
}

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

.hamburger-menu.active span:last-child {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.05), rgba(233, 30, 99, 0.1));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.highlight {
    color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.subheadline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.decoration-circle:first-child {
    width: 400px;
    height: 400px;
    right: -100px;
    top: -100px;
    background: linear-gradient(45deg, rgba(255, 87, 34, 0.2), rgba(233, 30, 99, 0.2));
    animation: float 8s infinite alternate ease-in-out;
}

.decoration-circle:last-child {
    width: 300px;
    height: 300px;
    right: 10%;
    bottom: 10%;
    background: linear-gradient(45deg, rgba(233, 30, 99, 0.2), rgba(255, 193, 7, 0.2));
    animation: float 12s infinite alternate-reverse ease-in-out;
}

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

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 87, 34, 0.1);
    transform: translateY(-3px);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Banner Section */
.banner {
    padding: 20px 0;
    background: var(--gradient);
    color: white;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.banner-text {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Features Section */
.features {
    background-color: #fff;
    position: relative;
}

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

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

.feature-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

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

.feature-tile:hover::before {
    opacity: 1;
}

.feature-tile:hover h3,
.feature-tile:hover p {
    color: white;
}

.feature-tile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, rgba(255, 87, 34, 0.1), rgba(233, 30, 99, 0.1));
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-tile:hover .feature-tile-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-tile h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    transition: var(--transition);
}

.feature-tile p {
    transition: var(--transition);
    color: #666;
}

/* Process Section */
.process {
    background-color: #f8f8f8;
    position: relative;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--gradient);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    flex-grow: 1;
}

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

.action-center {
    text-align: center;
    margin-top: 50px;
}

/* FAQ Section */
.faq {
    background-color: #fff;
}

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

.faq-item {
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    background-color: #fff;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: var(--transition);
}

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

/* Testimonial Section */
.testimonial {
    background: var(--gradient);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.quote-mark {
    font-size: 6rem;
    line-height: 0;
    height: 60px;
    display: block;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 30px;
}

.quote-author {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    opacity: 0.8;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* CTA Section */
.cta-section {
    background-color: #f8f8f8;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 30px;
    margin-top: auto;
}

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

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

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

.footer-brand-info h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.footer-brand-info p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a:hover {
    color: white;
}

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

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

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

/* Media Queries */
@media (max-width: 992px) {
    .headline {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        padding: 100px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .navigation.active {
        right: 0;
    }
    
    .navigation ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .headline {
        font-size: 2.3rem;
    }
    
    .quote-text {
        font-size: 1.3rem;
    }
}
