/* ============================================
   RESET & 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: Arial, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   COLOR PALETTE
   ============================================ */
:root {
    --primary-purple: #6B2C91;
    --gold: #D4AF37;
    --dark-space: #1A1B3A;
    --light-lavender: #E8D5F2;
    --white: #FFFFFF;
    --text-black: #2C2C2C;
    --neon-pink: #FF6B9D;
    --star-blue: #4A90E2;
    --deep-purple: #4A148C;
    --cosmos-gradient: linear-gradient(135deg, #6B2C91 0%, #1A1B3A 50%, #2D1B4E 100%);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(255, 107, 157, 0.5);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background: var(--cosmos-gradient);
    padding: 15px 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: 2rem;
    font-weight: bold;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    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: var(--gold);
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--gold);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-space);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .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);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    height: 100vh;
    background: url('./img/whQfEi.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cosmos-gradient);
    opacity: 0.85;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold-gradient);
    color: var(--dark-space);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-section {
        height: 80vh;
    }
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-purple);
    position: relative;
}

.section-title-white {
    color: var(--white);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--light-lavender);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    background: var(--white);
    padding: 40px;
    border: 3px solid var(--primary-purple);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--light-lavender);
    padding: 30px;
    border: 3px solid var(--primary-purple);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before,
.service-card::after {
    content: '★';
    position: absolute;
    color: var(--gold);
    font-size: 1.5rem;
}

.service-card::before {
    top: 10px;
    left: 10px;
}

.service-card::after {
    bottom: 10px;
    right: 10px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(107, 44, 145, 0.3);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card .price {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: bold;
    margin: 15px 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    background: var(--cosmos-gradient);
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--gold);
    flex-shrink: 0;
}

.benefit-item h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    background: var(--white);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-space);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary-purple);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.step-item::after {
    content: '↓';
    position: absolute;
    bottom: -30px;
    left: 40px;
    font-size: 2rem;
    color: var(--gold);
}

.step-item:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-item::after {
        display: none;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--light-lavender);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--primary-purple);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-black);
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-purple);
}

@media (max-width: 1024px) {
    .testimonial-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
    background: var(--white);
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border: 5px solid var(--primary-purple);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container::before,
.form-container::after {
    content: '★';
    position: absolute;
    font-size: 2rem;
    color: var(--gold);
}

.form-container::before {
    top: -15px;
    left: -15px;
}

.form-container::after {
    bottom: -15px;
    right: -15px;
}

.form-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-purple);
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--primary-purple);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.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 {
    font-weight: normal;
    color: var(--text-black);
}

.checkbox-group a {
    color: var(--primary-purple);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--gold-gradient);
    color: var(--dark-space);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--dark-space);
    color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid var(--primary-purple);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    background: rgba(107, 44, 145, 0.3);
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    list-style: none;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: '+ ';
    margin-right: 10px;
    font-size: 1.5rem;
}

.faq-item[open] summary::before {
    content: '− ';
}

.faq-item summary:hover {
    background: rgba(107, 44, 145, 0.5);
}

.faq-item p {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--cosmos-gradient);
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid var(--gold);
    border-radius: 10px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .contact-icon {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-map {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 300px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--dark-space);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link {
    color: var(--white) !important;
}

.footer-contact-link:hover {
    color: var(--gold) !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COOKIE POPUP
   ============================================ */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 27, 58, 0.95);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    display: block;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--white);
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--gold-gradient);
    color: var(--dark-space);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: var(--gold);
    text-decoration: underline;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-page {
    padding: 80px 20px;
    min-height: calc(100vh - 200px);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border: 3px solid var(--primary-purple);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-container::before,
.policy-container::after {
    content: '★';
    position: absolute;
    font-size: 2rem;
    color: var(--gold);
}

.policy-container::before {
    top: -15px;
    left: -15px;
}

.policy-container::after {
    bottom: -15px;
    right: -15px;
}

.policy-title {
    font-size: 3rem;
    margin-bottom: 30px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.policy-content {
    line-height: 1.8;
    color: var(--text-black);
}

.policy-content h2 {
    color: var(--primary-purple);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.policy-content h3 {
    color: var(--primary-purple);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-lavender);
}

.policy-contact h3 {
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.policy-contact p {
    margin-bottom: 8px;
}

.policy-contact a {
    color: var(--primary-purple);
    text-decoration: none;
}

.policy-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 20px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-container {
    max-width: 600px;
    margin: 100px auto;
    text-align: center;
    background: var(--white);
    padding: 50px;
    border: 3px solid var(--primary-purple);
    border-radius: 15px;
    position: relative;
}

.thank-you-container::before,
.thank-you-container::after {
    content: '★';
    position: absolute;
    font-size: 2rem;
    color: var(--gold);
}

.thank-you-container::before {
    top: -15px;
    left: -15px;
}

.thank-you-container::after {
    bottom: -15px;
    right: -15px;
}

.thank-you-title {
    font-size: 2.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--text-black);
    margin-bottom: 30px;
    line-height: 1.8;
}

