/* Styles for static pages like About, FAQ, Contact */

/* ==========================================================================
   About, FAQ, Contact Pages
   ========================================================================== */

.tagus-value-about-page,
.tagus-value-faq-page,
.tagus-value-contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.tagus-value-about-page h1,
.tagus-value-faq-page h1,
.tagus-value-contact-page h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    text-align: center;
}

.lead {
    font-size: 20px;
    color: #7F8C8D;
    text-align: center;
    margin-bottom: 40px;
}

/* About Page */
.tv-about-sections {
    margin-top: 40px;
}

.tv-about-section {
    margin-bottom: 40px;
}

.tv-about-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 20px;
}

.tv-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tv-feature {
    text-align: center;
    padding: 30px;
    background: #F8F9FA;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tv-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tv-feature i {
    font-size: 48px;
    color: #1ABC9C;
    margin-bottom: 20px;
}

.tv-feature h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 12px;
}

.tv-feature p {
    color: #7F8C8D;
    margin: 0;
}

/* FAQ Page */
.tv-faq-search {
    max-width: 600px;
    margin: 0 auto 30px;
}

.tv-faq-search input {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    border: 2px solid #E0E6ED;
    border-radius: 30px;
    background: #F8F9FA;
}

.tv-faq-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tv-faq-category {
    padding: 10px 20px;
    background: #F8F9FA;
    border: 2px solid transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #7F8C8D;
}

.tv-faq-category:hover {
    background: #E8ECEF;
}

.tv-faq-category.active {
    background: #1ABC9C;
    color: white;
    border-color: #1ABC9C;
}

.tv-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.tv-faq-item {
    margin-bottom: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tv-faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #2C3E50;
    transition: all 0.3s ease;
}

.tv-faq-question:hover {
    background: #F8F9FA;
}

.tv-faq-icon {
    font-size: 20px;
    color: #1ABC9C;
    transition: transform 0.3s ease;
}

.tv-faq-icon.rotated {
    transform: rotate(45deg);
}

.tv-faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: #5D6D7E;
}

.tv-faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* AI Assistant */
.tv-ai-assistant {
    max-width: 600px;
    margin: 60px auto 0;
    padding: 30px;
    background: #F8F9FA;
    border-radius: 12px;
    text-align: center;
}

.tv-ai-assistant h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 12px;
}

.tv-ai-form {
    margin-top: 20px;
}

.input-group {
    display: flex;
    gap: 8px;
}

.tv-ai-response {
    margin-top: 20px;
    text-align: left;
}

.ai-answer {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1ABC9C;
}

.ai-answer i {
    color: #1ABC9C;
    margin-right: 8px;
}

#ai-response-container .ai-answer {
    background-color: #f8f9fa;
    border: 1px solid #e0e6ed;
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
}

/* Contact Page */
.tv-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.tv-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tv-contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.tv-contact-card i {
    font-size: 36px;
    color: #1ABC9C;
    margin-bottom: 16px;
}

.tv-contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 12px;
}

.tv-contact-card p {
    margin: 0;
    color: #5D6D7E;
}

.tv-contact-card a {
    color: #1ABC9C;
    text-decoration: none;
}

.tv-contact-card a:hover {
    text-decoration: underline;
}

.tv-contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tv-contact-form-wrapper h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 24px;
}

.tv-contact-map {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tv-contact-map iframe {
    display: block;
}

.tv-contact-socials {
    text-align: center;
}

.tv-contact-socials h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 20px;
}

.tv-social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.tv-social-link {
    width: 48px;
    height: 48px;
    background: #F8F9FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7F8C8D;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tv-social-link:hover {
    background: #1ABC9C;
    color: white;
    transform: translateY(-4px);
}
