* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #9E1B1D;
    --accent-beige: #D9C8B4;
    --dark-text: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100%;
}

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

/* HEADER & NAVIGATION */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark-text);
}

.brand-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: -0.5px;
}

.brand small {
    display: block;
    color: var(--light-text);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(158, 27, 29, 0.2);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle-label span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-red);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    background-color: var(--primary-red);
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.header-cta:hover {
    background-color: #7a1517;
    transform: translateY(-1px);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #f9f3ec 0%, #fff9f2 100%);
    color: var(--dark-text);
    padding: 100px 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-copy {
    max-width: 640px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-red);
}

.hero-copy h1,
.section-intro h2,
.process-step h3,
.feature-card h3,
.hero-card h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
}

.hero-copy h1 {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 640px;
    margin-bottom: 32px;
    color: var(--light-text);
}

/* CTA BUTTONS */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-button,
.outlined-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button {
    background-color: var(--primary-red);
    color: white;
    border: 1px solid transparent;
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: #7a1517;
}

.outlined-button {
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
}

.outlined-button:hover {
    background-color: rgba(158, 27, 29, 0.08);
}

.hero-card {
    border-radius: 32px;
    background: white;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(158, 27, 29, 0.08);
}

.hero-card-label,
.section-intro p,
.process-step p,
.feature-card p,
.contact-card p {
    color: var(--light-text);
}

.hero-card-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 16px;
}

.hero-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.hero-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.hero-card-list li {
    padding-left: 18px;
    position: relative;
    font-size: 14px;
}

.hero-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-red);
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h2 {
    font-size: 2.8rem;
    margin: 16px auto 24px;
    max-width: 760px;
}

.section-intro p {
    max-width: 710px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

.about-section,
.portfolio-section {
    padding: 100px 20px;
}

.portfolio-section {
    background-color: var(--light-gray);
}

.about-grid,
.process-grid,
.contact-grid {
    display: grid;
    gap: 24px;
}

.about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.process-step,
.contact-card {
    background: white;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feature-card h3,
.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.process-section {
    background: #faf5ef;
    padding: 100px 20px;
}

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

.process-step span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-red);
    color: white;
    font-weight: 700;
    margin-bottom: 18px;
}

.completed-works-section,
.reviews-section,
.contact-section {
    padding: 100px 20px;
}

.works-filters,
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.service-tab-btn,
.filter-btn {
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid #d9c8b4;
    background: transparent;
    color: var(--dark-text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-tab-btn.active,
.filter-btn.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.service-tab-btn:hover,
.filter-btn:hover {
    background: #f5e7e4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 24px;
}

.services-grid .service-card {
    background: white;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.services-grid .service-card h3 {
    margin-top: 18px;
    margin-bottom: 14px;
}

.services-grid .service-card p {
    color: var(--light-text);
}

.contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}

.contact-details {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}

.contact-details strong {
    display: block;
    margin-bottom: 8px;
}

.contact-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.contact-list li {
    padding-left: 16px;
    position: relative;
}

.contact-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-red);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 60px 0 30px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

.footer-grid li {
    margin-bottom: 8px;
}

.footer h3 {
    color: var(--accent-beige);
    margin-bottom: 16px;
}

.footer a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 20px;
}

.whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 100;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
}

