/* 
Main Stylesheet for domain
Color Palette:
- Primary: Electric Violet #8F00FF
- Secondary: Soft Mint #B9FBC0
- Accent: Coral Red #FF595E
- Background: Gradient from Charcoal #2D2A32 to Lavender Mist #F1EAFF
- Text: Dark Gray #2B2D42
*/

/* ---------- Reset & Base Styles ---------- */
:root {
    --primary: #8F00FF;
    --secondary: #B9FBC0;
    --accent: #FF595E;
    --dark-bg: #2D2A32;
    --light-bg: #F1EAFF;
    --text: #2B2D42;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    background-attachment: fixed;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    text-align: center;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
}

h3 {
    font-size: 1.8rem;
    color: var(--primary);
}

p {
    margin-bottom: 20px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ---------- Header Styles ---------- */
.site-header {
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: lowercase;
    position: relative;
}


.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    color: var(--text);
    font-weight: 600;
}

.main-nav ul li a:hover {
    color: var(--primary);
}

.header-contact {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    text-decoration: none;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-only {
    display: none;
}

/* ---------- Hero Section ---------- */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('../img/pOHXHI.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 60px;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 42, 50, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* ---------- About Section ---------- */
.about {
    background-color: white;
    padding: 100px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature {
    flex: 1 0 48%;
    margin-bottom: 20px;
    padding-right: 15px;
}

.feature h4 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature h4:before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: bold;
}

/* ---------- Services Section ---------- */
.services {
    background-color: #f7f7f7;
}

.services-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1 0 300px;
    max-width: 350px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    margin-bottom: 15px;
}

/* ---------- Benefits Section ---------- */
.benefits {
    background-color: white;
}

.benefits-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    flex: 1 0 200px;
    max-width: 300px;
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
}

/* ---------- Testimonials Section ---------- */
.testimonials {
    background-color: #f7f7f7;
}

.testimonials-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    flex: 1 0 300px;
    max-width: 350px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 4rem;
    color: rgba(143, 0, 255, 0.1);
    line-height: 1;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-name {
    font-weight: bold;
}

.client-position {
    font-size: 0.9rem;
    color: #777;
}

/* ---------- Contact Form Section ---------- */
.contact {
    background-color: white;
}

.form-container {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary) 100%);
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.form-container:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--secondary);
    opacity: 0.2;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.form-container h3 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.checkbox-group a {
    color: var(--secondary);
}

.form-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
}

/* ---------- FAQ Section ---------- */
.faq {
    background-color: #f7f7f7;
}

.faq-content {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-answer {
    background: rgba(255, 255, 255, 0.9);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* ---------- Footer ---------- */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1 0 250px;
}

.footer-logo .logo {
    color: white;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

footer h3 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: white;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- Cookie Popup ---------- */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: white;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

#cookie-accept {
    background: var(--secondary);
    color: var(--dark-bg);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

#cookie-accept:hover {
    background: white;
}

/* ---------- Policy Pages ---------- */
.policy-container {
    max-width: 900px;
    margin: 120px auto 50px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-container h1 {
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.policy-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
}

.policy-container p {
    margin-bottom: 20px;
}

.policy-container ul,
.policy-container ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.policy-container li {
    margin-bottom: 10px;
}

/* ---------- Thank You Page ---------- */
.thank-you {
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 120px auto 50px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you h1 {
    color: var(--primary);
    margin-bottom: 30px;
}

.thank-you p {
    margin-bottom: 30px;
}

/* ---------- Media Queries ---------- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .feature {
        flex-basis: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-only {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: white;
        z-index: 1010;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 50px 0;
        height: 100%;
    }
    
    .main-nav ul li {
        margin: 0;
        padding: 15px 30px;
    }
    
    .close-menu {
        margin-top: auto;
        color: var(--accent) !important;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .service-card,
    .testimonial-card {
        flex-basis: 100%;
    }
    
    .benefit-item {
        flex-basis: 100%;
        max-width: none;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .policy-container {
        padding: 25px;
        margin-top: 100px;
    }
}
