/* 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: #0A0A0A;
    background-color: #FFFFFF;
}

/* Color Palette */
:root {
    --purple-main: #6B2C91;
    --gold-accent: #D4AF37;
    --dark-blue: #1A1F3A;
    --lavender-light: #E8D5F2;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --purple-pink: #B886D8;
    --dark-gold: #B8941F;
    --light-gray: #F5F3F7;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
    background: linear-gradient(135deg, #D4AF37, #B886D8);
    -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);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    order: 2;
    z-index: 1001;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: var(--gold-accent);
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.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-accent);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--gold-accent);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('./img/JOR87L.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    padding: 2rem;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 44, 145, 0.8) 0%, rgba(212, 175, 55, 0.6) 50%, rgba(26, 31, 58, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: var(--gold-accent);
    display: block;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--white);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold-accent);
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: var(--dark-gold);
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--purple-main), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title[style*="color: var(--white)"],
.section-title[style*="color:var(--white)"],
#why-us .section-title,
#testimonials .section-title,
#faq .section-title {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--white) !important;
}

/* About Section */
#about-section {
    background: var(--lavender-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease-out;
}

.about-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--purple-main);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.about-image {
    animation: fadeInRight 1s ease-out;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(107, 44, 145, 0.3);
}

/* Services Section */
#services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--purple-main);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 44, 145, 0.3);
    border-color: var(--gold-accent);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--purple-main);
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-service {
    padding: 0.8rem 2rem;
    background: var(--gold-accent);
    color: var(--dark-blue);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-service:hover {
    background: var(--dark-gold);
    transform: scale(1.05);
}

/* Why Us Section */
#why-us {
    background: var(--dark-blue);
    color: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.why-item h3 {
    color: var(--gold-accent);
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    margin-bottom: 1rem;
}

.why-item p {
    color: var(--lavender-light);
    line-height: 1.8;
}

/* How It Works Section */
#how-it-works {
    background: var(--lavender-light);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple-main), var(--gold-accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h3 {
    color: var(--purple-main);
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--dark-blue);
    line-height: 1.8;
}

/* Testimonials Section */
#testimonials {
    background: var(--purple-main);
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    color: var(--dark-blue);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--gold-accent);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--gold-accent);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: var(--purple-main);
    text-align: right;
}

/* FAQ Section */
#faq {
    background: var(--dark-blue);
    color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    color: var(--dark-blue);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.faq-item summary {
    padding: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    color: var(--purple-main);
    transition: all 0.3s ease;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--gold-accent);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item[open] summary {
    border-bottom: 2px solid var(--gold-accent);
}

.faq-item p {
    padding: 1.5rem;
    line-height: 1.8;
    color: var(--dark-blue);
}

/* Order Form Section */
#order-form {
    background: var(--light-gray);
    padding: 5rem 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--purple-main);
    position: relative;
    box-shadow: 0 10px 40px rgba(107, 44, 145, 0.2);
}

.form-container::before,
.form-container::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--gold-accent);
}

.form-container::before {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
}

.form-container::after {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
}

.form-title {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    background: linear-gradient(135deg, var(--purple-main), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--purple-main);
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--lavender-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--black);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple-main);
    box-shadow: 0 0 10px rgba(107, 44, 145, 0.2);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: normal;
    color: var(--dark-blue);
    line-height: 1.6;
}

.checkbox-group a {
    color: var(--purple-main);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: var(--gold-accent);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--gold-accent);
    color: var(--dark-blue);
    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(212, 175, 55, 0.4);
}

.btn-submit:hover {
    background: var(--dark-gold);
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Contact Section */
#contact {
    background: var(--lavender-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(107, 44, 145, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 44, 145, 0.2);
    border: 2px solid var(--purple-main);
}

.contact-info-box h3 {
    color: var(--purple-main);
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--lavender-light);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item h4 {
    color: var(--purple-main);
    margin-bottom: 0.8rem;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.contact-info-item p {
    color: var(--dark-blue);
    line-height: 1.8;
    margin: 0;
}

.contact-info-item a {
    color: var(--purple-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--gold-accent);
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background: var(--dark-blue);
    color: var(--gold-accent);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold-accent);
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
}

.footer-section p {
    color: var(--lavender-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--lavender-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-accent);
}

.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: var(--lavender-light);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: var(--dark-blue);
    border-top: 3px solid var(--gold-accent);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--white);
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--gold-accent);
    text-decoration: underline;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    background: var(--gold-accent);
    color: var(--dark-blue);
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: var(--dark-gold);
    transform: scale(1.05);
}

/* Policy Pages */
.policy-page {
    padding: 8rem 2rem 5rem;
    min-height: 100vh;
    background: var(--lavender-light);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid var(--purple-main);
    box-shadow: 0 10px 40px rgba(107, 44, 145, 0.2);
}

.policy-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--gold-accent);
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--purple-main), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-content {
    color: var(--dark-blue);
    line-height: 1.8;
}

.policy-content h2 {
    color: var(--purple-main);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

.policy-content h3 {
    color: var(--purple-main);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background: var(--lavender-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 4px solid var(--purple-main);
}

.contact-details p {
    margin-bottom: 0.8rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details strong {
    color: var(--purple-main);
}

.contact-details a {
    color: var(--purple-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--gold-accent);
    text-decoration: underline;
}

/* Thank You Page */
.thank-you-page {
    padding: 8rem 2rem 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender-light);
}

.thank-you-container {
    max-width: 600px;
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--purple-main);
    box-shadow: 0 10px 40px rgba(107, 44, 145, 0.2);
}

.thank-you-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--purple-main);
    margin-bottom: 1.5rem;
}

.thank-you-message {
    color: var(--dark-blue);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Simple Page (about, blog, tips) */
.simple-page {
    padding: 8rem 2rem 5rem;
    min-height: 100vh;
    background: var(--lavender-light);
}

.simple-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid var(--purple-main);
    box-shadow: 0 10px 40px rgba(107, 44, 145, 0.2);
}

.simple-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--purple-main);
    margin-bottom: 2rem;
    text-align: center;
}

.simple-content {
    color: var(--dark-blue);
    line-height: 1.8;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    .menu-icon {
        display: flex;
        z-index: 1001;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-blue);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .menu-toggle:checked ~ .main-nav {
        transform: translateX(0);
    }
    
    .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);
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .main-nav a:last-child {
        border-bottom: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 1rem;
    }
    
    .form-container,
    .policy-container,
    .simple-container {
        padding: 2rem 1.5rem;
    }
}

