/* Interior Work Plugin Styles - Black & White Premium Design */
.interior-work-container {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

/* Full-width sections */
section {
    width: 100%;
    margin: 0;
    padding: 80px 0;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(19deg, rgb(0 0 0 / 25%), rgb(255 255 255 / 50%));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-left: 5%;
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background: #111111;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #111111;
}

.cta-button:hover {
    background: white;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Slider Sections */
.slider-section {
    background: #f8f9fa;
}

.slider-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
    text-align: center;
}

.slider-section p {
    font-size: 1.2em;
    color: #666666;
    margin-bottom: 50px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.image-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-container {
    overflow: hidden;
    border-radius: 15px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: #111111;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

/* Delivered Projects Section */
.delivered-projects-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 0;
    background: white;
    box-sizing: border-box;
}

.delivered-projects-section .container {
    max-width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
}

.delivered-projects-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
    text-align: center;
}

.delivered-projects-section p {
    font-size: 1.2em;
    color: #666666;
    margin-bottom: 50px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.projects-slider {
    position: relative;
}

.projects-track {
    display: flex;
    gap: 30px;
    animation: slideProjects 30s linear infinite;
}

.project-card {
    min-width: 350px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
    border-radius: 15px 15px 0 0;
    transition: background 0.3s ease;
}

.project-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 20px;
}

.project-info h4 {
    font-size: 1.2em;
    color: #111111;
    margin-bottom: 8px;
    text-align: center;
}

.project-info p {
    color: #666666;
    font-size: 0.95em;
}

@keyframes slideProjects {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Services Section */
.services-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 0;
    background: #ffffff;
    box-sizing: border-box;
}

.services-section .container {
    max-width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
}

.services-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: -0.5px;
}

.services-section p {
    font-size: 1.1em;
    color: #666666;
    margin-bottom: 50px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 35px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    background: #111111;
    color: white;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #111111, #333333);
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    stroke: currentColor;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    color: #2c2c2c;
    font-size: 1em;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-card:hover,
.service-card h3:hover {
    color: white;
}

/* Estimate CTA Section */
.estimate-cta-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    background: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 1.2em;
    color: #666666;
    margin-bottom: 40px;
}

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

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.call-btn {
    background: #111111;
    color: white;
}

.call-btn:hover {
    background: white;
    color: #111111;
    border: 2px solid #111111;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background: #111111;
    color: white;
}

.whatsapp-btn:hover {
    background: white;
    color: #111111;
    border: 2px solid #111111;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #111111;
    color: white;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    font-weight: 500;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .slider-section h2,
    .services-section h2,
    .delivered-projects-section h2,
    .contact-section h2,
    .cta-content h2 {
        font-size: 2em;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }

    .projects-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
    }

    .project-card {
        min-width: 300px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .floating-whatsapp {
        right: 20px;
        bottom: 20px;
        top: auto;
        transform: none;
    }

    .slide img {
        height: 300px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .container {
        padding: 0 15px;
    }

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

    .project-card {
        min-width: 280px;
    }
}

.stats-grid h3 {
    font-size: 32px;
    color: #111111;
}

/* SWIPER CARD SLIDERS */
.slider-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 0;
    box-sizing: border-box;
    background: #f8f9fa;
}

.slider-section .container {
    max-width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
}

.swiper {
    padding: 0 25px;
    max-width: none;
}

.card-slide {
    display: flex;
    justify-content: center;
}

.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 360px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f2f2f2;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 240px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 2;
    pointer-events: none;
    border-radius: 12px 12px 0 0;
    transition: background 0.3s ease;
}

.card:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 33px rgba(0, 0, 0, 0.18);
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

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

.card h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: #1a1a1a;
    margin: 14px 16px 20px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.55);
    transform: scale(1.05);
}

.swiper-pagination-bullet {
    background: #111111;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #111111;
    opacity: 1;
}

@media (max-width: 768px) {
    .swiper {
        padding: 0 15px;
    }
}

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

.service-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* PORTFOLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    transition: 0.4s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    opacity: 0;
    padding: 20px;
    transition: 0.4s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* PROCESS */
.process-timeline {
    display: flex;
    justify-content: space-between;
}

.process-step {
    text-align: center;
}

/* CTA */
.final-cta {
    background: #111111;
    color: #fff;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-left,
    .hero-form {
        width: 100%;
    }

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

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

    .trust-grid,
    .stats-grid {
        flex-direction: column;
        gap: 15px;
    }
}