/* ==========================================================================
   MINI'S CORNER LAUNDRY SERVICE - INNER PAGES STYLES
   ========================================================================== */

/* --- Page Hero / Banner with Transparent Background Overlay --- */
.page-hero {
    padding: 70px 0 60px;
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.84) 0%, rgba(11, 19, 41, 0.88) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-bg-watermark {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero_laundry.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

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

.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #38bdf8;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.page-hero h1 {
    color: var(--white);
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-hero p {
    color: #cbd5e1;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13.5px;
    color: #94a3b8;
}

.breadcrumb-nav a {
    color: #e2e8f0;
}

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

.breadcrumb-nav span {
    color: #38bdf8;
    font-weight: 600;
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */
.about-story-section {
    padding: 90px 0;
    background: var(--white);
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-card-visual {
    background: linear-gradient(135deg, #0284c7 0%, #0f172a 100%);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.story-card-visual i.bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 180px;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.story-card-visual .main-icon {
    font-size: 64px;
    color: #38bdf8;
    margin-bottom: 20px;
}

.story-card-visual h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 12px;
}

.story-card-visual p {
    color: #e2e8f0;
    font-size: 15px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 18px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Mission, Vision, Values */
.mvv-section {
    background: var(--bg-page);
    padding: 80px 0;
}

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

.mvv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.mvv-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px auto;
    transition: var(--transition);
}

.mvv-card:hover .mvv-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.08);
}

.mvv-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.mvv-card p {
    font-size: 14.5px;
    line-height: 1.7;
}

/* About Stats Counter */
.about-stats {
    background: linear-gradient(135deg, #0b1329 0%, #0369a1 100%);
    color: var(--white);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item-box {
    padding: 20px;
}

.stat-item-box i {
    font-size: 32px;
    color: #38bdf8;
    margin-bottom: 14px;
}

.stat-item-box .stat-number {
    font-size: 44px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item-box .stat-label {
    font-size: 15px;
    color: #cbd5e1;
    font-weight: 600;
}

/* Why Choose Us Detail */
.features-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-detail-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}

.feature-detail-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.feature-detail-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-detail-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   SERVICES PAGE STYLES & THUMBNAIL LAYOUT
   ========================================================================== */
.services-detail-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.service-detail-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-detail-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.service-detail-thumbnail-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-thumbnail-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-item:hover .service-detail-thumbnail-wrap img {
    transform: scale(1.08);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.service-detail-header h2 {
    font-size: 26px;
}

.service-price-badge-lg {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
}

.service-detail-desc {
    font-size: 15.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.service-features-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-main);
}

.service-features-grid li i {
    color: #10b981;
}

.service-process-box {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 22px;
    border-left: 4px solid var(--primary);
}

.service-process-box h4 {
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.service-process-box p {
    font-size: 13.5px;
    margin: 0;
}

/* ==========================================================================
   PRICING PAGE STYLES
   ========================================================================== */
.pricing-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-table-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pricing-table-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.pricing-table-header {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.pricing-table-header i {
    font-size: 24px;
    color: #38bdf8;
}

.pricing-table-header h3 {
    color: var(--white);
    font-size: 20px;
    margin: 0;
}

.pricing-table-rows {
    padding: 12px 24px;
}

.pricing-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px dashed var(--border-light);
    font-size: 14.5px;
}

.pricing-table-row:last-child {
    border-bottom: none;
}

.pricing-table-row .item-name {
    font-weight: 500;
    color: var(--text-main);
}

.pricing-table-row .item-price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 15px;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.package-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.package-price {
    font-size: 40px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--secondary);
    margin: 16px 0 20px 0;
}

.package-price span {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

.package-features {
    margin-bottom: 28px;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 12px;
}

.package-features li i {
    color: #10b981;
}

/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */
.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1px solid var(--border-light);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.gallery-grid-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.gallery-card-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.gallery-card-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gallery-thumb {
    height: 190px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 52px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.gallery-card-item:hover .gallery-thumb {
    background: var(--primary-gradient);
    color: var(--white);
}

.gallery-card-body {
    padding: 18px 16px;
    text-align: center;
}

.gallery-card-body h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.gallery-card-body p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Before / After Showcase */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ba-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.ba-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 12px;
}

.ba-side {
    flex: 1;
    padding: 16px 10px;
    border-radius: var(--radius-md);
    text-align: center;
}

.ba-side.before {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    color: #ef4444;
}

.ba-side.after {
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    color: #059669;
}

.ba-side i {
    font-size: 26px;
    margin-bottom: 6px;
    display: block;
}

.ba-side h4 {
    font-size: 14px;
    color: inherit;
    margin-bottom: 2px;
}

.ba-side span {
    font-size: 11.5px;
    display: block;
    line-height: 1.3;
}

.ba-arrow-icon {
    font-size: 20px;
    color: var(--text-light);
}

/* ==========================================================================
   CONTACT PAGE STYLES & FAQ
   ========================================================================== */
.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.faq-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question-btn {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
}

.faq-question-btn:hover {
    color: var(--primary);
}

.faq-question-btn i {
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item-card.active .faq-question-btn i {
    transform: rotate(180deg);
}

.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background: var(--bg-alt);
    padding: 0 24px;
}

.faq-item-card.active .faq-answer-panel {
    padding: 0 24px 20px 24px;
}

.faq-answer-panel p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Inner Pages Responsive Rules --- */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid-main {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .pricing-category-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-layout {
        grid-template-columns: 1fr;
    }

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

    .service-detail-thumbnail-wrap {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .mvv-grid, .features-detail-grid, .packages-grid, .before-after-grid {
        grid-template-columns: 1fr;
    }

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

    .service-detail-item {
        padding: 24px;
        gap: 20px;
    }

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

@media (max-width: 480px) {
    .gallery-grid-main {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .ba-comparison {
        flex-direction: column;
    }

    .ba-arrow-icon {
        transform: rotate(90deg);
    }
}
