/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1E1B4B;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1E1B4B;
}

h1 {
    font-size: 48px;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #64748B;
}

a {
    text-decoration: none;
    color: #6B46C1;
    transition: color 0.3s ease;
}

a:hover {
    color: #EC4899;
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(107, 70, 193, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1E1B4B;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #6B46C1;
}

.cta-nav {
    background: linear-gradient(135deg, #EC4899 0%, #6B46C1 100%);
    color: #FFFFFF !important;
    padding: 10px 25px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
    color: #FFFFFF !important;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    position: absolute;
    opacity: 0;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: #6B46C1;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('./img/loqyMI.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 27, 75, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    max-width: 800px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    color: #FFFFFF;
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.hero p {
    font-size: 20px;
    color: #E9D5FF;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #EC4899 0%, #6B46C1 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.5);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, #E9D5FF 0%, #FFFFFF 100%);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.about-item {
    padding: 30px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(107, 70, 193, 0.3);
}

.about-item .icon {
    font-size: 48px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

/* Services Section */
.services-section {
    background: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(180deg, #E9D5FF 0%, #FFFFFF 100%);
    border: 3px solid;
    border-image: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%) 1;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card::before {
    content: '⭐';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    animation: pulse 2s infinite;
    z-index: 2;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.3);
}

.service-card h3 {
    color: #6B46C1;
    margin: 20px 20px 15px;
}

.service-card p {
    margin: 0 20px 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #EC4899;
    margin: 0 20px 30px;
}

/* How It Works Section */
.how-section {
    background: #1E1B4B;
    color: #FFFFFF;
}

.how-section h2 {
    color: #FFFFFF;
}

.how-section .section-title h2 {
    -webkit-text-fill-color: #FFFFFF;
    color: #FFFFFF;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EC4899 0%, #6B46C1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
}

.step-item h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
}

.step-item p {
    color: #E9D5FF;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 50%, #F59E0B 100%);
    color: #FFFFFF;
}

.benefits-section h2 {
    color: #FFFFFF;
}

.benefits-section .section-title h2 {
    -webkit-text-fill-color: #FFFFFF;
    color: #FFFFFF;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.benefit-item h3 {
    color: #FFFFFF;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #E9D5FF;
}

/* Testimonials Section */
.testimonials-section {
    background: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #FFFFFF;
    border: 2px solid #E9D5FF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(107, 70, 193, 0.3);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #64748B;
}

.testimonial-author {
    font-weight: 600;
    color: #6B46C1;
}

/* Form Section */
.form-section {
    background: linear-gradient(180deg, #E9D5FF 0%, #FFFFFF 100%);
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 50px;
    border-radius: 30px;
    border: 3px solid;
    border-image: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%) 1;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.3);
    position: relative;
    overflow: hidden;
}

.form-container::before,
.form-container::after {
    content: '✨';
    position: absolute;
    font-size: 32px;
    color: #F59E0B;
    animation: pulse 2s infinite;
}

.form-container::before {
    top: 20px;
    left: 20px;
}

.form-container::after {
    bottom: 20px;
    right: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #1E1B4B;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #E9D5FF;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6B46C1;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #64748B;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group a {
    color: #6B46C1;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #EC4899 0%, #6B46C1 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.5);
}

/* FAQ Section */
.faq-section {
    background: #FFFFFF;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #E9D5FF;
    border-radius: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.2);
}

.faq-item summary {
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1E1B4B;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    color: #6B46C1;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background-color: #E9D5FF;
}

.faq-item p {
    padding: 0 20px 20px;
    color: #64748B;
    animation: fadeInUp 0.3s ease;
}

/* Contact Section */
.contact-section {
    background: #1E1B4B;
    color: #FFFFFF;
}

.contact-section h2 {
    color: #FFFFFF;
}

.contact-section .section-title h2 {
    -webkit-text-fill-color: #FFFFFF;
    color: #FFFFFF;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.contact-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-box .contact-item {
    text-align: left;
    padding: 20px 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-box .contact-icon {
    font-size: 32px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.contact-box .contact-item h3 {
    margin-bottom: 10px;
}

.contact-box .contact-item > div:last-child {
    flex: 1;
}

.contact-box .contact-item:last-child {
    border-bottom: none;
}

.contact-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-item h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
}

.contact-item p,
.contact-item a {
    color: #E9D5FF;
}

.contact-item a:hover {
    color: #FFFFFF;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%);
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    color: #E9D5FF;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #E9D5FF;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #E9D5FF;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%);
    color: #FFFFFF;
    padding: 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 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;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #FFFFFF;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #FFFFFF;
    text-decoration: underline;
}

.cookie-btn {
    padding: 10px 30px;
    background: #FFFFFF;
    color: #6B46C1;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

/* Policy Pages */
.policy-page {
    padding: 80px 0;
    background: linear-gradient(180deg, #E9D5FF 0%, #FFFFFF 100%);
    min-height: calc(100vh - 200px);
}

.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 50px;
    border-radius: 20px;
    border: 2px solid;
    border-image: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%) 1;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.2);
}

.policy-container h1 {
    color: #6B46C1;
    margin-bottom: 20px;
}

.policy-container h2 {
    color: #1E1B4B;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-container p {
    margin-bottom: 15px;
}

.policy-container ul,
.policy-container ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-container li {
    margin-bottom: 10px;
    color: #64748B;
}

.policy-date {
    color: #64748B;
    font-style: italic;
    margin-bottom: 30px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    body {
        font-size: 14px;
    }
    
    .menu-icon {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #FFFFFF;
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .menu-toggle:checked ~ .header-content .main-nav {
        left: 0;
    }
    
    .menu-toggle:checked ~ .header-content .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle:checked ~ .header-content .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .header-content .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .services-grid,
    .benefits-list,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-image {
        min-height: 300px;
        order: -1;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero {
        min-height: 80vh;
    }
}

