/* GO 111 Zone Check — Orange Theme #FF6725 */

/* ── Hero ── */
.go1-search-hero {
    background: linear-gradient(135deg, #ff6725 0%, #ff8f5c 50%, #ffb88c 100%);
    padding: 32px 28px 22px;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}
.go1-search-hero-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.go1-search-hero-decoration::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.go1-search-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.go1-search-hero-badge i {
    margin-right: 5px;
}
.go1-search-hero-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
}
.go1-search-hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin: 0;
}
.go1-search-hero-desc a {
    color: #ffe0b2;
    text-decoration: underline;
    font-weight: 500;
}
.go1-search-hero-desc a:hover {
    color: #fff;
    text-decoration: none;
}
.go1-search-hero + .go1-search-card {
    border-radius: 0 0 20px 20px !important;
}

/* ── Search / Question Card ── */
.go1-search-card {
    padding: 28px;
}
.go1-questions-wrapper {
    max-width: 600px;
    margin: 0 auto;
}
.go1-question-group {
    margin-bottom: 24px;
}
.go1-question-group:last-of-type {
    margin-bottom: 0;
}
.go1-question-label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}
.go1-question-label .go1-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6725 0%, #ff8a50 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-right: 8px;
}
.go1-question-group .nice-select {
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    padding: 14px 40px 14px 20px;
    font-size: 14px;
    color: #333;
    height: auto;
    line-height: 1.4;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.go1-question-group .nice-select:focus,
.go1-question-group .nice-select.open {
    border-color: #FF6725;
    box-shadow: 0 0 0 4px rgba(255,103,37,0.12);
}
.go1-question-group .nice-select .list {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    margin-top: 4px;
}
.go1-question-group .nice-select .option {
    padding: 10px 20px;
    font-size: 14px;
    min-height: auto;
    line-height: 1.5;
}
.go1-question-group .nice-select .option:hover,
.go1-question-group .nice-select .option.selected {
    background: #fff5f0;
    color: #ff6725;
    font-weight: 600;
}
.go1-btn-wrapper {
    text-align: center;
    margin-top: 20px;
}
.go1-check-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6725 0%, #ff8a50 100%);
    color: #fff;
    border: none;
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}
.go1-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,103,37,0.25);
}
.go1-check-btn i {
    margin-right: 6px;
}
.go1-check-btn:disabled {
    opacity: 0.5;
    transform: none;
    box-shadow: none;
}

/* ── Result Area ── */
.go1-result {
    display: none;
    margin-top: 28px;
    border-radius: 16px;
    padding: 28px;
    text-align: left;
    animation: go1-fadein 0.4s ease;
}
@keyframes go1-fadein {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.go1-result.go1-green {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
}
.go1-result.go1-yellow {
    background: #fff8e1;
    border: 1px solid #ffe082;
}
.go1-result.go1-red {
    background: #fbe9e7;
    border: 1px solid #ef9a9a;
}
.go1-result.go1-blue {
    background: #e3f2fd;
    border: 1px solid #90caf9;
}
.go1-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.go1-green .go1-result-badge {
    background: #2e7d32;
    color: #fff;
}
.go1-yellow .go1-result-badge {
    background: #f9a825;
    color: #fff;
}
.go1-red .go1-result-badge {
    background: #c62828;
    color: #fff;
}
.go1-blue .go1-result-badge {
    background: #1565c0;
    color: #fff;
}
.go1-result-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
}
.go1-green .go1-result-title { color: #1b5e20; }
.go1-yellow .go1-result-title { color: #e65100; }
.go1-red .go1-result-title { color: #b71c1c; }
.go1-blue .go1-result-title { color: #0d47a1; }
.go1-result-text {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 14px;
}
.go1-result-actions {
    list-style: none;
    padding: 0;
    margin: 0;
}
.go1-result-actions li {
    position: relative;
    padding: 6px 0 6px 22px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}
.go1-result-actions li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 13px;
}
.go1-green .go1-result-actions li::before { color: #2e7d32; }
.go1-yellow .go1-result-actions li::before { color: #f9a825; }
.go1-red .go1-result-actions li::before { color: #c62828; }
.go1-blue .go1-result-actions li::before { color: #1565c0; }

/* ── Info Cards Grid ── */
.go1-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.go1-info-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}
.go1-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.go1-info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FF6725;
    margin-bottom: 14px;
}
.go1-info-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}
.go1-info-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ── Reference Table ── */
.go1-ref-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    font-size: 14px;
}
.go1-ref-table thead th {
    background: #fff5f0;
    color: #e65100;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 14px 18px;
    text-align: left;
}
.go1-ref-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    line-height: 1.6;
}
.go1-ref-table tbody tr:last-child td {
    border-bottom: none;
}
.go1-ref-table tbody tr:hover {
    background: #fafafa;
}

/* ── Timeline / Visual ── */
.go1-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 30px 0;
    position: relative;
}
.go1-timeline-segment {
    text-align: center;
    position: relative;
}
.go1-timeline-bar {
    height: 8px;
    border-radius: 4px;
    min-width: 120px;
}
.go1-timeline-bar.red    { background: linear-gradient(90deg, #ef5350, #e53935); }
.go1-timeline-bar.yellow { background: linear-gradient(90deg, #ffa726, #fb8c00); }
.go1-timeline-bar.green  { background: linear-gradient(90deg, #66bb6a, #43a047); }
.go1-timeline-bar.blue   { background: linear-gradient(90deg, #42a5f5, #1e88e5); }
.go1-timeline-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-top: 8px;
}
.go1-timeline-year {
    position: absolute;
    top: -22px;
    font-size: 11px;
    font-weight: 700;
    color: #333;
    background: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}
.go1-timeline-year.left  { left: 0; }
.go1-timeline-year.right { right: 0; }
.go1-timeline-year.mid   { left: 50%; transform: translateX(-50%); }

/* ── Affected Areas ── */
.go1-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.go1-area-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff5f0;
    border: 1px solid #ffe0cc;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s;
}
.go1-area-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,103,37,0.12);
}
.go1-area-tag i {
    color: #FF6725;
    font-size: 14px;
}

/* ── FAQ ── */
.go1-faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.go1-faq-item.open {
    border-color: #ff6725;
}
.go1-faq-question {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    background: #fafafa;
}
.go1-faq-question i {
    transition: transform 0.3s;
    color: #ff6725;
}
.go1-faq-item.open .go1-faq-question i {
    transform: rotate(180deg);
}
.go1-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}
.go1-faq-item.open .go1-faq-answer {
    padding: 0 20px 16px;
    max-height: 600px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .go1-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .go1-search-hero-title {
        font-size: 20px;
    }
    .go1-info-grid {
        grid-template-columns: 1fr;
    }
    .go1-timeline {
        flex-direction: column;
        gap: 10px;
    }
    .go1-timeline-bar {
        min-width: 100%;
        height: 6px;
    }
    .go1-timeline-year {
        position: static;
        display: block;
        margin-bottom: 4px;
    }
    .go1-areas-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .go1-search-card {
        padding: 20px 16px;
    }
    .go1-result {
        padding: 20px;
    }
}
