/* Cafe Laundry Hero Redesign 2026 */
.cafe-hero-modern {
    display: grid;
    grid-template-columns: 45% 55%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 120px 2rem 60px;
    position: relative;
    min-height: 80vh;
    align-items: center;
    gap: 4rem;
}

.cafe-hero-modern .text-column {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 10;
}

.cafe-hero-modern .headline {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2rem;
    color: #1e293b;
    letter-spacing: -2px;
}

.cafe-hero-modern .highlight {
    color: var(--service-cafes, #57534e);
    display: block;
}

.cafe-hero-modern .subtext {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.6;
}

.cafe-hero-modern .image-column {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.cafe-hero-modern .image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.1;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.15);
    animation: cafe-hero-float 8s infinite ease-in-out;
}

@keyframes cafe-hero-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.01); }
}

.cafe-hero-modern .image-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cafe-hero-modern .scroll-discovery {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--service-cafes, #57534e);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cafe-hero-modern .scroll-discovery .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--service-cafes, #57534e), transparent);
    position: relative;
    overflow: hidden;
}

.cafe-hero-modern .scroll-discovery .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    animation: cafe-scroll-line 2s infinite;
}

@keyframes cafe-scroll-line {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@media (max-width: 1024px) {
    .cafe-hero-modern {
        grid-template-columns: 1fr;
        padding-top: 80px;
        text-align: center;
        min-height: auto;
        gap: 2rem;
    }
    .cafe-hero-modern .text-column {
        align-items: center;
        text-align: center;
    }
    .cafe-hero-modern .image-container {
        max-width: 600px;
        margin: 0 auto;
    }
    .cafe-hero-modern .scroll-discovery { justify-content: center; }
}

@media (max-width: 768px) {
    .cafe-hero-modern { font-size: 2.5rem; }
    .cafe-hero-modern .subtext { font-size: 1.1rem; }
    .cafe-hero-modern .image-container { aspect-ratio: 1/1; }
}

/* Cafe Elevate Modern Section */
.cafe-elevate-modern {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cafe-elevate-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cafe-elevate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.cafe-elevate-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cafe-elevate-tag {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--service-cafes, #57534e);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cafe-elevate-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #1e293b;
    line-height: 1.1;
    letter-spacing: -2px;
}

.cafe-elevate-description {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.6;
}

.cafe-elevate-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.cafe-elevate-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.cafe-elevate-icon-box {
    width: 48px;
    height: 48px;
    background: #f5f3ff; /* Keeping a light background, maybe #f5f5f4 for cafe */
    background: rgba(87, 83, 78, 0.05);
    color: var(--service-cafes, #57534e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cafe-elevate-feature-item:hover .cafe-elevate-icon-box {
    background: var(--service-cafes, #57534e);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.cafe-elevate-feature-text h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.cafe-elevate-feature-text p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.cafe-elevate-image-area {
    position: relative;
}

.cafe-elevate-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.15);
}

.cafe-elevate-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid #e2e8f0;
    z-index: 10;
}

.cafe-badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(87, 83, 78, 0.1);
    color: var(--service-cafes, #57534e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cafe-badge-text {
    display: flex;
    flex-direction: column;
}

.cafe-badge-text strong {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 800;
}

.cafe-badge-text span {
    font-size: 0.9rem;
    color: #64748b;
}

@media (max-width: 1024px) {
    .cafe-elevate-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .cafe-elevate-image-area {
        order: -1;
    }
    .cafe-elevate-main-image {
        height: 450px;
    }
    .cafe-elevate-badge {
        bottom: -20px;
        right: 20px;
        left: 20px;
        justify-content: center;
    }
}

/* Combined Atmosphere & Excellence Section */
.cafe-atmosphere-section {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
}

.cafe-atmosphere-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cafe-atmosphere-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.cafe-atmosphere-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.cafe-atmosphere-body {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cafe-atmosphere-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cafe-atmo-feat-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cafe-atmo-feat-item i {
    color: var(--service-cafes, #57534e);
    flex-shrink: 0;
    margin-top: 3px;
}

.cafe-atmo-feat-item span {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
}

.cafe-atmosphere-visual {
    position: relative;
}

.cafe-atmo-img-stack {
    position: relative;
    padding: 2rem;
}

.cafe-atmo-main-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.cafe-atmo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 280px;
    border: 1px solid #e2e8f0;
}

.cafe-atmo-overlay p {
    font-size: 1rem;
    font-style: italic;
    color: #64748b;
    margin: 0;
}

/* Cafe Pricing Section */
.cafe-pricing-section {
    padding: 120px 0;
    background-color: #fcfcfc;
}

.cafe-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.cafe-pricing-card {
    background: white;
    border-radius: 32px;
    padding: 3rem 2rem;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cafe-pricing-card.popular {
    border: 2px solid var(--service-cafes, #57534e);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(87, 83, 78, 0.1);
}

.cafe-pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px -15px rgba(0,0,0,0.1);
}

.cafe-plan-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(87, 83, 78, 0.1);
    color: var(--service-cafes, #57534e);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cafe-plan-name {
    font-size: 1.25rem;
    font-weight: 850;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.cafe-plan-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--service-cafes, #57534e);
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
}

.cafe-plan-price span {
    font-size: 1rem;
    color: #64748b;
    margin-left: 0.5rem;
}

.cafe-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.cafe-plan-features li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #475569;
}

.cafe-plan-features i {
    color: #10b981;
    margin-top: 3px;
}

.cafe-plan-cta {
    display: block;
    width: 100%;
    padding: 1.25rem;
    background: #f8fafc;
    color: var(--service-cafes, #57534e);
    text-align: center;
    border-radius: 16px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cafe-pricing-card:hover .cafe-plan-cta {
    background: var(--service-cafes, #57534e);
    color: white;
    border-color: var(--service-cafes, #57534e);
}

@media (max-width: 1200px) {
    .cafe-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cafe-pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 1024px) {
    .cafe-atmosphere-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cafe-pricing-grid {
        grid-template-columns: 1fr;
    }
    .cafe-atmosphere-features {
        grid-template-columns: 1fr;
    }
}

/* Cafe Bento Advantages Section */
.cafe-bento-section {
    padding: 120px 0;
    background-color: #f8fafc;
    position: relative;
}

.cafe-bento-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cafe-bento-header {
    text-align: center;
    margin-bottom: 5rem;
}

.cafe-bento-header .tag {
    color: var(--service-cafes, #57534e);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.cafe-bento-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 950;
    color: #1e293b;
    letter-spacing: -2px;
}

.cafe-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 400px);
    gap: 1.5rem;
}

.cafe-bento-card {
    background: white;
    border-radius: 32px;
    padding: 3rem 2rem;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.cafe-bento-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--service-cafes, #57534e);
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.1);
}

.cafe-bento-icon {
    width: 64px;
    height: 64px;
    background: rgba(87, 83, 78, 0.05);
    color: var(--service-cafes, #57534e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.cafe-bento-card:hover .cafe-bento-icon {
    background: var(--service-cafes, #57534e);
    color: white;
    transform: rotate(-10deg) scale(1.1);
}

.cafe-bento-card h3 {
    font-size: 1.5rem;
    font-weight: 850;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cafe-bento-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .cafe-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .cafe-bento-card {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .cafe-bento-grid {
        grid-template-columns: 1fr;
    }
    .cafe-bento-header {
        margin-bottom: 3rem;
    }
}

/* Nexus Explorer Redesign 2026 */
.nexus-explorer-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.explorer-card-modern {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.explorer-card-modern:hover {
    background: white;
    transform: translateY(-12px);
    border-color: var(--service-cafes, #57534e);
    box-shadow: 0 30px 60px rgba(87, 83, 78, 0.12);
}

.explorer-icon-outer {
    width: 80px;
    height: 80px;
    background: white;
    color: var(--service-cafes, #57534e);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.explorer-card-modern:hover .explorer-icon-outer {
    background: var(--service-cafes, #57534e);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.explorer-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 850;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.explorer-card-modern p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.explorer-link-indicator {
    margin-top: auto;
    width: 44px;
    height: 44px;
    background: white;
    color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.explorer-card-modern:hover .explorer-link-indicator {
    background: var(--service-cafes, #57534e);
    color: white;
    border-color: var(--service-cafes, #57534e);
    transform: translateX(5px);
}

/* Cafe Inquiry Form Redesign 2026 */
.cafe-form-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.cafe-form-wrapper {
    background: #f8fafc;
    border-radius: 48px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.08);
}

.cafe-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
}

.cafe-form-info {
    background: linear-gradient(rgba(87, 83, 78, 0.92), rgba(87, 83, 78, 0.92)), url('/global/images/home-page/cafe.webp') center/cover;
    padding: 4rem 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cafe-form-info h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
}

.cafe-form-info p {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.cafe-form-benefit {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cafe-form-benefit:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.cafe-form-input-panel {
    padding: 4rem 3rem;
    background: white;
}

.cafe-form-input-panel .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cafe-form-input-panel label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1e293b;
    margin-bottom: 0.75rem;
    display: block;
}

.cafe-form-input-panel input, 
.cafe-form-input-panel select, 
.cafe-form-input-panel textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cafe-form-input-panel input:focus {
    border-color: var(--service-cafes, #57534e);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(87, 83, 78, 0.1);
}

.cafe-form-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--service-cafes, #57534e);
    color: white;
    border: none;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.cafe-form-submit:hover {
    background: #44403c;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(87, 83, 78, 0.25);
}

.form-disclaimer {
    font-size: 0.85rem;
    color: #64748b;
    margin: 1.5rem 0;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .cafe-form-grid { grid-template-columns: 1fr; }
    .cafe-form-info { padding: 3rem; text-align: center; align-items: center; }
}

@media (max-width: 768px) {
    .cafe-form-input-panel { padding: 2rem; }
    .cafe-form-input-panel .form-row { grid-template-columns: 1fr; gap: 0; }
}

.cafe-efficiency-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cafe-efficiency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.cafe-efficiency-visual {
    position: relative;
}

.cafe-efficiency-img-wrapper {
    position: relative;
    border-radius: 40px 0 40px 0;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.cafe-efficiency-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cafe-efficiency-visual:hover .cafe-efficiency-img {
    transform: scale(1.05);
}

.cafe-efficiency-floating-card {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    background: var(--service-cafes, #57534e);
    color: white;
    padding: 3rem;
    border-radius: 32px;
    max-width: 320px;
    box-shadow: 0 30px 60px rgba(87, 83, 78, 0.3);
    z-index: 2;
}

.cafe-efficiency-floating-card i {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cafe-efficiency-floating-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cafe-efficiency-floating-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cafe-efficiency-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.cafe-efficiency-tag {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--service-cafes, #57534e);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cafe-efficiency-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #1e293b;
    line-height: 1.1;
    letter-spacing: -2px;
}

.cafe-efficiency-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cafe-efficiency-body p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.7;
}

.cafe-efficiency-stats {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.cafe-efficiency-stat-item {
    display: flex;
    flex-direction: column;
}

.cafe-efficiency-stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: #1e293b;
}

.cafe-efficiency-stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .cafe-efficiency-grid {
        gap: 4rem;
    }
    .cafe-efficiency-floating-card {
        right: -20px;
        padding: 2rem;
    }
}

@media (max-width: 1024px) {
    .cafe-efficiency-grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
    .cafe-efficiency-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    .cafe-efficiency-floating-card {
        bottom: -40px;
        top: auto;
        right: 50%;
        transform: translateX(50%);
        max-width: 80%;
        text-align: center;
    }
    .cafe-efficiency-floating-card i {
        margin: 0 auto 1.5rem;
    }
}

