/* 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', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2C2C54;
    background-color: #FFF8F0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #6B2C91 0%, #4A148C 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(107, 44, 145, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    }
    to {
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
    }
}

/* Mobile Menu Toggle (CSS Only) */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: #D4AF37;
    transition: all 0.3s;
    border-radius: 3px;
}

.menu-toggle:checked ~ .main-nav {
    max-height: 500px;
    opacity: 1;
}

.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);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    color: #FFF8F0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: #D4AF37;
}

.btn-nav {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #1A1A2E !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-nav::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #6B2C91 0%, #4A148C 50%, #1A1A2E 100%);
    position: relative;
    overflow: hidden;
    background-image: url('./img/ktivld.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFF8F0;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #D4AF37 0%, #FFF8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    color: #E8D5FF;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #6B2C91 0%, #7B1FA2 100%);
    color: #FFF8F0;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 6px 25px rgba(107, 44, 145, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(107, 44, 145, 0.7);
}

/* Stars Animation */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #D4AF37;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #6B2C91;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '✦';
    color: #D4AF37;
    font-size: 2rem;
    display: block;
    margin-top: 1rem;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* About Section */
.about {
    background: linear-gradient(to bottom, #E8D5FF 0%, #FFF8F0 100%);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    color: #2C2C54;
    text-align: left;
}

.about-map {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(107, 44, 145, 0.3);
    border: 3px solid #D4AF37;
}

.about-map iframe {
    width: 100%;
    height: 100%;
}

/* Benefits Section */
.benefits {
    background: #FFF8F0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, #E8D5FF 0%, #FFF8F0 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(107, 44, 145, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(107, 44, 145, 0.4);
    border-color: #D4AF37;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    color: #6B2C91;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Horoscopes Section */
.horoscopes {
    background: linear-gradient(to bottom, #FFF8F0 0%, #E8D5FF 100%);
}

.horoscopes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.horoscope-card {
    background: linear-gradient(135deg, #E8D5FF 0%, #FFF8F0 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(107, 44, 145, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 3px solid transparent;
    text-decoration: none;
    display: block;
    color: inherit;
}

.horoscope-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(107, 44, 145, 0.5);
    border-color: #D4AF37;
}

.horoscope-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.horoscope-content {
    padding: 2rem;
}

.horoscope-card h3 {
    color: #6B2C91;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.horoscope-card h3::before {
    content: '⭐';
    font-size: 1.5rem;
}

.horoscope-card p {
    color: #5A5A7A;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    background: #FFF8F0;
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, #6B2C91, #D4AF37, #6B2C91);
    z-index: 0;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1A1A2E;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.step h3 {
    color: #6B2C91;
    margin-bottom: 0.5rem;
}

/* Reviews Section */
.reviews {
    background: #FFF8F0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(107, 44, 145, 0.2);
    border-left: 4px solid #D4AF37;
}

.stars-rating {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: #5A5A7A;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.review-author {
    color: #6B2C91;
    font-weight: bold;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #4A148C 100%);
    padding: 5rem 0;
    color: #FFF8F0;
}

.form-section .section-title {
    color: #D4AF37;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #E8D5FF 0%, #FFF8F0 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(107, 44, 145, 0.5);
    border: 3px solid;
    border-image: linear-gradient(135deg, #D4AF37, #6B2C91) 1;
    animation: formGlow 3s ease-in-out infinite;
}

@keyframes formGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(107, 44, 145, 0.5);
    }
    50% {
        box-shadow: 0 10px 50px rgba(212, 175, 55, 0.6);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2C2C54;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #D4AF37;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #FFFFFF;
    color: #2C2C54;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6B2C91;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(107, 44, 145, 0.3);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #2C2C54;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-group a {
    color: #6B2C91;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #6B2C91 0%, #7B1FA2 100%);
    color: #FFF8F0;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(107, 44, 145, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 44, 145, 0.6);
}

/* FAQ Section */
.faq {
    background: #E8D5FF;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: #FFF8F0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(107, 44, 145, 0.2);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    color: #6B2C91;
    list-style: none;
    position: relative;
    transition: background 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    color: #D4AF37;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: #E8D5FF;
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: #5A5A7A;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: #1A1A2E;
    color: #FFF8F0;
}

.contact .section-title {
    color: #D4AF37;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info-box {
    background: rgba(107, 44, 145, 0.2);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #D4AF37;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-map {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(107, 44, 145, 0.3);
    border: 3px solid #D4AF37;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

.contact-item h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p,
.contact-item a {
    color: #FFF8F0;
    text-decoration: none;
    line-height: 1.8;
}

.contact-item a:hover {
    color: #D4AF37;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #2A1A3E 0%, #1A1A2E 100%);
    color: #FFF8F0;
    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: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #FFF8F0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #D4AF37;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #E8D5FF;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #6B2C91 0%, #4A148C 100%);
    color: #FFF8F0;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(107, 44, 145, 0.5);
    z-index: 10000;
    display: none;
    border-top: 3px solid #D4AF37;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #D4AF37;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-accept {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #1A1A2E;
}

.btn-reject {
    background: transparent;
    color: #FFF8F0;
    border: 2px solid #FFF8F0;
}

.btn-cookie:hover {
    transform: scale(1.05);
}

/* Policy Pages */
.policy-page {
    min-height: 100vh;
    background: linear-gradient(to bottom, #E8D5FF 0%, #FFF8F0 100%);
    padding: 3rem 0;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(107, 44, 145, 0.3);
    border: 3px solid #D4AF37;
}

.policy-container h1 {
    color: #6B2C91;
    margin-bottom: 2rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
}

.policy-container h2 {
    color: #6B2C91;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-container p,
.policy-container li {
    color: #2C2C54;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-container ul,
.policy-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-container a {
    color: #6B2C91;
    text-decoration: underline;
}

.policy-container a:hover {
    color: #D4AF37;
}

/* Thank You Page */
.thank-you {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6B2C91 0%, #4A148C 100%);
    text-align: center;
    color: #FFF8F0;
    padding: 2rem;
}

.thank-you-content {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 25px;
    border: 3px solid #D4AF37;
    backdrop-filter: blur(10px);
}

.thank-you-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: #D4AF37;
}

.thank-you-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-thank-you {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    color: #1A1A2E;
    padding: 1.2rem 3rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-thank-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-thank-you:hover::before {
    left: 100%;
}

.btn-thank-you:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.8);
    color: #1A1A2E;
}

.btn-thank-you:active {
    transform: translateY(-2px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #6B2C91 0%, #4A148C 100%);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s, opacity 0.3s;
        opacity: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .steps::before {
        display: none;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .policy-container {
        padding: 2rem 1.5rem;
    }

    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-map,
    .contact-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }

    .hero {
        min-height: 80vh;
    }

    .benefits-grid,
    .horoscopes-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

