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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #f5f3ff;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #1a0b2e 100%);
    min-height: 100vh;
}

.footer-list a{
    color: #d8b4fe;
    font-size: 0.875rem;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 1rem;
}

.hero-gradient-1,
.hero-gradient-2 {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient-1 {
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.1), transparent 50%);
}

.hero-gradient-2 {
    background: radial-gradient(circle at 70% 50%, rgba(168, 85, 247, 0.1), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
    animation: pulseSlow 3s ease-in-out infinite;
}

.hero-badge span {
    color: #e9d5ff;
    font-size: 0.875rem;
    font-family: 'Playfair Display', serif;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(to right, #c084fc, #f0abfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #e9d5ff;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(to right, #9333ea, #db2777);
    color: white;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.5);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.6);
}

.btn-outline {
    border: 2px solid #c084fc;
    color: #e9d5ff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(168, 85, 247, 0.2);
}

.btn-full {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: #c084fc;
}

/* Sections */
.section {
    padding: 6rem 1rem;
    position: relative;
}

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

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.section-subtitle {
    text-align: center;
    color: #e9d5ff;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    margin-top: -2rem;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: rgba(88, 28, 135, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(88, 28, 135, 0.3);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
}

.benefit-icon {
    color: #c084fc;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    color: #f0abfc;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: #e9d5ff;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom, transparent, rgba(88, 28, 135, 0.3), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.3), rgba(88, 28, 135, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(168, 85, 247, 0.6);
    transform: scale(1.05);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #e9d5ff;
}

.service-description {
    color: #e9d5ff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    padding-top: 1rem;
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #c084fc, #f0abfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(88, 28, 135, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(88, 28, 135, 0.3);
    transform: scale(1.1);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(to right, #c084fc, #f0abfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: #e9d5ff;
    font-size: 1.125rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(to bottom, transparent, rgba(88, 28, 135, 0.3), transparent);
}

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

.testimonial-card {
    padding: 2rem;
    background: rgba(88, 28, 135, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(88, 28, 135, 0.3);
    transform: scale(1.05);
}

.testimonial-quote {
    color: #c084fc;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1;
}

.testimonial-text {
    color: #f5f3ff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid rgba(168, 85, 247, 0.3);
}

.author-name {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #d8b4fe;
    font-size: 0.875rem;
}

/* SEO Section */
.seo-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.seo-content {
    color: #e9d5ff;
    line-height: 1.8;
}

.seo-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.seo-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(to bottom, transparent, rgba(88, 28, 135, 0.3), transparent);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(88, 28, 135, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.5);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(88, 28, 135, 0.2);
}

.faq-icon {
    color: #c084fc;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #e9d5ff;
    line-height: 1.6;
}

/* Contact Section */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-card {
    padding: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.3), rgba(88, 28, 135, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.contact-form {
    margin-bottom: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #e9d5ff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(88, 28, 135, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(168, 85, 247, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c084fc;
    background: rgba(88, 28, 135, 0.6);
}

.form-group textarea {
    resize: none;
}

.contact-info {
    padding-top: 3rem;
    border-top: 1px solid rgba(168, 85, 247, 0.3);
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .contact-info-item {
        justify-content: flex-start;
    }
}

.contact-info-item svg {
    color: #c084fc;
    flex-shrink: 0;
}

.contact-info-item span {
    color: #e9d5ff;
}

/* Footer */
.footer {
    padding: 3rem 1rem;
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    background: rgba(88, 28, 135, 0.3);
}

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

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-text {
    color: #d8b4fe;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-heading {
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

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

.footer-list li {
    color: #d8b4fe;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    text-align: center;
    color: #c084fc;
    font-size: 0.875rem;
}

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

@keyframes pulseSlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}


@media(max-width: 962px){
    .benefits-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .services-grid{
        grid-template-columns: repeat(1, 1fr);
    }
}
