/* === GLOBAL STYLES === */
:root {
    --background-light: #F9FAFB;
    --accent-purple: #7928CA;
    --accent-pink: #FF0080;
    --text-color: #1F2937;
    --white: #FFFFFF;
    --lavender-light: #F3E8FF;
    --link-hover: #FF00A6;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--background-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--accent-purple);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--link-hover);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.bg-white {
    background-color: var(--white);
}

.bg-lavender {
    background-color: var(--lavender-light);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(121, 40, 202, 0.2);
    color: var(--white);
}

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header .logo, .header .phone-number, .header .mobile-menu-toggle, .header .nav-menu {
    align-self: center;
    margin-top: 0;
    margin-bottom: 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-purple);
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.phone-number {
    font-weight: 600;
    color: var(--text-color);
}

.nav-menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu li a {
    color: var(--text-color);
    font-weight: 500;
}

.nav-menu li a:hover {
    color: var(--accent-pink);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-purple);
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* === HERO SECTION === */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(121, 40, 202, 0.05), rgba(255, 0, 128, 0.05));
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    opacity: 0.9;
}

/* === ABOUT US === */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

/* === SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px 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 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-purple);
}

.service-description {
    margin-bottom: 20px;
}

/* === WHY CHOOSE US === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: var(--white);
    border-radius: 50%;
    font-size: 30px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-purple);
}

/* === TESTIMONIALS === */
.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-purple);
}

.testimonial-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-btn {
    background-color: transparent;
    border: 2px solid var(--accent-purple);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.testimonial-btn.active {
    background-color: var(--accent-purple);
}

/* === FAQ === */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--accent-purple);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* === CONTACT FORM === */
.form-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .form-container {
        padding: 25px 20px;
        margin: 0 auto;
        width: 100%;
    }
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    transition: border-color 0.3s ease;
    background: transparent;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .form-control {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.form-label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: #888;
    pointer-events: none;
    transition: 0.3s all ease;
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    background-color: var(--white);
    padding: 0 5px;
    color: var(--accent-purple);
}

.service-options {
    margin-bottom: 25px;
}

.service-options p {
    margin-bottom: 15px;
}

.service-option {
    display: block;
    margin-bottom: 15px;
}

.service-option input {
    margin-right: 10px;
}

@media (max-width: 576px) {
    .service-options {
        margin-bottom: 20px;
    }
    
    .service-option {
        margin-bottom: 12px;
        font-size: 0.95rem;
    }
}

.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-label input {
    margin-top: 5px;
    margin-right: 10px;
    min-width: 16px;
}

.form-submit {
    width: 100%;
}

@media (max-width: 576px) {
    .checkbox-group {
        margin-bottom: 20px;
    }
    
    .checkbox-label {
        margin-bottom: 12px;
        font-size: 0.9rem;
        text-align: left;
    }
    
    .checkbox-label input {
        margin-top: 3px;
    }
}

/* === FOOTER === */
.footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
}

.footer-menu {
    list-style-type: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--accent-pink);
}

.contact-info a {
    color: white;
}

.contact-info {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.contact-info-icon {
    margin-right: 10px;
    color: var(--accent-pink);
    min-width: 20px;
    text-align: center;
}

.footer-description {
    line-height: 1.8;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* === POLICY PAGES === */
.policy-container {
    max-width: 900px;
    margin: 60px auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--accent-purple);
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-purple);
}

.policy-text p {
    margin-bottom: 15px;
}

.policy-text ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* === COOKIE POPUP === */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
}

.cookie-popup.show {
    bottom: 0;
}

@media (max-width: 768px) {
    .cookie-popup {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-popup p {
        padding-right: 0;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .cookie-popup .btn {
        width: 100%;
    }
}

.cookie-popup p {
    margin: 0;
    padding-right: 20px;
}

/* === THANK YOU PAGE === */
.thank-you-container {
    text-align: center;
    padding: 60px 40px;
    max-width: 700px;
    margin: 60px auto;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-purple);
    position: relative;
    overflow: hidden;
}

.thank-you-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--accent-purple);
    margin-bottom: 30px;
}

.thank-you-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-purple);
    position: relative;
}

.thank-you-title:after {
    content: '';
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.thank-you-message {
    font-size: 1.2rem;
    margin: 30px 0 40px;
    line-height: 1.8;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 90px);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .header .container {
        flex-wrap: nowrap;
        justify-content: space-between;
        height: auto;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .policy-container {
        padding: 30px 20px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section.bg-lavender {
        padding-left: 0;
        padding-right: 0;
    }
}
