.elementor-334 .elementor-element.elementor-element-e68717f{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-334 .elementor-element.elementor-element-e68717f:not(.elementor-motion-effects-element-type-background), .elementor-334 .elementor-element.elementor-element-e68717f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-28287f2 );}.elementor-334 .elementor-element.elementor-element-df7265d{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-df7265d *//* ========================================
   NSB Laundry Service - Landing Page CSS
   Optimized for Elementor HTML Widget
   Phone: 053-4902525
   ======================================== */

/* ===== CSS Variables - Brand Colors ===== */
:root {
    /* Primary Brand Colors - Clean & Professional */
    --nsb-primary: #3C7896;        /* Teal Blue - Trust & Cleanliness */
    --nsb-primary-dark: #2D5A72;   
    --nsb-primary-light: #5A99BA;  
    
    --nsb-secondary: #78B478;      /* Light Green - Fresh & Nature */
    --nsb-secondary-dark: #6A9F6A;
    --nsb-secondary-light: #A0D4A0;
    
    --nsb-accent: #789678;         /* Sage Green - Calm & Clean */
    --nsb-accent-light: #9CB49C;
    
    --nsb-white: #FFFFFF;          /* Pure White - Cleanliness */
    
    /* Action Colors - Using Brand Colors */
    --nsb-cta: #3C7896;            /* Primary Blue for CTAs */
    --nsb-cta-dark: #2D5A72;
    --nsb-cta-light: #5A99BA;
    
    --nsb-warning: #FFB74D;        /* Orange for urgency */
    --nsb-danger: #FF6B6B;         /* Red for limited offers */
    
    /* Neutral Colors */
    --nsb-white: #FFFFFF;
    --nsb-light: #F8F9FA;
    --nsb-light-gray: #E9ECEF;
    --nsb-gray: #ADB5BD;
    --nsb-dark-gray: #495057;
    --nsb-dark: #2D3748;
    --nsb-text: #333333;
    --nsb-text-light: #555555;
    
    /* Shadows */
    --nsb-shadow-sm: 0 2px 8px rgba(139, 157, 195, 0.1);
    --nsb-shadow-md: 0 4px 16px rgba(139, 157, 195, 0.15);
    --nsb-shadow-lg: 0 8px 24px rgba(139, 157, 195, 0.2);
    --nsb-shadow-xl: 0 12px 32px rgba(139, 157, 195, 0.25);
    
    /* Transitions */
    --nsb-transition: all 0.3s ease;
}

/* ===== Reset & Base Styles ===== */
.nsb-sticky-phone,
.nsb-urgency-banner,
.nsb-top-bar,
.nsb-hero,
.nsb-benefits,
.nsb-service-details,
.nsb-process,
.nsb-why-us,
.nsb-final-cta,
.nsb-footer-info {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Heebo', 'Roboto', 'Arial', sans-serif;
}

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

/* ===== Sticky Phone Button ===== */
.nsb-sticky-phone {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, var(--nsb-cta) 0%, var(--nsb-cta-dark) 100%);
    color: #FFFFFF !important;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(60, 120, 150, 0.35);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--nsb-transition);
    animation: nsbPulse 2s infinite;
}

.nsb-sticky-phone:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(60, 120, 150, 0.5);
    background: linear-gradient(135deg, var(--nsb-cta-light) 0%, var(--nsb-cta) 100%);
    color: #FFFFFF !important;
}

.nsb-phone-text {
    color: #FFFFFF !important;
}

.nsb-phone-icon {
    font-size: 24px;
    animation: nsbShake 1.5s infinite;
}

@keyframes nsbPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes nsbShake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-8deg); }
    20%, 40% { transform: rotate(8deg); }
}

/* ===== Urgency Banner ===== */
.nsb-urgency-banner {
    background: linear-gradient(90deg, var(--nsb-danger) 0%, #EE5A6F 100%);
    color: var(--nsb-white);
    padding: 12px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    animation: nsbSlideDown 0.6s ease-out;
    box-shadow: var(--nsb-shadow-md);
}

@keyframes nsbSlideDown {
    from { 
        transform: translateY(-100%); 
        opacity: 0;
    }
    to { 
        transform: translateY(0); 
        opacity: 1;
    }
}

/* ===== Top Bar ===== */
.nsb-top-bar {
    background: linear-gradient(135deg, var(--nsb-primary) 0%, var(--nsb-secondary) 100%);
    color: var(--nsb-white);
    padding: 15px 20px;
    text-align: center;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--nsb-shadow-md);
}

.nsb-top-phone {
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 30px;
    transition: var(--nsb-transition);
    backdrop-filter: blur(10px);
}

.nsb-top-phone:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    color: #FFFFFF !important;
}

.nsb-top-phone span {
    color: #FFFFFF !important;
}

.nsb-phone-icon-top {
    font-size: 24px;
}

