/* ============================================================
   visa.css  — Exact copy of visa.html inline styles
   Source: visa.html <style> block (lines 16-685)
   ============================================================ */

/* Hero Section */
.visa-hero {
    height: 350px;
    background: linear-gradient(rgba(0, 31, 63, 0.7), rgba(0, 31, 63, 0.7)),
                url('https://images.unsplash.com/photo-1544027993-37dbfe43562a?auto=format&fit=crop&q=80&w=2070');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 100px 20px 0;
    position: relative;
}

.visa-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Visa Cards Section */
.visa-grid-section {
    padding: 70px 8%;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header span {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.visa-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    align-items: stretch;
}

.visa-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.visa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 51, 102, 0.12);
    border-color: rgba(45,156,76,0.3);
}

/* ── Card Image — NO border-radius, proper overflow ── */
.v-card-img {
    height: 155px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.v-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.visa-card:hover .v-card-img img {
    transform: scale(1.07);
}

/* Badge */
.visa-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary);
    color: white;
    padding: 4px 11px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.3px;
}

/* Card Content */
.v-card-content {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.v-card-content h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.visa-features {
    list-style: none;
    margin-bottom: 14px;
    flex-grow: 1;
}

.visa-features li {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.4;
}

.visa-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--secondary);
    flex-shrink: 0;
}

/* ── Price + Apply Button row ── */
.visa-pricing {
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: auto;
}

.v-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 1;
    min-width: 0;
}

.v-price span {
    font-size: 0.68rem;
    color: #aaa;
    font-weight: 500;
    display: block;
}

/* ── Apply Now Button — exact visa.html style ── */
.apply-btn {
    position: relative;
    background: var(--primary);
    color: white;
    padding: 7px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.78rem;
    text-decoration: none;
    transition: all 0.4s ease;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.2px;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Sliding gradient overlay */
.apply-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #003366 0%, #005fa3 50%, #27ae60 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

.apply-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Diagonal shine sweep */
.apply-btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-45deg) translateX(-200%);
    transition: transform 0.8s ease;
    z-index: 0;
}

.apply-btn:hover::after {
    transform: skewX(-45deg) translateX(200%);
}

.apply-btn:hover {
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
    transform: translateY(-2px);
    color: white;
}

