/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #0F172A;
    background-color: #F8FAFC;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.main-header {
    background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 50%, #EC4899 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(76, 29, 149, 0.3);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    background: linear-gradient(90deg, #F59E0B 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 8px;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 100%);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(76, 29, 149, 0.3);
    }
    
    .menu-toggle:checked ~ .main-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 50%, #EC4899 100%);
    background-image: url('./img/v1glsN.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
    text-align: center;
    color: #FFFFFF;
    padding: 100px 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(76, 29, 149, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, #F59E0B 0%, #EC4899 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
    animation: pulse 2s infinite;
}

/* Sections */
section {
    padding: 80px 20px;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #7C3AED 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits .section-title,
.contact .section-title {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background: none !important;
}

/* About Section */
.about {
    background: #F8FAFC;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.8;
    margin-bottom: 40px;
    color: #0F172A;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    padding: 30px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #7C3AED;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(180deg, #7C3AED 0%, #4C1D95 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #F59E0B;
}

.service-card p {
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #F59E0B;
    margin-bottom: 20px;
}

.btn-service {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #F59E0B 0%, #EC4899 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.btn-service:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

/* How It Works Section */
.how-it-works {
    background: #F8FAFC;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #F59E0B 0%, #EC4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #7C3AED;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 100%);
    color: #FFFFFF;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.benefits-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.benefits-list li::before {
    content: '★';
    color: #F59E0B;
    font-size: 24px;
}

/* Testimonials Section */
.testimonials {
    background: #F8FAFC;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
}

.testimonial-rating {
    color: #F59E0B;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #7C3AED;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    padding: 80px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(76, 29, 149, 0.2);
    position: relative;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 50%, #EC4899 100%);
    border-radius: 20px;
    z-index: -1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0F172A;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
}

.checkbox-group a {
    color: #7C3AED;
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: #EC4899;
}

/* FAQ Section */
.faq {
    background: #F8FAFC;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #7C3AED 0%, #EC4899 100%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:focus-within::before {
    opacity: 1;
}

.faq-item summary {
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
    color: #7C3AED;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    color: #F59E0B;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 20px 20px;
    color: #0F172A;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 100%);
    color: #FFFFFF;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-image {
    flex: 1;
    min-width: 0;
    max-width: 400px;
    width: 100%;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.contact-info-wrapper {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-item a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #F59E0B;
}

.contact-icon {
    font-size: 24px;
}

/* Footer */
.main-footer {
    background: #0F172A;
    color: #FFFFFF;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #F59E0B;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F59E0B;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 100%);
    color: #FFFFFF;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(76, 29, 149, 0.3);
    z-index: 10000;
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-link {
    color: #FFFFFF;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #F59E0B;
}

.cookie-accept {
    padding: 12px 30px;
    background: linear-gradient(90deg, #F59E0B 0%, #EC4899 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

/* Policy Pages */
.policy-page {
    padding: 100px 20px;
    min-height: 80vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.policy-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 50%, #EC4899 100%);
    border-radius: 20px;
    z-index: -1;
}

.policy-title {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #7C3AED 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-page .policy-title {
    text-align: center;
}

.policy-content {
    line-height: 1.8;
    color: #0F172A;
}

.thank-you-page .policy-content {
    text-align: center;
}

.thank-you-page .policy-content h2,
.thank-you-page .policy-content p,
.thank-you-page .policy-content ul {
    text-align: center;
}

.thank-you-page .policy-content ul {
    display: inline-block;
    text-align: left;
}

.policy-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #7C3AED;
}

.policy-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #4C1D95;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #E2E8F0;
}

.policy-contact h3 {
    color: #7C3AED;
    margin-bottom: 15px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }
    
    section {
        padding: 60px 20px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .services-grid,
    .testimonials-grid,
    .steps {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }
    
    .form-container {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .policy-container {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-content {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-image {
        max-width: 100%;
        width: 100%;
    }
    
    .contact-info-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .main-nav {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }
    
    .hero {
        padding: 80px 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 16px;
        width: auto;
        max-width: 100%;
    }
    
    .container {
        padding: 0 10px;
    }
    
    section {
        padding: 40px 10px;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

