/* 
 * Main Stylesheet for domain
 * Author: Claude
 */

/* 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: 'Montserrat', sans-serif;
    background-color: #2E1A47; /* Dark purple background */
    color: #F5F5F5; /* Soft white text */
    line-height: 1.6;
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
option {

    background-color: #433159;
    color: white;
}

a {
    color: #A7FF83; /* Neon lime */
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    color: #A7FF83; /* Neon lime */
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #A7FF83; /* Neon lime */
}

/* Buttons */
.btn, .btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn {
    background: linear-gradient(to right, #A7FF83, #2E1A47);
    color: #F5F5F5; /* Soft white */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #A7FF83; /* Neon lime */
    color: #A7FF83; /* Neon lime */
}

.btn:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-full {
    width: 100%;
}

/* Header & Navigation */
header {
    background-color: rgba(46, 26, 71, 0.9); /* Dark purple with opacity */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #A7FF83; /* Neon lime */
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
align-items: center;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: #F5F5F5; /* Soft white */
    font-weight: 500;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #A7FF83; /* Neon lime */
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #A7FF83; /* Neon lime */
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: url('./img/ZhEpt.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 26, 71, 0.7); /* Dark purple overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #2E1A47; /* Dark purple */
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-stats {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-item {
    background-color: #3a2255; /* Slightly lighter purple */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #A7FF83; /* Neon lime */
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: #3a2255; /* Slightly lighter purple */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #2E1A47; /* Dark purple */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: #A7FF83; /* Neon lime */
    margin-bottom: 10px;
}

.service-content p {
    margin-bottom: 20px;
}

/* Advantages Section */
.advantages-section {
    padding: 5rem 0;
    background-color: #2E1A47; /* Dark purple */
}

.advantages-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    background-color: #3a2255; /* Slightly lighter purple */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
}

.advantage-item h3 {
    color: #A7FF83; /* Neon lime */
    margin-bottom: 10px;
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 0;
    background-color: #3a2255; /* Slightly lighter purple */
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #2E1A47; /* Dark purple */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #C0C0C0; /* Silver */
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #F5F5F5; /* Soft white */
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #A7FF83; /* Neon lime */
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: #2E1A47; /* Dark purple */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #3a2255; /* Slightly lighter purple */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 0.8rem;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #3a2255; /* Slightly lighter purple */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #2E1A47; /* Dark purple */
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.faq-toggle {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.faq-question {
    display: block;
    position: relative;
    padding: 15px 50px 15px 20px;
    font-weight: 600;
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #A7FF83; /* Neon lime */
    transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
}

/* Footer */
footer {
    padding: 4rem 0 1rem;
    background-color: #2E1A47; /* Dark purple */
    border-top: 1px solid rgba(192, 192, 192, 0.1); /* Silver with opacity */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.footer-about,
.footer-contact,
.footer-links {
    margin-bottom: 20px;
}

.footer-about h3,
.footer-contact h3,
.footer-links h3 {
    color: #A7FF83; /* Neon lime */
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(192, 192, 192, 0.1); /* Silver with opacity */
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    padding: 20px;
    background-color: #3a2255; /* Slightly lighter purple */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
}

.cookie-popup.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.cookie-content h3 {
    color: #A7FF83; /* Neon lime */
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.cookie-more {
    color: #C0C0C0; /* Silver */
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    h3 {
        font-size: 1.3rem;
    }
    
    .hero-section {
        height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    /* Mobile Menu */
    .menu-icon {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #2E1A47; /* Dark purple */
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        z-index: 999;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    
    .main-nav ul li {
        margin: 0;
        text-align: center;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 15px;
    }
    
    .menu-toggle:checked ~ .main-nav {
        height: calc(100vh - 80px);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .service-card,
    .advantage-item,
    .testimonial-card {
        padding: 15px;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .cookie-popup {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 15px;
    }
}

/* Additional Pages Styles */
.page-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 30px;
    background-color: #3a2255; /* Slightly lighter purple */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-header {
    margin-bottom: 2rem;
    text-align: center;
}

.page-content h2 {
    color: #A7FF83; /* Neon lime */
    margin: 1.5rem 0 1rem;
}

.page-content ul,
.page-content ol {
    margin-left: 20px;
    margin-bottom: 1rem;
}

/* Thank You Page */
.thank-you-container {
    text-align: center;
    margin: 5rem auto;
    padding: 40px;
    background-color: #3a2255; /* Slightly lighter purple */
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: #A7FF83; /* Neon lime */
}

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you-title {
    color: #A7FF83; /* Neon lime */
    margin-bottom: 1rem;
}

.back-button {
    margin-top: 20px;
}
