/* 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: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #F8FAFC;
    background-color: #0F172A;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 769px) {
    .container {
        padding: 0 40px;
    }
}

/* Header */
.main-header {
    background-color: #0F172A;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #6B46C1, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    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: #F8FAFC;
    transition: 0.3s;
    border-radius: 2px;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: #CBD5E1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #EC4899;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6B46C1, #EC4899);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1E293B;
        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(0,0,0,0.5);
    }

    .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);
    }
}

/* Sections */
section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #6B46C1, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('./img/fkrLfx.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        background-attachment: scroll;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.6), rgba(236, 72, 153, 0.6), rgba(16, 185, 129, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #CBD5E1;
}

@media (max-width: 768px) {
    .hero p {
        font-size: 18px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #6B46C1, #EC4899);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.6);
    background: linear-gradient(135deg, #7C3AED, #EC4899);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(107, 70, 193, 0.8);
    }
}

/* About Section */
.about {
    background-color: #1E293B;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #CBD5E1;
}

/* Services Section */
.services {
    background-color: #0F172A;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 481px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border: 3px solid #6B46C1;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    color: #1E293B;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #64748B;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    text-align: left;
    color: #64748B;
}

.service-card ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    background-color: #1E293B;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 481px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6B46C1, #EC4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.benefit-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #F8FAFC;
}

.benefit-content p {
    color: #CBD5E1;
}

/* Process Section */
.process {
    background-color: #0F172A;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .process-steps {
        flex-direction: row;
        justify-content: space-between;
    }
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6B46C1, #EC4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #F8FAFC;
}

.process-step p {
    color: #CBD5E1;
}

/* Testimonials Section */
.testimonials {
    background-color: #1E293B;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 769px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-text {
    color: #1E293B;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-author {
    color: #64748B;
    font-weight: 600;
}

.testimonial-company {
    color: #94A3B8;
    font-size: 14px;
}

.stars {
    color: #F59E0B;
    margin-bottom: 10px;
    font-size: 20px;
}

/* Statistics Section */
.stats {
    background-color: #0F172A;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (min-width: 481px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #6B46C1, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: countUp 2s ease;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    color: #CBD5E1;
    font-size: 16px;
}

/* Form Section */
.form-section {
    background-color: #1E293B;
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 12px;
    border: 3px solid transparent;
    background-image: linear-gradient(#FFFFFF, #FFFFFF), linear-gradient(135deg, #6B46C1, #EC4899);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }
}

.form-title {
    text-align: center;
    color: #1E293B;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 600;
}


.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #1E293B;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #CBD5E1;
    border-radius: 6px;
    font-size: 16px;
    color: #1E293B;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6B46C1;
}

.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;
    color: #1E293B;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group a {
    color: #6B46C1;
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: #EC4899;
}

.form-error {
    color: #EF4444;
    font-size: 14px;
    margin-top: 5px;
}

/* Contact Section */
.contact {
    background-color: #0F172A;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 769px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-box {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    border: 3px solid #6B46C1;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.2);
}

.contact-box h3 {
    color: #1E293B;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item h4 {
    color: #6B46C1;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-detail-item p {
    color: #64748B;
    line-height: 1.8;
    margin: 0;
}

.contact-detail-item a {
    color: #6B46C1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: #EC4899;
}

.contact-map {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .contact-map {
        height: 400px;
    }
    
    .contact-box {
        padding: 30px 20px;
    }
}

/* Footer */
.main-footer {
    background-color: #1E293B;
    padding: 60px 0 20px;
    border-top: 1px solid #334155;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 481px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3,
.footer-section h4 {
    color: #F8FAFC;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    color: #CBD5E1;
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #EC4899;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1E293B;
    color: #CBD5E1;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 41, 59, 0.95);
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(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: #F8FAFC;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #EC4899;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-decline {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(135deg, #6B46C1, #EC4899);
    color: #FFFFFF;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}

.btn-decline {
    background: transparent;
    color: #F8FAFC;
    border: 2px solid #CBD5E1;
}

.btn-decline:hover {
    border-color: #EC4899;
    color: #EC4899;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-decline {
        width: 100%;
    }
}

/* Policy Pages */
.policy-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: #FFFFFF;
    border: 3px solid #6B46C1;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.policy-container h1 {
    color: #1E293B;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.policy-container h2 {
    color: #6B46C1;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-container h3 {
    color: #1E293B;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-container p {
    color: #64748B;
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-container ul,
.policy-container ol {
    color: #64748B;
    margin-bottom: 15px;
    padding-left: 30px;
}

.policy-container li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.policy-container a {
    color: #6B46C1;
    text-decoration: underline;
}

.policy-container a:hover {
    color: #EC4899;
}

.policy-contact {
    margin-top: 40px;
    padding: 20px;
    background-color: #F8FAFC;
    border-radius: 8px;
    border-left: 4px solid #6B46C1;
}

.policy-contact h3 {
    color: #1E293B;
    margin-bottom: 15px;
}

.policy-contact p {
    color: #64748B;
    margin-bottom: 5px;
}

/* Content Pages */
.content-page {
    min-height: 80vh;
    padding: 80px 0;
    background-color: #0F172A;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .content-container {
        padding: 30px 20px;
    }
}

.content-container h1 {
    color: #1E293B;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.content-container h2 {
    color: #6B46C1;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-container h3 {
    color: #1E293B;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-container p {
    color: #64748B;
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-container ul,
.content-container ol {
    color: #64748B;
    margin-bottom: 15px;
    padding-left: 30px;
}

.content-container li {
    margin-bottom: 8px;
    line-height: 1.8;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    color: #1E293B;
    font-weight: 600;
    font-size: 18px;
    list-style: none;
    transition: background-color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: '+';
    float: right;
    font-size: 24px;
    color: #6B46C1;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::before {
    content: '−';
    transform: rotate(180deg);
}

.faq-item summary:hover {
    background-color: #F8FAFC;
}

.faq-item[open] summary {
    background-color: #F8FAFC;
    border-bottom: 2px solid #6B46C1;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: #64748B;
    line-height: 1.8;
}

/* Thank You Page */
.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.thank-you-content {
    max-width: 600px;
    background: #FFFFFF;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.thank-you-content h1 {
    color: #1E293B;
    font-size: 36px;
    margin-bottom: 20px;
}

.thank-you-content p {
    color: #64748B;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.thank-you-content p:first-of-type {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
}

.thank-you-content a:not(.btn) {
    color: #6B46C1;
    text-decoration: underline;
}

.thank-you-content a:not(.btn):hover {
    color: #EC4899;
}

.thank-you-content .btn {
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

