/**
 * SEO Components Styles
 * Styles for Quick Facts, Breadcrumbs, Related Packages, and FAQ sections
 */

/* ==========================================================================
   Quick Facts Section
   ========================================================================== */

.tk-quick-facts {
    background: var(--tk-bg-main, #F5F2ED);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.tk-quick-facts__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--tk-text-main, #2C2B28);
}

.tk-quick-facts__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0;
}

.tk-quick-facts__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tk-quick-facts__item--full {
    grid-column: 1 / -1;
}

.tk-quick-facts__item dt {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tk-gold, #B8860B);
    font-weight: 600;
}

.tk-quick-facts__item dd {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--tk-text-main, #2C2B28);
}

.tk-quick-facts__updated {
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #666;
}

@media (max-width: 480px) {
    .tk-quick-facts__list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.tk-breadcrumbs {
    padding: 1rem 0;
    font-size: 0.875rem;
}

.tk-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tk-breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tk-breadcrumbs__item:not(:last-child)::after {
    content: '›';
    color: #999;
}

.tk-breadcrumbs__item a {
    color: var(--tk-gold, #B8860B);
    text-decoration: none;
    transition: color 0.2s;
}

.tk-breadcrumbs__item a:hover {
    color: var(--tk-text-main, #2C2B28);
    text-decoration: underline;
}

.tk-breadcrumbs__item--current {
    color: var(--tk-text-main, #2C2B28);
}

/* ==========================================================================
   Related Packages
   ========================================================================== */

.tk-related-packages {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tk-related-packages__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: var(--tk-text-main, #2C2B28);
}

.tk-related-packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tk-related-packages__item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tk-related-packages__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.tk-related-packages__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.tk-related-packages__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.tk-related-packages__item:hover .tk-related-packages__image img {
    transform: scale(1.05);
}

.tk-related-packages__name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    padding: 1rem 1rem 0.5rem;
}

.tk-related-packages__name a {
    color: var(--tk-text-main, #2C2B28);
    text-decoration: none;
}

.tk-related-packages__name a:hover {
    color: var(--tk-gold, #B8860B);
}

.tk-related-packages__meta {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.tk-related-packages__price {
    color: var(--tk-gold, #B8860B);
    font-weight: 600;
}

.tk-related-packages__more {
    text-align: center;
    margin: 2rem 0 0;
}

@media (max-width: 768px) {
    .tk-related-packages__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tk-related-packages__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.tk-faq {
    margin: 3rem 0;
}

.tk-faq__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: var(--tk-text-main, #2C2B28);
}

.tk-faq__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tk-faq__item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.tk-faq__question {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    padding: 1rem 1.5rem;
    background: var(--tk-bg-main, #F5F2ED);
    color: var(--tk-text-main, #2C2B28);
}

.tk-faq__answer {
    padding: 1rem 1.5rem;
    color: #444;
    line-height: 1.6;
}

.tk-faq__answer p:first-child {
    margin-top: 0;
}

.tk-faq__answer p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Content Meta (Timestamps)
   ========================================================================== */

.tk-content-meta {
    font-size: 0.8125rem;
    color: #666;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tk-content-meta time {
    display: inline;
}

/* ==========================================================================
   Mobile Contact Buttons
   ========================================================================== */

.tk-mobile-contact-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem;
    gap: 0.75rem;
}

.tk-mobile-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.tk-mobile-contact-btn--call {
    background: var(--tk-gold, #B8860B);
    color: white;
}

.tk-mobile-contact-btn--call:hover {
    background: #9a7209;
}

.tk-mobile-contact-btn--whatsapp {
    background: #25D366;
    color: white;
}

.tk-mobile-contact-btn--whatsapp:hover {
    background: #1da851;
}

@media (max-width: 768px) {
    .tk-mobile-contact-buttons {
        display: flex;
    }

    /* Add padding to body to account for fixed bottom bar */
    body {
        padding-bottom: 70px;
    }
}

/* ==========================================================================
   Content Wrapper (Semantic)
   This is a semantic wrapper for Schema.org markup, NOT for layout constraints.
   For constrained-width content (like blog posts), use .tk-article-content instead.
   ========================================================================== */

.tk-content-wrapper {
    width: 100%;
    max-width: 100%;
}

/* For blog posts and articles where constrained width is desired */
.tk-article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}