/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00c4a7;
    --secondary-color: #ffffff;
    --text-color: #222831;
    --accent-color: #b287ff;
    --shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

html,body{overflow-x:hidden;width:100%;}
@media (max-width:768px){.container{max-width:100vw;box-sizing:border-box;}}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.section {
    padding: 80px 0;
}

.section__title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn--primary {
    background-color: var(--accent-color);
    color: white;
}

.btn--primary:hover {
    background-color: #9c6eff;
    transform: translateY(-2px);
}

.btn--glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(0, 196, 167, 0.95);
}

.header.scrolled .nav__link,
.header.scrolled .nav__logo-text {
    color: white;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__logo-img {
    width: 40px;
    height: 40px;
}

.nav__logo-text {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero__slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 196, 167, 0.8) 0%, rgba(0, 196, 167, 0.2) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.swiper-pagination {
    bottom: 30px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: white;
}

/* About Section */
.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__content {
    max-width: 500px;
}

.about__text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about__stat {
    text-align: center;
}

.about__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Mulish', sans-serif;
}

.about__label {
    font-size: 0.9rem;
    color: #666;
}

.about__image {
    position: relative;
}

.about__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Services Section */
.services {
    background-color: #f8f9fa;
}

.services__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service__card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service__description {
    color: #666;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.portfolio__item:hover {
    transform: translateY(-4px);
}

.portfolio__item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio__item:hover img {
    transform: scale(1.05);
}

.portfolio__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 196, 167, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio__item:hover .portfolio__overlay {
    opacity: 1;
}

.portfolio__title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8f7ff, #f0ebff);
}

.testimonials-swiper {
    padding: 0 20px 40px;
}

.testimonial__card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    height: auto;
}

.testimonial__stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial__text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.testimonial__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__info {
    text-align: left;
}

.testimonial__name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial__location {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: white;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq__question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq__question:hover {
    background: #f8f9fa;
}

.faq__question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.faq__icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq__item.active .faq__icon {
    transform: rotate(90deg);
}

.faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item.active .faq__answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq__answer p {
    margin: 0;
    color: #666;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.newsletter__container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter__form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter__input {
    flex: 1;
    padding: 12px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1rem;
}

.newsletter__btn {
    padding: 12px 24px;
    white-space: nowrap;
}

.newsletter__checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    font-size: 0.9rem;
}

.newsletter__checkbox a {
    color: white;
    text-decoration: underline;
}

/* Contact Section */
.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact__item h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.contact__item p {
    margin: 0;
    color: #666;
}

.contact__map {
    margin-top: 2rem;
}

.contact__form-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.contact__form-group {
    margin-bottom: 1.5rem;
}

.contact__form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.contact__form-group input,
.contact__form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.contact__form-group input:focus,
.contact__form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact__form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.contact__form-checkbox a {
    color: var(--primary-color);
}

.contact__btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer__logo img {
    width: 40px;
    height: 40px;
}

.footer__logo span {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer__description {
    opacity: 0.8;
    line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer__links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer__contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.6;
}

/* Legal Pages */
.legal {
    padding: 120px 0 80px;
}

.legal__container {
    max-width: 800px;
    margin: 0 auto;
}

.legal__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 600;
}

.legal__back:hover {
    opacity: 0.8;
}

.legal__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal__updated {
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal__content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal__content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal__content li {
    margin-bottom: 0.5rem;
}

.legal__content a {
    color: var(--primary-color);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox__image {
    max-width: 100%;
    max-height: 100%;
    border-radius: var(--border-radius);
}

.lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox__prev,
.lightbox__next {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5rem;
    pointer-events: auto;
    transition: var(--transition);
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 2000;
    box-shadow: var(--shadow);
}

.toast.show {
    transform: translateX(0);
}

.toast.error {
    background: #e74c3c;
}

.toast.success {
    background: #2ecc71;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .about__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about__stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav__menu.active {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav__link {
        font-size: 1.2rem;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .services__container {
        grid-template-columns: 1fr;
    }
    
    .portfolio__container {
        grid-template-columns: 1fr;
    }
    
    .about__stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter__form {
        flex-direction: column;
    }
    
    .newsletter__container {
        padding: 2rem;
    }
    .btn.btn--primary{display:none!important;}
    @media (max-width:768px){
      .nav__menu{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
      }
      .nav__list{
        width:100%;
        align-items:center;
        justify-content:center;
        text-align:center;
        gap:0rem;
        padding:0;
      }
      .nav__item{
        width:100%;
      }
      .nav__link{
        display:block;
        width:100%;
        font-size:2rem;
        padding:1rem 0;
      }
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section__title {
        font-size: 1.5rem;
    }
    
    .service__card {
        padding: 1.5rem;
    }
    
    .testimonial__card {
        padding: 1.5rem;
    }
    
    .newsletter__container {
        padding: 1.5rem;
    }
    
    .contact__form-container {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}

/* Animation classes for AOS */
[data-aos] {
    opacity: 0;
    transition-duration: 0.6s;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}