/* Base Styles */
:root {
    --color-background: #0E1015;
    --color-accent-yellow: #FEC601;
    --color-accent-mint: #01D2A2;
    --color-accent-pink: #F6416C;
    --color-text-white: #FFFFFF;
    --color-text-gray: #C5C6C7;
    --border-radius-2xl: 16px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--color-background);
    color: var(--color-text-white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
}

main {
    flex: 1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

a {
    color: var(--color-accent-mint);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent-yellow);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-mint) 0%, var(--color-accent-yellow) 100%);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: linear-gradient(90deg, var(--color-accent-mint) 0%, var(--color-accent-yellow) 100%);
    color: var(--color-background);
    border: none;
    border-radius: var(--border-radius-2xl);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    height: 40px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--color-background);
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-accent-mint) 0%, var(--color-accent-yellow) 100%);
}

.btn-secondary {
    background: linear-gradient(90deg, var(--color-accent-yellow) 0%, var(--color-accent-pink) 100%);
}

.btn-accent {
    background: linear-gradient(90deg, var(--color-accent-pink) 0%, var(--color-accent-mint) 100%);
}

/* Header Styles */
.site-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(14, 16, 21, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo a {
    color: var(--color-text-white);
    font-weight: bold;
    font-size: 32px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    height: 100%;
}

.desktop-nav ul li {
    margin-left: 30px;
    height: 100%;
    display: flex;
    align-items: center;
}

.desktop-nav ul li a {
    color: var(--color-text-white);
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a.active {
    color: var(--color-accent-yellow);
}

/* Mobile Navigation */
.mobile-nav-container {
    display: none;
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
}

.menu-icon, 
.menu-icon::before, 
.menu-icon::after {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--color-text-white);
    transition: var(--transition);
}

.menu-icon {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon::before {
    content: '';
    top: -8px;
}

.menu-icon::after {
    content: '';
    bottom: -8px;
}

.menu-toggle:checked ~ .menu-button .menu-icon {
    background-color: transparent;
}

.menu-toggle:checked ~ .menu-button .menu-icon::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle:checked ~ .menu-button .menu-icon::after {
    transform: rotate(-45deg) translate(7px, -8px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-background);
    padding: 80px 20px 30px;
    transition: right 0.3s ease;
    z-index: 100;
    overflow-y: auto;
}

.menu-toggle:checked ~ .mobile-nav {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    color: var(--color-text-white);
    font-size: 18px;
    display: block;
    padding: 10px 0;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: var(--color-accent-yellow);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 350px;
    width: calc(100% - 40px);
    background-color: var(--color-background);
    border: 1px solid var(--color-accent-mint);
    border-radius: var(--border-radius-2xl);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(14, 16, 21, 0.9) 0%, rgba(14, 16, 21, 0.7) 100%), url('../img/3VdlBz.jpg') no-repeat center/cover;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--color-text-gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about-section {
    background-color: rgba(1, 210, 162, 0.05);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
}

/* Why Choose Us */
.why-us-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-us-card {
    background: linear-gradient(145deg, rgba(14, 16, 21, 0.8), rgba(14, 16, 21, 0.4));
    padding: 30px;
    border-radius: var(--border-radius-2xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--color-accent-mint) 0%, var(--color-accent-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Section */
.services-section {
    background-color: rgba(246, 65, 108, 0.05);
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(14, 16, 21, 0.7);
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
}

/* Benefits Section */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius-2xl);
    background: linear-gradient(145deg, rgba(14, 16, 21, 0.6), rgba(14, 16, 21, 0.3));
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-accent-yellow);
}

/* Testimonials */
.testimonials-section {
    background-color: rgba(254, 198, 1, 0.05);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: rgba(14, 16, 21, 0.7);
    padding: 30px;
    border-radius: var(--border-radius-2xl);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -15px;
    left: 20px;
    color: var(--color-accent-yellow);
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--color-accent-mint);
}

.author-info p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--color-text-gray);
}

/* FAQ Section */
.faq-section {
    background-color: rgba(1, 210, 162, 0.05);
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq details {
    margin-bottom: 20px;
    background-color: rgba(14, 16, 21, 0.7);
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
}

.faq details summary {
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
}

.faq details summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-accent-mint);
}

.faq details[open] summary::after {
    content: '-';
}

.faq details .faq-content {
    padding: 0 20px 20px;
}

/* Contact Form */
.contact-section {
    background-color: rgba(246, 65, 108, 0.05);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(14, 16, 21, 0.7);
    border-radius: var(--border-radius-2xl);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--color-text-white);
    border: none;
    border-radius: var(--border-radius-2xl);
    color: var(--color-background);
}

select.form-control {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%230E1015" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: rgba(14, 16, 21, 0.7);
    border: 1px solid var(--color-accent-mint);
    border-radius: var(--border-radius-2xl);
}

.policy-container h1 {
    margin-bottom: 30px;
    text-align: center;
}

.policy-container h2 {
    margin-top: 40px;
}

.policy-container p, 
.policy-container ul, 
.policy-container ol {
    margin-bottom: 20px;
}

.policy-container ul, 
.policy-container ol {
    padding-left: 20px;
}

/* Thanks Page */
.thanks-buttons {
    text-align: center;
    margin-top: 30px;
}

/* Footer */
.site-footer {
    background-color: rgba(1, 210, 162, 0.05);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3,
.footer-contact h3,
.footer-links h3,
.footer-social h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-about h3::after,
.footer-contact h3::after,
.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-mint) 0%, var(--color-accent-yellow) 100%);
}

.footer-social ul {
    list-style: none;
}

.footer-social ul li {
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.social-icon:hover {
    background-color: var(--color-accent-mint);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-container {
        display: block;
    }
    
    .menu-button {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
        box-sizing: border-box;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-cards,
    .why-us-cards,
    .benefits,
    .testimonials {
        width: 100%;
        overflow-x: hidden;
    }
    
    .service-card,
    .why-us-card,
    .benefit,
    .testimonial {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
        width: 100%;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .policy-container {
        padding: 30px 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    section {
        padding: 50px 0;
        width: 100%;
        overflow: hidden;
    }
}