/* ===== Hero Section ===== */
.nsb-hero {
    background: linear-gradient(135deg, rgba(60, 120, 150, 0.95) 0%, rgba(120, 180, 120, 0.85) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%233C7896" width="1200" height="600"/><path fill="%2378B478" opacity="0.3" d="M0 300L50 283.3C100 266.7 200 233.3 300 216.7C400 200 500 200 600 216.7C700 233.3 800 266.7 900 283.3C1000 300 1100 300 1150 300L1200 300L1200 601L1150 601C1100 601 1000 601 900 601C800 601 700 601 600 601C500 601 400 601 300 601C200 601 100 601 50 601L0 601Z"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--nsb-white);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nsb-hero-title {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
    font-weight: 800;
}

.nsb-hero-subtitle-inline {
    font-size: 36px;
    font-weight: 600;
    opacity: 0.95;
}

.nsb-hero-subtitle {
    font-size: 22px;
    margin-bottom: 15px;
    opacity: 0.95;
    font-weight: 500;
}

.nsb-hero-highlight {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.25);
    padding: 15px 30px;
    border-radius: 15px;
    display: inline-block;
    margin: 20px 0 30px;
    backdrop-filter: blur(10px);
    box-shadow: var(--nsb-shadow-sm);
}

/* ===== Hero CTA Buttons ===== */
.nsb-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 450px;
    margin: 0 auto;
}

.nsb-cta-primary {
    background: linear-gradient(135deg, var(--nsb-cta) 0%, var(--nsb-cta-dark) 100%);
    color: #FFFFFF !important;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(60, 120, 150, 0.35);
    transition: var(--nsb-transition);
}

.nsb-cta-primary span {
    color: #FFFFFF !important;
}

.nsb-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(60, 120, 150, 0.5);
    background: linear-gradient(135deg, var(--nsb-cta-light) 0%, var(--nsb-cta) 100%);
}

.nsb-cta-icon {
    font-size: 24px;
}

.nsb-cta-secondary {
    background: var(--nsb-white);
    color: var(--nsb-primary) !important;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--nsb-shadow-md);
    transition: var(--nsb-transition);
}

.nsb-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--nsb-shadow-lg);
    background: var(--nsb-light);
    color: var(--nsb-primary) !important;
}

/* ===== Trust Badges ===== */
.nsb-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
    padding: 0 20px;
}

.nsb-trust-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 15px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: var(--nsb-shadow-sm);
}

/* ===== Section Titles ===== */
.nsb-section-title {
    text-align: center;
    font-size: 36px;
    color: var(--nsb-primary);
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
}

.nsb-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--nsb-primary) 0%, var(--nsb-secondary) 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.nsb-section-intro {
    text-align: center;
    font-size: 22px;
    color: var(--nsb-secondary);
    margin-bottom: 40px;
    font-weight: 600;
}

/* ===== Benefits Section ===== */
.nsb-benefits {
    padding: 60px 20px;
    background: var(--nsb-white);
}

.nsb-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.nsb-benefit-card {
    background: linear-gradient(135deg, var(--nsb-light) 0%, var(--nsb-light-gray) 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--nsb-shadow-md);
    transition: var(--nsb-transition);
    border: 2px solid transparent;
}

.nsb-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--nsb-shadow-xl);
    border-color: var(--nsb-primary);
}

.nsb-benefit-icon {
    font-size: 52px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.nsb-benefit-card h3 {
    font-size: 22px;
    color: var(--nsb-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.nsb-benefit-card p {
    color: var(--nsb-text-light);
    font-size: 16px;
    line-height: 1.7;
}

.nsb-cta-center {
    text-align: center;
    margin-top: 40px;
}

/* ===== Service Details Section ===== */
.nsb-service-details {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--nsb-light) 0%, var(--nsb-light-gray) 100%);
}

.nsb-service-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.nsb-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--nsb-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--nsb-shadow-md);
    transition: var(--nsb-transition);
}

.nsb-service-item:hover {
    box-shadow: var(--nsb-shadow-xl);
    transform: translateY(-4px);
}

.nsb-service-reverse {
    direction: rtl;
}

.nsb-service-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--nsb-shadow-md);
}

.nsb-service-content h3 {
    font-size: 24px;
    color: var(--nsb-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.nsb-service-content p {
    color: var(--nsb-text-light);
    line-height: 1.8;
    font-size: 16px;
}

.nsb-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nsb-service-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--nsb-text-light);
    line-height: 1.6;
}

.nsb-service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--nsb-cta);
    font-weight: 700;
    font-size: 18px;
}

/* ===== Process Section ===== */
.nsb-process {
    padding: 60px 20px;
    background: var(--nsb-white);
}

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

.nsb-step {
    background: var(--nsb-white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--nsb-shadow-md);
    transition: var(--nsb-transition);
    border: 2px solid var(--nsb-light-gray);
}

.nsb-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--nsb-shadow-xl);
    border-color: var(--nsb-secondary);
}

