/* ============================================================
   TMH COMPLETE STYLESHEET v3.0
   Calculator + Services + Packages + FAQs + Testimonials
   + Occasions + Contact Form + Single Service Page + Summary
   ============================================================ */

/* === RESET & UTILITIES === */
.tmh-hidden-select, .tmh-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    border: 0 !important;
}

/* === GRID SYSTEM === */
.tmh-grid {
    display: grid;
    gap: 24px;
    margin: 30px 0;
}
.tmh-grid-2 { grid-template-columns: repeat(2, 1fr); }
.tmh-grid-3 { grid-template-columns: repeat(3, 1fr); }
.tmh-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) {
    .tmh-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .tmh-grid-2, .tmh-grid-3, .tmh-grid-4 {
        grid-template-columns: 1fr !important;
    }
}

/* === CALCULATOR === */
.tmh-calculator {
    max-width: 960px;
    margin: 20px auto;
    font-family: inherit;
}
.tmh-calc-loading {
    text-align: center;
    padding: 50px 20px;
    font-size: 16px;
    color: #777;
}
.tmh-calc-error {
    background: #fff5f5;
    border: 1px solid #ff8787;
    color: #e03131;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}
.tmh-calc-step {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.tmh-calc-step h3 {
    margin: 0 0 16px 0;
    font-size: 17px;
    font-weight: 700;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    color: #111;
}

/* Service Cards inside Calculator */
.tmh-service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}
.tmh-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: 13px;
}
.tmh-card:hover {
    border-color: #888;
    transform: translateY(-2px);
}
.tmh-card.tmh-active {
    border-color: #111;
    background: #111;
    color: #fff;
}
.tmh-card img {
    max-width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 8px;
    display: block;
}
.tmh-card-title {
    display: block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 3px;
}
.tmh-card-price {
    display: block;
    font-size: 11px;
    opacity: 0.75;
}

/* Pills (Packages & Durations) */
.tmh-package-cards, .tmh-duration-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tmh-pill {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s ease;
}
.tmh-pill:hover { border-color: #888; }
.tmh-pill.tmh-active {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Discount Tiers */
.tmh-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.tmh-tier {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
    background: #f1f1f1;
    color: #888;
}
.tmh-tier.tmh-tier-active {
    background: #ebfbee;
    color: #2b8a3e;
    font-weight: 700;
}

/* Add-ons */
.tmh-addons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}
.tmh-addon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 6px;
    cursor: pointer;
    background: #fafafa;
    transition: background 0.2s;
}
.tmh-addon-item:hover { background: #f0f0f0; }
.tmh-addon-item input { margin: 0; }
.tmh-addon-item span { font-size: 13px; }

/* Summary */
.tmh-summary { background: #fdfdfd; }
.tmh-summary-lines {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.tmh-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 5px 0;
}
.tmh-line small {
    color: #2b8a3e;
    font-weight: 700;
}
.tmh-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}
.tmh-summary-row.tmh-discount { color: #2b8a3e; }
.tmh-summary-row.tmh-total {
    font-size: 20px;
    font-weight: 800;
    border-top: 2px solid #111;
    padding-top: 12px;
    margin-top: 10px;
}

/* Booking Form */
.tmh-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}
.tmh-form-full { grid-column: 1 / -1; }
.tmh-booking-form label {
    font-size: 12px;
    font-weight: 700;
    display: block;
    color: #333;
}
.tmh-booking-form input,
.tmh-booking-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    margin-top: 4px;
    font-family: inherit;
    font-size: 14px;
}
.tmh-booking-form input:focus,
.tmh-booking-form textarea:focus {
    outline: none;
    border-color: #111;
}
.tmh-submit-btn {
    width: 100%;
    padding: 14px;
    background: #111;
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}
.tmh-submit-btn:hover { background: #000; }
.tmh-submit-btn:disabled { opacity: 0.5; cursor: wait; }

/* === HOMEPAGE SERVICE CARDS (Clickable) === */
.tmh-service-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tmh-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.tmh-service-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1;
}
.tmh-service-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.tmh-service-card__content {
    padding: 20px;
}
.tmh-service-card__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}
.tmh-service-card__included {
    font-size: 13px;
    margin-bottom: 12px;
    color: #555;
}
.tmh-service-card__included strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}
.tmh-service-card__included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tmh-service-card__included li {
    padding: 2px 0;
    color: #666;
}
.tmh-service-card__price {
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}
.tmh-service-card__price strong {
    color: #111;
    font-size: 20px;
}
.tmh-service-card__cta {
    color: #0066cc;
    font-weight: 600;
    font-size: 13px;
}
.tmh-service-card__book {
    display: block;
    text-align: center;
    padding: 14px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
}
.tmh-service-card__book:hover {
    background: #333;
    color: #fff;
}

