/* 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: #4A5568;
    background-color: #FFF4E6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #5B2E8C 0%, #1A1F3A 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(91, 46, 140, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: bold;
    color: #FFB84D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #2DD4BF;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: #FFB84D;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: clamp(14px, 2vw, 16px);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFB84D;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FFB84D;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #5B2E8C 0%, #1A1F3A 100%);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:checked ~ .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 {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(91, 46, 140, 0.9) 0%, rgba(26, 31, 58, 0.9) 50%, rgba(45, 212, 191, 0.9) 100%),
                url('./img/JLtC2j.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    padding: 80px 40px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    color: #FFB84D;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FFB84D 0%, #F4A460 100%);
    color: #1A1F3A;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: clamp(16px, 2.5vw, 20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 184, 77, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 184, 77, 0.6);
}

/* Section Styles */
section {
    padding: 80px 40px;
}

@media (max-width: 768px) {
    section {
        padding: 40px 20px;
    }
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    color: #1A1F3A;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.section-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #4A5568;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
#about {
    background: linear-gradient(135deg, #FFF4E6 0%, #FFFFFF 100%);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(91, 46, 140, 0.15);
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #5B2E8C;
}

.about-card h3 {
    color: #1A1F3A;
    margin-bottom: 15px;
    font-size: clamp(20px, 3vw, 24px);
}

/* Services Section */
#services {
    background: linear-gradient(135deg, #C8A8E9 0%, #FFF4E6 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(91, 46, 140, 0.15);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(91, 46, 140, 0.25);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: #1A1F3A;
    font-size: clamp(22px, 3.5vw, 26px);
    margin-bottom: 15px;
}

.service-content p {
    color: #4A5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #5B2E8C 0%, #2DD4BF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: scale(1.05);
}

/* How It Works Section */
#how-it-works {
    background: #FFFFFF;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #FFF4E6 0%, #FFFFFF 100%);
    border-radius: 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFB84D 0%, #F4A460 100%);
    color: #1A1F3A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #1A1F3A;
    margin-bottom: 15px;
    font-size: clamp(18px, 2.5vw, 22px);
}

/* Benefits Section */
#benefits {
    background: linear-gradient(135deg, #2DD4BF 0%, #C8A8E9 100%);
    color: #1A1F3A;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(91, 46, 140, 0.15);
}

.benefit-item h3 {
    color: #1A1F3A;
    margin-bottom: 15px;
    font-size: clamp(20px, 3vw, 24px);
}

/* Testimonials Section */
#testimonials {
    background: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, #FFF4E6 0%, #FFFFFF 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(91, 46, 140, 0.15);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: #5B2E8C;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #4A5568;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: #1A1F3A;
}

/* FAQ Section */
#faq {
    background: linear-gradient(135deg, #FFF4E6 0%, #C8A8E9 100%);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: #FFFFFF;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(91, 46, 140, 0.1);
}

.faq-item summary {
    padding: 20px 30px;
    font-weight: bold;
    color: #1A1F3A;
    cursor: pointer;
    font-size: clamp(16px, 2.5vw, 20px);
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    font-size: 24px;
    color: #5B2E8C;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 30px 20px;
    color: #4A5568;
    line-height: 1.8;
}

/* Order Form Section */
#order-form {
    background: linear-gradient(135deg, #5B2E8C 0%, #1A1F3A 100%);
    color: #FFFFFF;
}

.form-container {
    max-width: 600px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FFB84D;
    font-weight: bold;
    font-size: clamp(14px, 2vw, 16px);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #1A1F3A;
    font-size: clamp(14px, 2vw, 16px);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFB84D;
    box-shadow: 0 0 15px rgba(255, 184, 77, 0.3);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #FFFFFF;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.checkbox-group a {
    color: #FFB84D;
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FFB84D 0%, #F4A460 100%);
    color: #1A1F3A;
    border: none;
    border-radius: 50px;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 184, 77, 0.4);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 184, 77, 0.6);
}

/* Contact Section */
#contact {
    background: #FFFFFF;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    background: linear-gradient(135deg, #FFF4E6 0%, #FFFFFF 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(91, 46, 140, 0.15);
}

.contact-info-card h3 {
    color: #1A1F3A;
    margin-bottom: 30px;
    font-size: clamp(24px, 3.5vw, 28px);
    text-align: center;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h4 {
    color: #5B2E8C;
    margin-bottom: 10px;
    font-size: clamp(18px, 2.5vw, 20px);
}

.contact-item p {
    color: #4A5568;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.8;
}

.contact-item a {
    color: #4A5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #5B2E8C;
}

.contact-map {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(91, 46, 140, 0.15);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 400px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A1F3A 0%, #5B2E8C 100%);
    color: #FFFFFF;
    padding: 60px 40px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: clamp(24px, 4vw, 32px);
    color: #FFB84D;
    margin-bottom: 20px;
}

.footer-description {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section h4 {
    color: #FFB84D;
    margin-bottom: 20px;
    font-size: clamp(18px, 2.5vw, 20px);
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFB84D;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: linear-gradient(135deg, #5B2E8C 0%, #1A1F3A 100%);
    color: #FFFFFF;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.cookie-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: clamp(14px, 2vw, 16px);
}

.cookie-content a {
    color: #FFB84D;
    text-decoration: underline;
}

.cookie-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #FFB84D 0%, #F4A460 100%);
    color: #1A1F3A;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 184, 77, 0.4);
}

/* Policy Pages */
.policy-page {
    padding: 80px 40px;
    background: #FFF4E6;
    min-height: calc(100vh - 200px);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(91, 46, 140, 0.15);
}

.policy-container h1 {
    color: #1A1F3A;
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 30px;
    text-align: center;
}

.policy-container h2 {
    color: #5B2E8C;
    font-size: clamp(22px, 4vw, 26px);
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-container p {
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: clamp(14px, 2vw, 16px);
}

.policy-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-container li {
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 40px 20px;
    }
    
    .policy-container {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Scroll animations */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding: 20px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

