/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1B1B1B;
    background-color: #FFFFFF;
}

/* Color Variables */
:root {
    --deep-indigo: #3C1A5B;
    --lavender-purple: #C3AED6;
    --sun-gold: #FFD700;
    --text-dark: #1B1B1B;
    --bg-white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #3C1A5B 0%, #C3AED6 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

/* Header Styles */
.header {
    background: var(--gradient-primary);
    box-shadow: 0 2px 20px rgba(60, 26, 91, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-link {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--sun-gold);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sun-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
}

.nav-toggle-input {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle-label span {
    width: 25px;
    height: 3px;
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.nav-menu-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-link-mobile {
    display: block;
    color: var(--bg-white);
    text-decoration: none;
    padding: 10px 0;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link-mobile:hover {
    color: var(--sun-gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(60, 26, 91, 0.7), rgba(195, 174, 214, 0.7)), url('./img/tVORX2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    padding: 80px 20px 20px;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

/* Section Styles */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-indigo);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Description */
.service-description {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e4f7 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(60, 26, 91, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--lavender-purple);
    box-shadow: 0 20px 40px rgba(60, 26, 91, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--deep-indigo);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Advantages Section */
.advantages {
    background: var(--bg-white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    border-radius: 15px;
    border: 2px solid var(--lavender-purple);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(195, 174, 214, 0.2);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.advantage-item h3 {
    color: var(--deep-indigo);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Horoscope Types */
.horoscope-types {
    background: linear-gradient(135deg, #3C1A5B 0%, #C3AED6 100%);
    color: var(--bg-white);
}

.horoscope-types .section-title {
    color: var(--bg-white);
}

.horoscope-types .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.type-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.type-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.type-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.type-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sun-gold);
    margin: 20px 0;
}

/* Order Form */
.order-form {
    background: var(--bg-white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e4f7 100%);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(60, 26, 91, 0.1);
    border: 3px solid var(--lavender-purple);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--deep-indigo);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--lavender-purple);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--sun-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-group 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;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.submit-btn {
    width: 100%;
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 18px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e4f7 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(60, 26, 91, 0.1);
    border-left: 5px solid var(--sun-gold);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(60, 26, 91, 0.15);
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    color: var(--deep-indigo);
}

.review-rating {
    color: var(--sun-gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq {
    background: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e4f7 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--lavender-purple);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-indigo);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(195, 174, 214, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sun-gold);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #3C1A5B 0%, #C3AED6 100%);
    color: var(--bg-white);
}

.contact .section-title {
    color: var(--bg-white);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
    align-items: start;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--sun-gold);
}

.contact-map {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.map-container {
    margin-bottom: 20px;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.2);
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: var(--deep-indigo);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--sun-gold);
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--bg-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--sun-gold);
}

.footer-contact a {
    color: var(--sun-gold);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    max-width: 500px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 15px;
    color: var(--sun-gold);
}

.cookie-text p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--sun-gold);
    color: var(--text-dark);
}

.cookie-decline {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-toggle-label {
        display: flex;
    }
    
    .nav-toggle-input:checked ~ .nav-menu-mobile {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .section {
        padding: 40px 15px;
    }
    
    .service-grid,
    .advantages-grid,
    .types-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Content Box Styles for Thank You and Policy Pages */
.content-box {
    background: var(--bg-white);
    border: 3px solid var(--lavender-purple);
    border-radius: 20px;
    padding: 50px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 15px 35px rgba(60, 26, 91, 0.1);
    position: relative;
}

.content-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-gold);
    border-radius: 20px;
    z-index: -1;
}

.content-box h1 {
    color: var(--deep-indigo);
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.content-box h2 {
    color: var(--deep-indigo);
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.content-box h3 {
    color: var(--deep-indigo);
    margin: 25px 0 10px;
    font-size: 1.4rem;
}

.content-box p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-box ul,
.content-box ol {
    margin: 15px 0 15px 30px;
}

.content-box li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-box a {
    color: var(--deep-indigo);
    text-decoration: none;
    border-bottom: 2px solid var(--lavender-purple);
    transition: all 0.3s ease;
}

.content-box a:hover {
    color: var(--sun-gold);
    border-bottom-color: var(--sun-gold);
}
