/* ============================================
   Visa Detail Page (Singapore, etc.)
   ============================================ */

.visa-detail-hero {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.visa-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visa-detail-content {
    padding: 2.5rem 0;
    background: var(--white);
}

.visa-article {
    max-width: 100%;
}

.visa-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.visa-article > p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.visa-section {
    margin-bottom: 2rem;
}

.visa-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.visa-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visa-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.visa-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.visa-numbered {
    counter-reset: item;
}

.visa-numbered li {
    padding-left: 2rem;
}

.visa-numbered li:before {
    content: counter(item) ".";
    counter-increment: item;
    background: none;
    font-weight: 600;
    color: var(--primary-color);
}

.visa-fees-table {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius);
}

.visa-fees-table th,
.visa-fees-table td {
    padding: 0.75rem 1rem;
}

.visa-fees-table thead th {
    background: #F8F9FA;
    font-weight: 600;
}

.visa-faq .faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.visa-faq .faq-item:last-child {
    border-bottom: none;
}

.visa-faq .faq-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.visa-faq .faq-item p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.visa-footer-links {
    font-size: 0.9375rem;
}

.visa-footer-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.visa-footer-links a:hover {
    text-decoration: underline;
}

/* Sidebar */
.visa-sidebar {
    padding-top: 0;
}

.visa-sidebar.sticky-top {
    top: 100px;
}

.visa-enquiry-form {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    padding: 1.75rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.visa-enquiry-form .form-control,
.visa-enquiry-form .form-select {
    background: var(--white);
    border: none;
    padding: 0.6rem 0.85rem;
    border-radius: 0.5rem;
}

.visa-enquiry-form .form-control:focus,
.visa-enquiry-form .form-select:focus {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.visa-enquiry-form .btn-primary {
    background: var(--primary-color);
    border: none;
    font-weight: 600;
}

.visa-enquiry-form .btn-primary:hover {
    background: var(--primary-dark);
}

.visa-call-specialist {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    padding: 1.75rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    color: var(--white);
}

.visa-call-specialist h4 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.visa-call-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.visa-call-specialist p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.visa-phone-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.visa-phone-number:hover {
    color: var(--white);
}

/* Other Visa Services - Card fixes */
body .similar-packages .similar-package-card {
    text-decoration: none;
}

body .similar-packages .similar-package-card h5 {
    color: var(--text-dark);
    text-decoration: none;
}

body .similar-packages .similar-package-card p {
    color: var(--text-light);
}

body .similar-packages .similar-package-card:hover h5,
body .similar-packages .similar-package-card:hover p {
    text-decoration: none;
}