/* ── Promo Banner Center ── */
.promo-banner-center {
    background: linear-gradient(135deg, var(--secondary), #1e7d3a);
    padding: 60px 8%;
    border-radius: 40px;
    margin: 80px auto;
    max-width: 90%;
    text-align: center;
    color: white;
    box-shadow: 0 25px 50px rgba(45, 156, 76, 0.2);
    position: relative;
    overflow: hidden;
}

.promo-banner-center::before {
    content: '\f192';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -50px; right: -30px;
    font-size: 15rem;
    opacity: 0.1;
}

.promo-banner-center h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.promo-banner-center p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 850px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.promo-center-btn {
    background: white;
    color: var(--secondary);
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.promo-center-btn:hover {
    transform: translateY(-5px);
    background: var(--primary);
    color: white;
}

/* ── Process Section ── */
.process-section {
    padding: 100px 8%;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.step-box {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 25px;
    transition: 0.4s;
    position: relative;
    z-index: 2;
}

.step-box:hover .step-icon {
    border-color: var(--secondary);
    background: var(--secondary);
    color: white;
    transform: rotate(360deg);
}

.step-number {
    position: absolute;
    top: -10px; right: -10px;
    background: var(--accent);
    color: white;
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

/* ── Consultation Section ── */
.expert-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, var(--primary) 0%, #001a33 100%);
    color: white;
    border-radius: 40px;
    margin: 0 8% 100px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.expert-text {
    flex: 1;
}

.expert-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.expert-form {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: white;
    font-family: inherit;
}

.form-group select option {
    background: var(--primary);
}

.form-btn {
    width: 100%;
    padding: 18px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.form-btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(45, 156, 76, 0.3);
}

/* ── Trust Stats Section ── */
.trust-stats-section {
    padding: 80px 8%;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 70px;
}

.trust-stats-img {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,51,102,0.12);
    min-width: 0;
}

.trust-stats-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.trust-stats-img:hover img {
    transform: scale(1.03);
}

.trust-stats-content {
    flex: 1;
    min-width: 0;
}

.trust-stats-content .tag {
    display: inline-block;
    background: rgba(45,156,76,0.1);
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.trust-stats-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.25;
}

.trust-stats-content > p {
    color: #666;
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.stat-box {
    background: #f8fbff;
    border-radius: 16px;
    padding: 22px 20px;
    border: 1px solid rgba(0,51,102,0.07);
    transition: 0.3s;
}

.stat-box:hover {
    background: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,51,102,0.15);
}

.stat-box:hover .stat-num,
.stat-box:hover .stat-label {
    color: white;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
    transition: 0.3s;
}

.stat-num span {
    color: var(--secondary);
}

.stat-label {
    font-size: 0.82rem;
    color: #888;
    font-weight: 500;
    transition: 0.3s;
}

/* ── Document Checklist Section ── */
.doc-checklist-section {
    padding: 80px 8%;
    background: #f8fbff;
}

.doc-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.doc-tab-btn {
    padding: 9px 22px;
    border-radius: 50px;
    border: 2px solid #e5eaf2;
    background: white;
    color: #555;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
    font-family: 'Outfit', sans-serif;
}

.doc-tab-btn.active,
.doc-tab-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.doc-tab-content {
    display: none;
    animation: fadeInTab 0.35s ease;
}

.doc-tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.doc-col h4 {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8eef7;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-col h4 i {
    color: var(--secondary);
}

.doc-list {
    list-style: none;
}

.doc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #f0f4f8;
    line-height: 1.5;
}

.doc-list li:last-child {
    border-bottom: none;
}

.doc-list li i {
    color: var(--secondary);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.doc-flag {
    font-size: 1.5rem;
}

.doc-note-box {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0,51,102,0.04), rgba(45,156,76,0.06));
    border-left: 4px solid var(--secondary);
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.doc-note-box i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.doc-note-box p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

.doc-note-box p strong {
    color: var(--primary);
}

/* ── Visa Intelligence Section ── */
.visa-intelligence {
    padding: 60px 8%;
    background: #fff;
}

.visa-intelligence .visa-card {
    padding: 30px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.06);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .expert-section { flex-direction: column; text-align: center; margin: 0 4% 60px; }
    .visa-hero h1 { font-size: 2.5rem; }
    .trust-stats-section { flex-direction: column; gap: 40px; }
    .trust-stats-img img { height: 260px; }
    .doc-tab-content.active { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .visa-hero h1 { font-size: 2rem; }
    .visa-hero { padding: 80px 20px 0; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .expert-section { margin: 0 0 60px; border-radius: 0; }
}

/* ── Visa Modal Styles ── */
.visa-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 31, 63, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.visa-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.visa-modal-content {
    background: white;
    width: 100%;
    max-width: 850px;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
    transform: translateY(40px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.visa-modal-overlay.active .visa-modal-content {
    transform: translateY(0);
}

.visa-modal-left {
    flex: 1;
    background: linear-gradient(rgba(0,51,102,0.8), rgba(0,51,102,0.8)), url('https://images.unsplash.com/photo-1544027993-37dbfe43562a?auto=format&fit=crop&q=80&w=800');
    background-size: cover;
    background-position: center;
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visa-modal-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.visa-modal-left p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.visa-modal-right {
    flex: 1.2;
    padding: 40px;
    position: relative;
}

.visa-form-title {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.v-form-group {
    margin-bottom: 18px;
}

.v-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.v-input-wrapper {
    position: relative;
}

.v-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aab0bc;
    transition: 0.3s;
}

.v-input-wrapper input, .v-input-wrapper select {
    width: 100%;
    padding: 12px 15px 12px 42px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: 0.3s;
    background: #fcfdfe;
}

.v-input-wrapper input:focus, .v-input-wrapper select:focus {
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
}

.v-input-wrapper input:focus + i {
    color: var(--secondary);
}

.visa-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.4s;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.2);
}

.visa-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(39, 174, 96, 0.35);
}

.close-visa-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f5f7f9;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: 0.3s;
    z-index: 10;
}

.close-visa-modal:hover {
    background: #eee;
    transform: rotate(90deg);
}

/* Success Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 20, 40, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    padding: 50px;
    border-radius: 40px;
    text-align: center;
    max-width: 550px;
    width: 100%;
    position: relative;
    transform: translateY(40px);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.success-icon {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 25px;
}

.modal-content h2 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.modal-content p {
    color: #666;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary-modal {
    background: var(--secondary);
    color: white;
    padding: 14px 30px;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary-modal {
    background: #f5f7f9;
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-modal:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(39, 174, 96, 0.2); }
.btn-secondary-modal:hover { background: #eee; transform: translateY(-3px); }

@media (max-width: 768px) {
    .visa-modal-content { flex-direction: column; }
    .visa-modal-left { padding: 30px; }
    .visa-modal-right { padding: 30px; }
}