.nsb-step-number {
    background: linear-gradient(135deg, var(--nsb-primary) 0%, var(--nsb-secondary) 100%);
    color: var(--nsb-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: var(--nsb-shadow-md);
}

.nsb-step h3 {
    font-size: 20px;
    color: var(--nsb-text);
    margin-bottom: 12px;
    font-weight: 700;
}

.nsb-step p {
    color: var(--nsb-text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== Why Us Section ===== */
.nsb-why-us {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(120, 180, 120, 0.15) 0%, rgba(120, 150, 120, 0.1) 100%);
}

.nsb-features-list {
    max-width: 900px;
    margin: 0 auto;
}

.nsb-feature-item {
    background: var(--nsb-white);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 15px;
    border-right: 5px solid var(--nsb-secondary);
    box-shadow: var(--nsb-shadow-md);
    transition: var(--nsb-transition);
}

.nsb-feature-item:hover {
    transform: translateX(-8px);
    box-shadow: var(--nsb-shadow-lg);
    border-right-width: 8px;
    border-right-color: var(--nsb-accent);
}

.nsb-feature-item h3 {
    color: var(--nsb-primary);
    font-size: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.nsb-feature-item p {
    color: var(--nsb-text-light);
    line-height: 1.7;
    font-size: 16px;
}

/* ===== Final CTA Section ===== */
.nsb-final-cta {
    background: linear-gradient(135deg, var(--nsb-primary) 0%, var(--nsb-secondary) 100%);
    color: var(--nsb-white);
    padding: 60px 20px;
    text-align: center;
}

.nsb-final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
}

.nsb-final-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.nsb-final-cta-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 45px 35px;
    border-radius: 25px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: var(--nsb-shadow-xl);
}

.nsb-call-now {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.nsb-phone-display {
    font-size: 42px;
    font-weight: 800;
    margin: 20px 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nsb-available {
    margin-top: 15px;
    font-size: 18px;
    opacity: 0.95;
}

.nsb-final-btn-wrapper {
    margin-top: 30px;
}

.nsb-cta-large {
    font-size: 22px;
    padding: 22px 45px;
}

.nsb-offer-text {
    margin-top: 25px;
    font-size: 17px;
    opacity: 0.95;
    line-height: 1.8;
}

/* ===== Footer Info ===== */
.nsb-footer-info {
    background: var(--nsb-dark);
    color: var(--nsb-white);
    padding: 30px 20px;
    text-align: center;
}

.nsb-footer-info p {
    margin-bottom: 10px;
    opacity: 0.9;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .nsb-hero-title {
        font-size: 30px;
    }
    
    .nsb-hero-subtitle-inline {
        font-size: 26px;
    }
    
    .nsb-hero-subtitle {
        font-size: 18px;
    }
    
    .nsb-hero-highlight {
        font-size: 17px;
        padding: 12px 20px;
    }
    
    .nsb-section-title {
        font-size: 28px;
    }
    
    .nsb-section-intro {
        font-size: 18px;
    }
    
    .nsb-sticky-phone {
        bottom: 15px;
        left: 15px;
        right: 15px;
        text-align: center;
        justify-content: center;
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .nsb-top-phone {
        font-size: 18px;
        padding: 8px 20px;
    }
    
    .nsb-trust-badges {
        gap: 12px;
    }
    
    .nsb-trust-badge {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .nsb-cta-primary {
        font-size: 18px;
        padding: 18px 30px;
    }
    
    .nsb-cta-secondary {
        font-size: 16px;
        padding: 16px 30px;
    }
    
    .nsb-service-item {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 20px;
    }
    
    .nsb-service-reverse {
        direction: ltr;
    }
    
    .nsb-final-cta h2 {
        font-size: 28px;
    }
    
    .nsb-phone-display {
        font-size: 32px;
    }
    
    .nsb-final-cta-box {
        padding: 35px 25px;
    }
    
    .nsb-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nsb-process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .nsb-hero-title {
        font-size: 26px;
    }
    
    .nsb-hero-subtitle-inline {
        font-size: 22px;
    }
    
    .nsb-urgency-banner {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .nsb-phone-display {
        font-size: 28px;
        letter-spacing: 1px;
    }
}

/* ===== Bubbles Animation ===== */
.nsb-bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.nsb-bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, 
                rgba(255, 255, 255, 0.8), 
                rgba(255, 255, 255, 0.3));
    border-radius: 50%;
    opacity: 0;
    animation: nsbRise linear infinite;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5),
                0 0 20px rgba(255, 255, 255, 0.3);
}

.nsb-bubble::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle at 50% 50%, 
                rgba(255, 255, 255, 0.8), 
                transparent);
    border-radius: 50%;
}

@keyframes nsbRise {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(var(--float-distance)) scale(1);
    }
}

.nsb-hero .nsb-container {
    position: relative;
    z-index: 2;
}

/* ===== Accessibility ===== */
.nsb-sticky-phone:focus,
.nsb-top-phone:focus,
.nsb-cta-primary:focus,
.nsb-cta-secondary:focus {
    outline: 3px solid var(--nsb-warning);
    outline-offset: 2px;
}

/* ===== Print Styles ===== */
@media print {
    .nsb-sticky-phone,
    .nsb-urgency-banner,
    .nsb-top-bar {
        display: none;
    }
}/* End custom CSS */