/* === PACKAGE CARDS === */
.tmh-package-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tmh-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.tmh-package-card--bronze { border-color: #cd7f32; }
.tmh-package-card--silver { border-color: #c0c0c0; }
.tmh-package-card--gold { border-color: #d4af37; }
.tmh-package-card--platinum {
    border-color: #888;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
}
.tmh-package-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 5px 16px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tmh-package-card--bronze .tmh-package-card__badge { background: #cd7f32; }
.tmh-package-card--silver .tmh-package-card__badge { background: #a0a0a0; }
.tmh-package-card--gold .tmh-package-card__badge { background: #d4af37; color: #111; }
.tmh-package-card--platinum .tmh-package-card__badge { background: #555; }
.tmh-package-card__title {
    font-size: 22px;
    margin: 10px 0 5px;
    font-weight: 800;
    color: #111;
}
.tmh-package-card__duration {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}
.tmh-package-card__price {
    font-size: 40px;
    font-weight: 900;
    color: #111;
    margin: 15px 0;
}
.tmh-package-card__features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}
.tmh-package-card__features li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    border-bottom: 1px dashed #eee;
}
.tmh-package-card__btn {
    display: inline-block;
    padding: 12px 30px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 15px;
    transition: background 0.2s;
}
.tmh-package-card__btn:hover {
    background: #333;
    color: #fff;
}

/* === FAQ ACCORDION === */
.tmh-faq-container {
    max-width: 800px;
    margin: 30px auto;
}
.tmh-faq-item {
    border-bottom: 1px solid #eee;
    padding: 0;
}
.tmh-faq-item summary {
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    color: #222;
}
.tmh-faq-item summary::-webkit-details-marker { display: none; }
.tmh-faq-item summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 300;
    color: #888;
}
.tmh-faq-item[open] summary::after { content: "−"; }
.tmh-faq-content {
    padding: 0 0 16px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* === TESTIMONIALS === */
.tmh-testi-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 24px;
    transition: transform 0.2s;
}
.tmh-testi-card:hover { transform: translateY(-3px); }
.tmh-testi-rating {
    color: #ffb400;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.tmh-testi-quote {
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}
.tmh-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tmh-testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.tmh-testi-name {
    font-weight: 700;
    font-size: 14px;
    color: #111;
}
.tmh-testi-event {
    font-size: 12px;
    color: #888;
}

/* === OCCASION CARDS === */
.tmh-occasion-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.tmh-occasion-card:hover {
    transform: translateY(-6px);
}
.tmh-occasion-card__image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.tmh-occasion-card__title {
    padding: 16px;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    background: #111;
    color: #fff;
}

/* === CONTACT FORM === */
.tmh-contact-form {
    max-width: 600px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.tmh-contact-form h3 {
    margin: 0 0 20px;
    text-align: center;
    font-size: 18px;
}
.tmh-contact-form .tmh-form-grid {
    margin-bottom: 15px;
}
.tmh-contact-form label {
    font-size: 12px;
    font-weight: 700;
    display: block;
}
.tmh-contact-form input,
.tmh-contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    margin-top: 4px;
    font-family: inherit;
    font-size: 14px;
}

/* === LOAD MORE BUTTON === */
.tmh-load-more-btn {
    padding: 12px 32px;
    background: #fff;
    border: 2px solid #111;
    color: #111;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.tmh-load-more-btn:hover {
    background: #111;
    color: #fff;
}

/* === SINGLE SERVICE PAGE === */
.tmh-single-service {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
}
.tmh-single-service__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}
@media (max-width: 768px) {
    .tmh-single-service__hero { grid-template-columns: 1fr; }
}
.tmh-single-service__image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.tmh-single-service__info h1 {
    font-size: 32px;
    margin: 0 0 15px;
}
.tmh-single-service__price {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}
.tmh-single-service__price strong {
    color: #111;
    font-size: 28px;
}
.tmh-single-service__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}
.tmh-single-service__included {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}
.tmh-single-service__included li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
}
.tmh-single-service__section {
    margin: 60px 0;
}
.tmh-single-service__section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #111;
}

/* === BOOKING SUMMARY PAGE === */
.tmh-booking-summary-page {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.tmh-booking-summary-page h1 {
    text-align: center;
    color: #2b8a3e;
    font-size: 28px;
}
.tmh-booking-summary-page h2 {
    font-size: 18px;
    margin: 25px 0 10px;
    border-bottom: 2px solid #111;
    padding-bottom: 6px;
}
.tmh-booking-details table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}
.tmh-booking-details table td {
    padding: 10px 8px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}
.tmh-booking-details table td:first-child {
    font-weight: 700;
    color: #666;
    width: 40%;
}
.tmh-total-row td {
    font-size: 18px !important;
    font-weight: 800 !important;
    background: #f9f9f9;
}