/* =============================================
   SERVICES — PAGE LAYOUT
   ============================================= */

.our-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: 'Georgia', serif;
}

.main-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 40px;
}

/* Service nav links */
.service-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: bold;
}

.service-nav a {
    text-decoration: none;
    color: #000;
}

/* Service detail layout */
.service-detail {
    display: flex;
    gap: 60px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
}

.pricing-content { flex: 1; }

.category-title {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    max-width: 400px;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 1.1rem;
}

.service-image {
    flex: 1;
    text-align: right;
}

.service-image img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .service-detail {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 20px;
    }
    .pricing-content { width: 100%; text-align: center; }
    .pricing-list { margin: 0 auto; }
    .service-image { width: 100%; text-align: center; }
    .service-nav { font-size: 1rem; }
}

/* Phone: horizontal scrollable pill nav */
@media (max-width: 600px) {
    /* Match both titles to the same size on mobile */
    .main-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .category-title {
        font-size: 2rem;
    }

    /* Scrollable pill row */
    .service-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;           /* Firefox */
        gap: 10px;
        padding: 0 16px 12px;
        margin-bottom: 28px;
        justify-content: flex-start;
        align-items: center;
        border-bottom: none;
    }

    /* Hide scrollbar on webkit */
    .service-nav::-webkit-scrollbar { display: none; }

    /* Pill shape for each link */
    .service-nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        flex-shrink: 0;
        padding: 10px 20px;
        border-radius: 50px;
        border: 1.5px solid #d0d0d0;
        background: #ffffff;
        color: #1a1a1a;
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        transition: border-color 0.2s ease, background 0.2s ease;
    }

    /* Active pill — filled */
    .service-nav a.active {
        background: #1a1a1a;
        color: #ffffff;
        border-color: #1a1a1a;
        font-weight: 700;
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-nav a:hover:not(.active) {
        border-color: #888;
    }
}


/* =============================================
   WAITLIST BANNER
   ============================================= */

.waitlist-banner {
    display: flex;
    align-items: stretch;
    background-color: #f9f9f9;
    width: 100%;
    min-height: 200px;
    margin: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.waitlist-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 60px;
    max-width: 50%;
}

