/* ========================================
   Turtle Laundry — Pages Stylesheet
   (Extends style.css — load both)
   ======================================== */

/* ── Page Hero ───────────────────────────── */
.page-hero {
    padding: 130px 0 64px;
    background: linear-gradient(135deg, var(--navy) 0%, #1e4f7b 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0,174,239,.18) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 14px;
}

.page-hero p {
    color: rgba(255,255,255,.78);
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .83rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 18px;
}

.breadcrumb a { color: rgba(255,255,255,.75); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: .65rem; }

@media (min-width: 769px) {
    /* Navbar inner page transparency fix */
    .navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
    .navbar:not(.scrolled) .nav-links a:hover,
    .navbar:not(.scrolled) .nav-links a.nav-active { color: #fff; }
}

@media (max-width: 768px) {
    .navbar:not(.scrolled) .hamburger-line { background: #fff; }
    /* Revert hamburger color back to dark when menu is open because background becomes white */
    .navbar:not(.scrolled) .mobile-menu-btn.active .hamburger-line { background: var(--navy); }
}

/* ── Section utilities ───────────────────── */
.section-label {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(0,174,239,.1);
    color: var(--blue);
    font-size: .78rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */

/* Story Section */
.about-story {
    padding: 88px 0;
    background: var(--white);
}

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

.about-story-img {
    position: relative;
}

.about-story-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-stat-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--blue);
    color: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-stat-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-stat-badge span {
    font-size: .78rem;
    opacity: .85;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-text p:last-of-type { margin-bottom: 0; }

/* Values */
.about-values {
    background: var(--surface);
    padding: 88px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: box-shadow .25s, transform .2s;
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    background: var(--blue);
    color: #fff;
}

.value-card h4 { margin-bottom: 8px; }
.value-card p { color: var(--text-secondary); font-size: .9rem; line-height: 1.6; }

/* Founder Spotlight */
.about-team {
    padding: 88px 0;
    background: var(--white);
}

.founder-spotlight {
    display: flex;
    justify-content: center;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 720px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: box-shadow .3s, transform .3s;
}

.founder-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.founder-img-wrap {
    flex-shrink: 0;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    padding: 4px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    box-shadow: 0 8px 32px rgba(0,174,239,.18);
}

.founder-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.founder-info h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--navy);
}

.founder-role {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0,174,239,.1);
    color: var(--blue);
    font-size: .82rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: .03em;
    margin-bottom: 14px;
}

.founder-info p {
    color: var(--text-secondary);
    font-size: .93rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.founder-social {
    display: flex;
    gap: 10px;
}

.founder-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface);
    color: var(--text-secondary);
    font-size: .95rem;
    transition: background .2s, color .2s, transform .2s;
}

.founder-social a:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
}

/* Stats bar */
.stats-bar {
    background: var(--navy);
    padding: 56px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
}

.stat-item span {
    display: block;
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    margin-top: 6px;
}

/* ══════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════ */

.services-page { padding: 88px 0; background: var(--white); }

/* Service tab navigation */
.service-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.stab {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text-secondary);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s var(--ease);
    font-family: var(--font);
}

.stab:hover { border-color: var(--blue); color: var(--blue); }
.stab.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Service detail cards */
.service-panel { display: none; animation: fadeIn .3s ease; }
.service-panel.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--surface), #daeef8);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
}

.service-detail-text h2 { font-size: 1.9rem; margin-bottom: 14px; }
.service-detail-text > p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 28px; }

.service-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: var(--surface);
    border-radius: 12px;
}

.service-item i { color: var(--blue); margin-top: 2px; flex-shrink: 0; }
.service-item div strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.service-item div span { font-size: .8rem; color: var(--text-secondary); }

/* ══════════════════════════════════════════
   PROCESS PAGE  (also used on about)
   ══════════════════════════════════════════ */

.process-page { background: var(--surface); padding: 88px 0; }

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
    position: relative;
}

.timeline-step:last-child { margin-bottom: 0; }

.timeline-num {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 0 0 6px rgba(0,174,239,.12);
}

.timeline-body {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    flex: 1;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
}

.timeline-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.timeline-body p { color: var(--text-secondary); font-size: .93rem; line-height: 1.65; }

/* ══════════════════════════════════════════
   FAQ PAGE
   ══════════════════════════════════════════ */

.faq-page { padding: 88px 0; background: var(--white); }

.faq-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

.faq-categories {
    position: sticky;
    top: 96px;
}

.faq-cat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    background: none;
    color: var(--text-secondary);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: var(--font);
    text-align: left;
    margin-bottom: 4px;
}

.faq-cat-btn:hover { background: var(--surface); color: var(--text); }
.faq-cat-btn.active { background: rgba(0,174,239,.1); color: var(--blue); }
.faq-cat-btn i { width: 20px; text-align: center; }

.faq-group { display: none; }
.faq-group.active { display: block; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    font-size: .97rem;
    font-weight: 600;
    color: var(--text);
    transition: background .2s;
}

.faq-q:hover { background: var(--surface); }
.faq-q.open { background: var(--surface); color: var(--blue); }

.faq-q i {
    flex-shrink: 0;
    transition: transform .3s var(--ease);
    color: var(--text-secondary);
    font-size: .85rem;
}

.faq-q.open i { transform: rotate(180deg); color: var(--blue); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}

.faq-a-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: .93rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════
   PRICING PAGE
   ══════════════════════════════════════════ */

.pricing-section {
    padding: 56px 0 88px;
    background: var(--surface);
}

/* Search */
.pricing-search-wrap {
    position: relative;
    max-width: 580px;
    margin: 0 auto 36px;
}

.pricing-search-wrap > i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: .95rem;
    pointer-events: none;
}