@media (max-width: 1024px) {
    .hero-grid,
    .contact-grid,
    .process-grid,
    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-copy h1,
    .hero-text,
    .hero-actions {
        max-width: none;
    }

    .hero-copy h1 {
        font-size: 3rem;
    }

    .hero-grid {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .header-grid {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "brand toggle"
            "nav nav"
            "cta cta";
        align-items: center;
        gap: 0;
        padding: 12px 0;
        text-align: left;
    }

    .brand {
        grid-area: brand;
        justify-self: start;
    }

    .nav-toggle-label {
        grid-area: toggle;
        display: flex;
        justify-self: end;
    }

    .nav {
        grid-area: nav;
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding-top: 12px;
        margin-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-link {
        padding: 12px 0;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }

    .header-cta {
        grid-area: cta;
        display: none;
        width: 100%;
        margin-top: 12px;
        justify-self: stretch;
    }

    .nav-toggle:checked ~ .nav {
        display: flex;
    }

    .nav-toggle:checked ~ .header-cta {
        display: inline-flex;
    }

    .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .eyebrow {
        letter-spacing: 0.18em;
        font-size: 11px;
    }

    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: 2.4rem;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-intro h2 {
        font-size: 2rem;
    }

    .about-section,
    .portfolio-section,
    .process-section,
    .completed-works-section,
    .reviews-section,
    .contact-section {
        padding: 60px 20px;
    }

    .hero-card,
    .feature-card,
    .process-step,
    .contact-card,
    .services-grid .service-card {
        padding: 24px;
    }

    .sliders-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .footer {
        padding-bottom: 120px;
    }

    .works-filters,
    .services-tabs {
        gap: 10px;
    }

    .filter-btn,
    .service-tab-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-grid,
    .contact-grid,
    .process-grid,
    .about-grid,
    .services-grid {
        gap: 16px;
    }

    .hero-copy h1 {
        font-size: 2rem;
    }

    .hero-card {
        padding: 20px;
    }

    .section-intro h2 {
        font-size: 1.75rem;
    }

    .brand-label {
        font-size: 20px;
    }

    .logo-img {
        height: 38px;
    }

    .cta-button,
    .outlined-button {
        padding: 12px 22px;
        font-size: 14px;
    }

    .sliders-grid {
        gap: 20px;
    }

    .slider-title {
        padding: 15px;
    }

    .slider-title h3 {
        font-size: 16px;
    }

    .review-card {
        padding: 20px;
    }

    .review-name {
        font-size: 14px;
    }

    .review-text {
        font-size: 13px;
    }
}

/* PORTFOLIO SECTION */
.portfolio {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    font-size: 16px;
    margin-bottom: 50px;
}

.sliders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 40px;
}

/* BEFORE/AFTER SLIDER */
.slider-container {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    background: #000;
    aspect-ratio: 1;
    width: 100%;
}

.slider-label {
    position: absolute;
    top: 0;
    z-index: 10;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.before-label {
    left: 0;
    background: rgba(158, 27, 29, 0.7);
}

.after-label {
    right: 0;
    background: rgba(217, 200, 180, 0.7);
    color: var(--dark-text);
}

.slider-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.before-image-wrapper {
    clip-path: inset(0 50% 0 0);
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.after-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--accent-beige);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--accent-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.slider-handle::after {
    content: '◀ ▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-red);
    font-size: 12px;
    letter-spacing: -4px;
    font-weight: bold;
    white-space: nowrap;
}

.slider-title {
    padding: 20px;
    text-align: center;
    border-top: 2px solid var(--accent-beige);
}

.slider-title h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: var(--primary-red);
    font-weight: 600;
}

/* REVIEWS SECTION */
.reviews {
    padding: 80px 20px;
    background-color: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 30px;
}

.review-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.review-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-red);
    font-size: 16px;
}

.review-rating {
    color: #FFB800;
    font-size: 14px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
}

/* FOOTER */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--accent-beige);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-beige);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* LOADING & EMPTY STATES */
.empty-message {
    text-align: center;
    padding: 40px 20px;
    color: var(--light-text);
    font-size: 16px;
}

.error-message {
    text-align: center;
    padding: 20px;
    background-color: #ffe6e6;
    color: var(--primary-red);
    border-radius: 4px;
    margin: 20px 0;
}

/* LOGO STYLING */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
}

/* FLOATING SOCIAL ICONS */
.floating-icons {
    position: fixed;
    right: 24px;
    bottom: 98px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.float-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: none;
}

.float-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.float-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.float-icon.facebook {
    background-color: #1877F2;
}

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

.float-icon.location {
    background-color: var(--primary-red);
}

.float-icon:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.float-icon.instagram:hover {
    box-shadow: 0 6px 20px rgba(224, 148, 51, 0.4);
}

.float-icon.facebook:hover {
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.float-icon.whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.float-icon.location:hover {
    background-color: #7a1517;
    box-shadow: 0 6px 20px rgba(158, 27, 29, 0.4);
}

@media (max-width: 1024px) {
    .floating-icons {
        right: 20px;
        bottom: 90px;
    }
}

@media (max-width: 768px) {
    .floating-icons {
        right: 15px;
        bottom: 20px;
        gap: 12px;
    }

    .float-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}