/* =============================================
   RESET & BASE
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
    margin: 0;
}

/* Company name link used across all listing tables */
.company-cell-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.company-cell-link:hover span {
    color: #87b942;
    text-decoration: underline;
}

/* =============================================
   BREADCRUMB (shared across public pages)
   ============================================= */
.ug-breadcrumb {
    background: #f8f9f4;
    border-bottom: 1px solid #eef2e6;
    padding: 9px 0;
    font-family: 'Inter', sans-serif;
}
.ug-bc-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.bc-link {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}
.bc-link:hover { color: #87b942; }
.bc-sep { color: #ccc; font-size: 9px; display: flex; align-items: center; }
.bc-current {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    max-width: 340px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media (max-width: 480px) {
    .ug-bc-inner { padding: 0 14px; gap: 4px; }
    .bc-link, .bc-current { font-size: 12px; }
    .bc-current { max-width: 200px; }
}

/* =============================================
   FAQ SECTION (shared across public pages)
   ============================================= */
.ug-faq-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 24px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.faq-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #111;
}

.faq-title span {
    color: #87b942;
}

.faq-container {
    text-align: left;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: #87b942;
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }

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

.faq-item.active {
    border-color: #c8e49a;
    box-shadow: 0 4px 16px rgba(135,185,66,0.1);
}

.faq-item.active .faq-question {
    color: #1a1a1a;
}

.faq-answer {
    display: none;
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Extra FAQ items animated reveal */
.faq-extra-items {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-extra-items.open {
    max-height: 2000px;
}

.view-all-btn {
    background: #87b942;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
    font-family: inherit;
}

.view-all-btn:hover {
    background: #6e9735;
}

@media (max-width: 480px) {
    .faq-title { font-size: 22px; }
    .faq-question { font-size: 14px; padding: 15px 16px; }
    .faq-answer { padding: 0 16px 16px; font-size: 14px; }
}

/* =============================================
   FOOTER
   ============================================= */
.main-footer {
    background-color: #000;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: 'Inter', sans-serif;
}

.main-footer .footer-bottom {
    border-top: 1px solid #222;
    margin-top: 20px;
    padding-top: 16px;
    text-align: center;
}

.main-footer .copyright {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    color: #555;
    font-size: 12px;
}

.main-footer .disclaimer {
    margin-top: 12px;
    color: #444;
    font-size: 10px;
    line-height: 1.5;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.main-footer .disclaimer strong {
    color: #666;
}

.main-footer .footer-top {
    text-align: center;
    margin-bottom: 40px;
}

.main-footer .footer-logo img {
    height: 40px;
}

.main-footer .tagline {
    font-size: 12px;
    color: #888;
    font-style: italic;
    margin-top: -5px;
}

/* 3-Column Layout */
.main-footer .footer-content {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 50px;
}

.main-footer .footer-column {
    flex: 1;
}

/* Column Headers */
.main-footer .footer-column h3 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 20px;
}

/* Link Lists */
.main-footer .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-footer .footer-links li {
    margin-bottom: 10px;
}

.main-footer .footer-links li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
}

.main-footer .footer-links li a:hover {
    color: #87b942;
}

/* Address Box */
.main-footer .address-box {
    margin-bottom: 14px;
}

.main-footer .address-box h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
}

.main-footer .address-box p {
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
    margin: 0;
}

/* Social Icons - Centered */
.main-footer .footer-social {
    max-width: 1100px;
    margin: 30px auto 0;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.main-footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.main-footer .social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s;
}

.main-footer .social-btn:nth-child(1) { background: #25D366; }
.main-footer .social-btn:nth-child(2) { background: #1DA1F2; }
.main-footer .social-btn:nth-child(3) { background: #3B5998; }
.main-footer .social-btn:nth-child(4) { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.main-footer .social-btn:nth-child(5) { background: #0088CC; }
.main-footer .social-btn:nth-child(6) { background: #0077B5; }
.main-footer .social-btn:nth-child(7) { background: #FF0000; }
.main-footer .social-btn:nth-child(8) { background: #666666; }

.main-footer .social-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.main-footer .social-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* Copyright */
.main-footer .copyright {
    border-top: 1px solid #222;
    margin-top: 20px;
    padding-top: 16px;
    text-align: center;
    color: #555;
    font-size: 12px;
}

@media (max-width: 768px) {
    .main-footer .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    .main-footer { padding: 40px 16px 16px; }
}

@media (max-width: 480px) {
    .main-footer { padding: 30px 16px 16px; }
    .main-footer .footer-content { gap: 20px; }
    .main-footer .social-icons { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .main-footer .footer-links li a { font-size: 13px; }
    .main-footer .disclaimer { font-size: 9px; }
}
