/* ===== VARIABLES ===== */
:root {
    --primary-color: #E67E22;
    --primary-dark: #D35400;
    --secondary-color: #2C3E50;
    --secondary-light: #34495E;
    --accent-color: #F39C12;
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --dark-bg: #1A1A2E;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-dark: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.btn--whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn--whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.btn--full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo img {
    height: 60px;
    transition: var(--transition);
}

.header.scrolled .nav__logo img {
    height: 50px;
}

.nav__list {
    display: flex;
    gap: 35px;
}

.nav__link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.header.scrolled .nav__link {
    color: var(--text-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__toggle, .nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

.header.scrolled .nav__toggle {
    color: var(--text-color);
}

/* ===== SECTION TITLES ===== */
.section__subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section__title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(230, 126, 34, 0.7));
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.hero__title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__title span {
    color: var(--accent-color);
}

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

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero__scroll a {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 120px 0;
    background: var(--white);
}

.about-preview__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview__text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-preview__stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat__text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-preview__image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-preview__image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-preview__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--light-bg);
    text-align: center;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service__card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service__card:hover::before {
    transform: scaleX(1);
}

.service__icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service__icon i {
    font-size: 2rem;
    color: var(--white);
}

.service__card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service__card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 120px 0;
    background: var(--white);
    text-align: center;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.gallery__item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.9), rgba(44, 62, 80, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery__overlay span {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

/* ===== ORDER SECTION ===== */
.order {
    padding: 120px 0;
    background: var(--light-bg);
}

.order__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.order__info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.order__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: var(--secondary-color);
}

.order__form {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    position: relative;
}

.form__group.full-width {
    grid-column: span 2;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-bg);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

.form__group textarea {
    resize: none;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 100px 0;
    background: var(--gradient-dark);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer__logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer__about p {
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer__social {
    display: flex;
    gap: 15px;
}

.footer__social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a,
.footer ul li {
    opacity: 0.8;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer__contact li i {
    color: var(--primary-color);
    width: 20px;
}

.footer__bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== PAGE HEADER ===== */
.header--dark {
    background: var(--secondary-color);
}

.header--dark .nav__link {
    color: var(--white);
}

.page-header {
    position: relative;
    padding: 180px 0 80px;
    background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    text-align: center;
    color: var(--white);
}

.page-header__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(230, 126, 34, 0.8));
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

/* ===== ABOUT FULL ===== */
.about-full {
    padding: 120px 0;
    background: var(--white);
}

.about-full__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-full__text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-full__image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-full__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ===== MVV SECTION ===== */
.mvv {
    padding: 120px 0;
    background: var(--light-bg);
}

.mvv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv__card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mvv__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mvv__icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mvv__icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.mvv__card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mvv__card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== WHY US ===== */
.why-us {
    padding: 120px 0;
    background: var(--white);
    text-align: center;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-us__item {
    padding: 40px 30px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.why-us__item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.why-us__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.why-us__item h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.why-us__item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== TEAM ===== */
.team {
    padding: 120px 0;
    background: var(--light-bg);
    text-align: center;
}

.team__description {
    max-width: 600px;
    margin: 0 auto 60px;
    color: var(--text-light);
}

.team__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team__image {
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
}

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

.team__image:hover img {
    transform: scale(1.1);
}

/* ===== CONTACT PAGE ===== */
.contact {
    padding: 120px 0;
    background: var(--light-bg);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact__info p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.contact__card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact__card-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__card-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.contact__card-info h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact__card-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.contact__social h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.social__links {
    display: flex;
    gap: 15px;
}

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

.social__link--whatsapp {
    background: #25D366;
}

.social__link--instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social__link--facebook {
    background: #1877F2;
}

.social__link:hover {
    transform: scale(1.1) translateY(-5px);
}

.contact__form {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.contact__form h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

.contact__form .form__group {
    margin-bottom: 20px;
}

.contact__form .form__group:last-of-type {
    margin-bottom: 25px;
}

/* ===== MAP ===== */
.map {
    width: 100%;
    height: 450px;
    filter: grayscale(30%);
}

.map iframe {
    width: 100%;
    height: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .section__title {
        font-size: 2.3rem;
    }

    .hero__title {
        font-size: 3rem;
    }

    .about-preview__content,
    .order__content,
    .about-full__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-preview__image {
        order: -1;
    }

    .services__grid,
    .gallery__grid,
    .mvv__grid,
    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team__gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__content {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--secondary-color);
        padding: 80px 40px 40px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 25px;
    }

    .nav__link {
        color: var(--white);
        font-size: 1.1rem;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        color: var(--white);
    }

    .nav__toggle {
        display: block;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .about-preview__stats {
        flex-direction: column;
        gap: 20px;
    }

    .services__grid,
    .gallery__grid,
    .mvv__grid,
    .why-us__grid,
    .team__gallery {
        grid-template-columns: 1fr;
    }

    .order__form {
        padding: 30px;
        grid-template-columns: 1fr;
    }

    .form__group.full-width {
        grid-column: span 1;
    }

    .order__features {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer__social {
        justify-content: center;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact__cards {
        grid-template-columns: 1fr;
    }

    .contact__form {
        padding: 30px;
    }
}

/* ===== ANIMATIONS ===== */
.service__card,
.gallery__item,
.mvv__card,
.why-us__item,
.stat {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service__card.animate,
.gallery__item.animate,
.mvv__card.animate,
.why-us__item.animate,
.stat.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.service__card:nth-child(1) { transition-delay: 0.1s; }
.service__card:nth-child(2) { transition-delay: 0.2s; }
.service__card:nth-child(3) { transition-delay: 0.3s; }
.service__card:nth-child(4) { transition-delay: 0.4s; }
.service__card:nth-child(5) { transition-delay: 0.5s; }
.service__card:nth-child(6) { transition-delay: 0.6s; }

.gallery__item:nth-child(1) { transition-delay: 0.1s; }
.gallery__item:nth-child(2) { transition-delay: 0.2s; }
.gallery__item:nth-child(3) { transition-delay: 0.3s; }
.gallery__item:nth-child(4) { transition-delay: 0.4s; }
.gallery__item:nth-child(5) { transition-delay: 0.5s; }
.gallery__item:nth-child(6) { transition-delay: 0.6s; }

/* ===== NOTIFICATION ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

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

.notification--success {
    border-left: 4px solid #25D366;
}

.notification--success i {
    color: #25D366;
    font-size: 1.5rem;
}

.notification--error {
    border-left: 4px solid #e74c3c;
}

.notification--error i {
    color: #e74c3c;
    font-size: 1.5rem;
}

/* ===== SERVICE CARD LINK ===== */
a.service__card {
    text-decoration: none;
    display: block;
}

.service__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 15px;
    transition: var(--transition);
}

.service__card:hover .service__link {
    gap: 12px;
}

.service__link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

/* ===== SERVICE DETAIL PAGE ===== */
.page-header--service {
    min-height: 400px;
    display: flex;
    align-items: center;
}

.page-header__icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    backdrop-filter: blur(10px);
}

.page-header__icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-detail {
    padding: 120px 0;
    background: var(--white);
}

.service-detail__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail__text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.feature:hover {
    background: var(--primary-color);
    color: var(--white);
}

.feature:hover i {
    color: var(--white);
}

.feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

.service-detail__image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.service-detail__image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.service-detail__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ===== SERVICE BENEFITS ===== */
.service-benefits {
    padding: 120px 0;
    background: var(--light-bg);
    text-align: center;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit__card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit__icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit__icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.benefit__card h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.benefit__card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Service Page Responsive */
@media (max-width: 1024px) {
    .service-detail__content {
        grid-template-columns: 1fr;
    }

    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail__features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .page-header__icon {
        width: 80px;
        height: 80px;
    }

    .page-header__icon i {
        font-size: 2rem;
    }
}

/* ===== PARTNERS SECTION ===== */
.partners {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    text-align: center;
    overflow: hidden;
}

.partners__description {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
}

/* Infinite Marquee Slider */
.partners__slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, rgba(230,126,34,0.03) 0%, transparent 20%, transparent 80%, rgba(230,126,34,0.03) 100%);
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.partners__slider::before,
.partners__slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.partners__slider::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.partners__slider::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.partners__track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.partners__track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner__item {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 120px;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner__item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.15);
    border-color: rgba(230, 126, 34, 0.2);
}

.partner__item:hover::before {
    transform: scaleX(1);
}

.partner__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.4s ease;
}

.partner__item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* ===== LOCATION SECTION ===== */
.location {
    padding: 100px 0;
    background: var(--light-bg);
}

.location__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 50px;
}

.location__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location__card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.location__card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.location__card i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location__card h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1rem;
}

.location__card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.location__map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location__map iframe {
    border-radius: var(--border-radius);
}

/* Partners & Location Responsive */
@media (max-width: 1024px) {
    .location__content {
        grid-template-columns: 1fr;
    }

    .location__info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .location__card {
        flex: 1 1 calc(50% - 10px);
    }

    .partner__item {
        width: 160px;
        height: 100px;
        padding: 15px 20px;
    }

    .partners__track {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .location__card {
        flex: 1 1 100%;
    }

    .partner__item {
        width: 140px;
        height: 90px;
        padding: 12px 15px;
        border-radius: 12px;
    }

    .partners__slider::before,
    .partners__slider::after {
        width: 50px;
    }

    .partners__track {
        gap: 25px;
        animation-duration: 20s;
    }

    .partners {
        padding: 40px 0;
    }

    .partners__slider {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .section__title {
        font-size: 1.7rem;
    }

    .stat__number {
        font-size: 2rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