#pricing-search {
    width: 100%;
    padding: 15px 48px 15px 46px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: .95rem;
    font-family: var(--font);
    background: var(--white);
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

#pricing-search:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(61,126,181,.12);
}

#pricing-search::placeholder {
    color: var(--text-secondary);
    opacity: .7;
}

.search-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    background: var(--surface);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: .75rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
}

.search-clear:hover {
    background: var(--border);
    color: var(--text);
}

/* Service tabs */
.pricing-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ptab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text-secondary);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s var(--ease);
    font-family: var(--font);
}

.ptab i { font-size: .8rem; }

.ptab:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.ptab.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

/* Sub-category pills */
.pricing-subcats {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.subcat-pill {
    padding: 7px 16px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-secondary);
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s var(--ease);
    font-family: var(--font);
}

.subcat-pill i { margin-right: 4px; font-size: .72rem; }

.subcat-pill:hover {
    border-color: var(--green);
    color: var(--green);
}

.subcat-pill.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

/* Results info */
.pricing-results-info {
    text-align: center;
    font-size: .88rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-results-info strong {
    color: var(--text);
}

/* Category group */
.price-service-group {
    margin-bottom: 32px;
}

.price-svc-header {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    padding: 14px 20px;
    background: var(--white);
    border-radius: var(--radius) var(--radius) 0 0;
    border: 1px solid var(--border);
    border-bottom: 2px solid var(--blue);
    margin-bottom: 0;
}

.price-svc-header i {
    margin-right: 8px;
    color: var(--blue);
}

.price-category-group {
    margin-bottom: 24px;
}

.price-cat-header {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    padding: 12px 18px;
    background: var(--white);
    border-radius: var(--radius) var(--radius) 0 0;
    border: 1px solid var(--border);
    border-bottom: 2px solid var(--green-light);
}

.price-cat-header.sub {
    font-size: .92rem;
    border-radius: 0;
    border-top: none;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.price-cat-header i {
    margin-right: 8px;
    color: var(--green);
}

/* Item cards grid */
.price-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
}

.price-item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--white);
    transition: background .15s;
}

.price-item-card:hover {
    background: rgba(61,126,181,.04);
}

.price-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.price-item-name {
    font-size: .93rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-item-name mark {
    background: rgba(61,126,181,.18);
    color: var(--blue);
    padding: 1px 3px;
    border-radius: 3px;
}

.price-item-unit {
    font-size: .75rem;
    color: var(--text-secondary);
}

.price-item-amount {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue);
    flex-shrink: 0;
    margin-left: 16px;
}

/* Empty state */
.pricing-empty {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
    max-width: 480px;
    margin: 0 auto;
}

.pricing-empty i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: 16px;
}

.pricing-empty h3 {
    margin-bottom: 8px;
}

.pricing-empty p {
    color: var(--text-secondary);
    font-size: .93rem;
}

/* Pricing promo banner */
.pricing-promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 50%, #fff3e0 100%);
    border: 1.5px solid #ffb74d;
    border-radius: var(--radius);
    font-size: .95rem;
    color: #e65100;
    animation: promoPulse 2s ease-in-out infinite alternate;
}

.pricing-promo-banner i {
    font-size: 1.1rem;
    color: #ff6d00;
}

.pricing-promo-banner strong {
    font-weight: 700;
}

@keyframes promoPulse {
    from { box-shadow: 0 2px 8px rgba(255, 152, 0, .15); }
    to   { box-shadow: 0 4px 18px rgba(255, 152, 0, .3); }
}

/* ══════════════════════════════════════════
   CTA Strip (shared)
   ══════════════════════════════════════════ */
.cta-strip {
    background: var(--navy);
    padding: 64px 0;
    text-align: center;
}

.cta-strip h2 { color: #fff; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 480px; margin: 0 auto 32px; }

.cta-strip .btn-primary {
    background: var(--blue);
    color: #fff;
}
.cta-strip .btn-primary:hover { background: var(--blue-light); }

/* ══════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
    .about-story-grid,
    .service-detail,
    .service-detail.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
    .about-stat-badge { right: 0; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .founder-card { flex-direction: column; text-align: center; gap: 28px; }
    .founder-info { display: flex; flex-direction: column; align-items: center; }
    .founder-social { justify-content: center; }
    .stats-row { grid-template-columns: 1fr 1fr; gap: 32px; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-categories { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
    .faq-cat-btn { width: auto; }
    .page-hero h1 { font-size: 1.9rem; }

    .pricing-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 6px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .pricing-tabs::-webkit-scrollbar { display: none; }
    .ptab { flex-shrink: 0; font-size: .8rem; padding: 9px 16px; }

    .pricing-subcats {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .pricing-subcats::-webkit-scrollbar { display: none; }
    .subcat-pill { flex-shrink: 0; }
}

@media (max-width: 600px) {
    .values-grid,
    .founder-img-wrap { width: 200px; height: 200px; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .service-items { grid-template-columns: 1fr; }
    .process-timeline::before { left: 36px; }
    .timeline-num { width: 72px; height: 72px; font-size: 1.2rem; }

    .price-items-grid { grid-template-columns: 1fr; }
    #pricing-search { font-size: .88rem; padding: 13px 42px 13px 40px; }
    .pricing-search-wrap > i { left: 14px; }
    .subcat-pill { font-size: .75rem; padding: 6px 12px; }
    .ptab { font-size: .76rem; padding: 8px 13px; gap: 5px; }
    .ptab i { font-size: .72rem; }
    .price-cat-header { font-size: .9rem; padding: 10px 14px; }
    .price-item-card { padding: 12px 14px; }
    .price-item-name { font-size: .87rem; }
    .price-item-amount { font-size: .97rem; }
    .pricing-section { padding: 36px 0 64px; }
}