.sub-title {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.main-waitlist-title {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 1;
    letter-spacing: 1px;
    color: #000;
}

.waitlist-description {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 450px;
    color: #444;
}

.btn-waitlist {
    display: inline-block;
    width: fit-content;
    padding: 15px 40px;
    border: 1px solid #000;
    border-radius: 50px;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-waitlist:hover { background-color: #000; color: #fff; }

/* Book-btn used in the Join Waitlist team section */
.book-btn {
    display: inline-block;
    width: fit-content;
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Georgia', serif;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.book-btn:hover { opacity: 0.8; }

.waitlist-image {
    flex: 1;
    background-image: url('team1.png');
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .waitlist-banner { flex-direction: column-reverse; }
    .waitlist-content { max-width: 100%; padding: 40px 20px; text-align: center; align-items: center; }
    .waitlist-image { height: 200px; }
}


/* =============================================
   PRICING — TITLE & TABS
   ============================================= */

.pricing-main-title {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 50px;
    color: #000;
    text-transform: capitalize;
}

/* Tabs */
.faq-header {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    border-bottom: 2px solid #ddd;
    margin-bottom: 40px;
    padding: 0;
    overflow: visible;
    flex-wrap: nowrap;
}

.tab-btn {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    padding: 14px 28px 16px;
    font-family: 'Georgia', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
    outline: none;
    border-radius: 0;
    box-shadow: none;
}

.tab-btn:hover { color: #333; background: transparent; }
.tab-btn.active { color: #000; border-bottom: 3px solid #000; background: transparent; }

/* Mobile pricing dropdown */
.pricing-dropdown-wrapper { display: none; }

@media (max-width: 1024px) and (min-width: 769px) {
    .tab-btn { font-size: 11px; padding: 12px 16px 14px; letter-spacing: 1px; }
}

@media (max-width: 768px) {
    .faq-header { display: none !important; }

    .pricing-dropdown-wrapper {
        display: block;
        margin: 0 0 30px;
        position: relative;
    }

    .pricing-dropdown-wrapper::after {
        content: "▼";
        font-size: 10px;
        color: #333;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .pricing-dropdown {
        width: 100%;
        padding: 15px 44px 15px 18px;
        font-family: 'Georgia', serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #000;
        background: #fff;
        border: 2px solid #000;
        border-radius: 8px;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
        outline: none;
    }

    .pricing-dropdown:focus { box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1); }

    .pricing-main-title { font-size: 1.8rem; margin-bottom: 20px; }
    .pricing-category { font-size: 11px; letter-spacing: 2px; }
    .pricing-item { font-size: 13px; padding: 10px 0; }
    .service-name { font-size: 13px; }
    .duration { font-size: 11px; color: #999; }
    .price { font-size: 13px; font-weight: 700; }
    .faq-container { padding: 0 15px; margin: 30px auto; }
}


/* =============================================
   PRICING — GROUPS & ITEMS
   ============================================= */

.faq-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
    font-family: 'Georgia', serif;
    color: #333;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 30px;
    color: #000;
}

.faq-support-cta {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.faq-support-cta a { color: #000; }

.pricing-group {
    max-width: 700px;
    margin: 40px auto;
    font-family: 'Georgia', serif;
}

.pricing-category {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 600;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
    color: #333;
}

.service-name { flex: 2; text-align: left; }
.duration { flex: 1; text-align: center; color: #666; font-size: 14px; }

.price {
    flex: 1;
    text-align: right;
    font-weight: 500;
    font-family: 'Georgia', serif;
}

.tier-value { font-family: 'Georgia', serif; }
.pricing-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin: 20px auto;
    max-width: 600px;
    font-style: italic;
    line-height: 1.5;
}

/* Tab panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; }


/* =============================================
   FAQ ACCORDION
   ============================================= */

.faq-list { border-top: 1px solid #000; }
.faq-item { border-bottom: 1px solid #000; }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    text-align: left;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.faq-question:hover { color: #666; }

.icon {
    font-size: 24px;
    font-weight: 300;
    color: #999;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.faq-answer p { padding-bottom: 20px; margin: 0; }

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-item.active .icon { transform: rotate(45deg); }


/* =============================================
   APPOINTMENT STEPS
   ============================================= */

.appointment-section {
    padding: 80px 40px;
    background-color: #fff;
    font-family: 'Georgia', serif;
    scroll-margin-top: 80px;
}

.appointment-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: stretch;
}

.appointment-image { flex: 1; display: flex; }
.appointment-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.appointment-content { flex: 1.5; padding-bottom: 20px; }

.appointment-main-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #333;
}

.step-item { display: flex; margin-bottom: 35px; align-items: flex-start; }

.step-number {
    font-size: 1.5rem;
    color: #ccc;
    font-weight: 300;
    margin-right: 25px;
    min-width: 40px;
}

.step-text h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
    text-decoration: underline;
    font-weight: 600;
}

.step-text p { font-size: 0.95rem; line-height: 1.6; color: #555; margin: 0; }

@media (max-width: 900px) {
    .appointment-container { flex-direction: column; align-items: center; }
    .appointment-image { width: 80%; max-width: 400px; margin-bottom: 30px; }
    .appointment-image img { border-radius: 8px; height: 250px; object-fit: cover; }
    .step-number { font-size: 1.2rem; }
    .appointment-content { padding: 0 10px; }
}


/* =============================================
   PRODUCT CATALOG
   ============================================= */

.catalog-header-area { margin-bottom: 35px; padding-left: 10px; }

.catalog-main-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    line-height: 1;
    color: black;
    margin: 0 0 25px 20px;
    text-align: center;
}

.catalog-shelf-grid {
    display: flex;
    gap: 35px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 20px;
}

.catalog-shelf-grid::-webkit-scrollbar { display: none; }

.catalog-item-card {
    flex: 0 0 33%;
    min-width: 500px;
    height: 450px;
    background: white;
    border-radius: 12px;
    padding: 20px 50px 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.catalog-item-card:hover {
    transform: translateY(-12px);
    background: #F5F0E8;
    border-color: #F5F0E8;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.catalog-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: -10px;
}

.catalog-category-label {
    font-size: 2.8rem;
    font-weight: 800;
    color: #4d4d4d;
    font-family: 'Georgia', serif;
}

.catalog-status-tag {
    background: #4a4a4a;
    color: #fff;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.catalog-item-card:hover .catalog-status-tag { background: #000; transform: scale(1.05); }

.catalog-hero-image {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.catalog-hero-image img {
    max-height: 275px;
    max-width: 80%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.catalog-item-card:hover .catalog-hero-image img { transform: scale(1.08); }

.catalog-rating-row { font-size: 18px; color: #ccc; margin-bottom: 2px; }

.catalog-details-flex { display: flex; justify-content: space-between; align-items: baseline; }

.catalog-item-name { font-size: 22px; font-weight: 800; color: #000; margin: 0; font-family: 'Georgia', serif; }
.catalog-price-display { font-size: 20px; font-weight: 700; color: #000; }
.catalog-brief-desc { font-size: 16px; color: #999; margin-top: 5px; }

/* Scroll controls */
.scroller-controls-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding: 0 10px;
}

.scroller-bar-path {
    flex-grow: 1;
    height: 1px;
    background: #e0e0e0;
    margin-right: 40px;
    position: relative;
}

.scroller-bar-handle {
    position: absolute;
    height: 3px;
    top: -1px;
    width: 25%;
    background: #000;
    transition: left 0.2s ease, height 0.3s ease;
}

.scroller-bar-path:hover .scroller-bar-handle { height: 5px; top: -2px; }

.scroller-arrow-set { display: flex; gap: 8px; }

.scroller-action-btn {
    width: 56px;
    height: 56px;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b7b77;
    transition: all 0.3s ease;
}

.scroller-action-btn:hover { border-color: #000; background-color: #000; color: #fff; transform: scale(1.1); }
.scroller-action-btn svg { width: 22px; height: 22px; stroke-width: 2.5; }

/* Catalog — Tablet */
/* Catalog — Tablet */
@media (max-width: 900px) {
    .catalog-scroller-wrapper { padding: 20px !important; border-radius: 12px; width: 95% !important; margin: 20px auto !important; }
    .catalog-main-title { font-size: 2rem !important; margin: 0 0 20px 0 !important; text-align: center; }
    .catalog-shelf-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; overflow-x: visible !important; padding-bottom: 0 !important; }
    .catalog-item-card { flex: unset !important; min-width: unset !important; width: 100% !important; height: auto !important; min-height: 320px; padding: 16px 20px 24px !important; }
    .catalog-category-label { font-size: 1.8rem !important; }
    .catalog-status-tag { font-size: 10px !important; padding: 6px 12px !important; }
    .catalog-hero-image img { max-height: 160px !important; }
    .catalog-item-name { font-size: 14px !important; }
    .catalog-price-display { font-size: 14px !important; }
    .catalog-brief-desc { font-size: 12px !important; }
    .scroller-controls-box { display: none !important; }
}

/* Catalog — Phone */
@media (max-width: 600px) {
    .catalog-scroller-wrapper { padding: 16px !important; width: 100% !important; border-radius: 8px; margin: 15px auto !important; }
    .catalog-shelf-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
    .catalog-item-card { min-height: 280px; padding: 14px 14px 20px !important; }
    .catalog-category-label { font-size: 1.4rem !important; }
    .catalog-status-tag { font-size: 9px !important; padding: 5px 10px !important; }
    .catalog-hero-image { padding: 5px 0 !important; }
    .catalog-hero-image img { max-height: 120px !important; }
    .catalog-rating-row { font-size: 12px !important; }
    .catalog-item-name { font-size: 12px !important; }
    .catalog-price-display { font-size: 12px !important; }
    .catalog-brief-desc { font-size: 11px !important; margin-top: 3px !important; }
}

/* Catalog — Very small phones */
@media (max-width: 380px) {
    .catalog-shelf-grid { grid-template-columns: 1fr !important; }
    .catalog-item-card { min-height: 240px; }
}
