/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

section[id] {
    scroll-margin-top: 40px;
}

/* Global Image Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #0F172A;
    background-color: #F5F1E8;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.logo a {
    font-size: 2rem;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

/* Navigation */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: #FF6B6B;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(107, 70, 193, 0.7), rgba(139, 92, 246, 0.7)), url('./img/3Tp8yw.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    padding: 4rem 2rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #FF6B6B;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: fadeInUp 1.4s ease;
}

.btn-primary:hover {
    background-color: #FF5252;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* Section Styles */
section {
    padding: 4rem 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #6B46C1;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6B46C1, #FF6B6B);
    margin: 1rem auto;
    border-radius: 2px;
}

/* About Section */
.about-section {
    background-color: #FFFFFF;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #0F172A;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #F5F1E8 0%, #FFFFFF 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #6B46C1;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.benefit-card p {
    color: #0F172A;
    line-height: 1.6;
    font-weight: 500;
}

/* Horoscopes Section */
.horoscopes-section {
    background-color: #FFFFFF;
}

.horoscopes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.horoscope-card {
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
    padding: 0;
    border-radius: 20px;
    color: #FFFFFF;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.3);
    overflow: hidden;
}

.horoscope-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.5);
}

.horoscope-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.horoscope-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.horoscope-card:hover .horoscope-image img {
    transform: scale(1.1);
}

.horoscope-card h3 {
    font-size: 2rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.horoscope-card p {
    margin: 0 1.5rem 1.5rem;
    line-height: 1.8;
    color: #FFFFFF;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.horoscope-price {
    font-size: 2rem;
    font-weight: bold;
    color: #FF6B6B;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #F5F1E8 0%, #FFFFFF 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FF6B6B;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #0F172A;
    line-height: 1.8;
    font-weight: 500;
}

.testimonial-author {
    font-weight: 700;
    color: #6B46C1;
    font-size: 1.1rem;
}

/* Form Section */
.form-section {
    background-color: #FFFFFF;
    padding: 4rem 0;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #F5F1E8 0%, #FFFFFF 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0F172A;
    font-weight: 700;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #FFFFFF;
    color: #0F172A;
    font-weight: 500;
}

.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: #0F172A;
    background-color: #FFFFFF;
    font-weight: 500;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #0F172A;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 600;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-group a {
    color: #6B46C1;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.6);
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
    color: #FFFFFF;
    text-align: center;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.info-content h2 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.info-content p {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #F5F1E8 0%, #FFFFFF 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.process-step h3 {
    color: #6B46C1;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step p {
    color: #0F172A;
    line-height: 1.8;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background-color: #FFFFFF;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    padding: 2rem;
    background: linear-gradient(135deg, #F5F1E8 0%, #FFFFFF 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.1);
}

.contact-info h3 {
    color: #6B46C1;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #0F172A;
    font-weight: 600;
    line-height: 1.8;
}

.contact-info a {
    color: #6B46C1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #FF6B6B;
    text-decoration: underline;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.1);
    height: 400px;
    min-height: 400px;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FF6B6B;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p,
.footer-section ul {
    color: #E2E8F0;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #E2E8F0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF6B6B;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94A3B8;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    color: #FFFFFF;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.5s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
    color: #E2E8F0;
    font-weight: 500;
}

.cookie-text a {
    color: #FF6B6B;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #6B46C1;
    color: #FFFFFF;
}

.cookie-accept:hover {
    background-color: #8B5CF6;
}

.cookie-decline {
    background-color: transparent;
    color: #E2E8F0;
    border: 2px solid #E2E8F0;
}

.cookie-decline:hover {
    background-color: #E2E8F0;
    color: #1E293B;
}

/* Thank You Page */
.thank-you-page {
    background-color: #FFFFFF;
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-container {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #F5F1E8 0%, #FFFFFF 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 2px solid #6B46C1;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.2);
    text-align: center;
}

.thank-you-container h1 {
    color: #6B46C1;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.thank-you-container p {
    color: #0F172A;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
    font-size: 1.1rem;
}

.thank-you-container ul {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.thank-you-container li {
    margin-bottom: 1rem;
    color: #0F172A;
    font-weight: 500;
    font-size: 1.1rem;
}

.thank-you-container a.thank-you-btn {
    color: #FFFFFF !important;
}

.thank-you-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
    color: #FFFFFF !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thank-you-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.6);
    background: linear-gradient(135deg, #8B5CF6 0%, #6B46C1 100%);
    color: #FFFFFF !important;
    text-decoration: none;
}

/* Policy Pages */
.policy-page {
    background-color: #FFFFFF;
    padding: 4rem 0;
    min-height: 70vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #F5F1E8;
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #6B46C1;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.1);
}

.policy-container h1 {
    color: #6B46C1;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.policy-container h2 {
    color: #6B46C1;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.policy-container p {
    color: #0F172A;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-weight: 500;
}

.policy-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #0F172A;
}

.policy-container li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.policy-container a {
    color: #6B46C1;
    text-decoration: underline;
}

.policy-container .btn-primary {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    .menu-icon {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        display: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .menu-toggle:checked ~ .nav-menu {
        display: flex;
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .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, -6px);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid,
    .horoscopes-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .order-form {
        padding: 2rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map {
        height: 300px;
        min-height: 300px;
    }

    .thank-you-container {
        padding: 2.5rem 1.5rem;
    }

    .thank-you-container h1 {
        font-size: 2rem;
    }

    .thank-you-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }

    .hero-section {
        min-height: 400px;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    section {
        padding: 2rem 0;
    }
}

