/* Visa Page Styles */
.visa-page {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding-bottom: 4rem;
}

/* Hero Section */
.visa-hero {
    background-color: #0a1a44; /* Dark Blue */
    color: white;
    padding: 4rem 1rem;
    text-align: left;
}

.visa-hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.visa-hero-content {
    max-width: 1000px;
    width: 100%;
}

.visa-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    white-space: nowrap;
}

.visa-hero p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 900px;
}

.visa-hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 1rem;
}

.visa-hero-icon {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1); /* Make white if it's not already */
}

.visa-hero-btn {
    background-color: white;
    color: #0a1a44;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.visa-hero-btn:hover {
    transform: translateY(-3px);
    color: #0a1a44;
}

/* Intro Section */
.visa-intro {
    padding: 4rem 1rem;
    text-align: center;
}

.visa-intro-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    flex-wrap: wrap;
}

.visa-logo {
    height: 50px;
    width: auto;
}

.visa-intro h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a1a44;
    text-align: left;
    margin: 0;
    line-height: 1.3;
}

.visa-intro p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Documents Section */
.visa-documents {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    padding: 0 1rem;
}

.visa-documents h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 1.5rem;
}

.visa-documents > p {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.visa-doc-list {
    list-style: none;
    padding: 0;
}

.visa-doc-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

.visa-doc-list li::before {
    content: "•";
    color: #0a1a44;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.visa-doc-list li strong {
    color: #0a1a44;
}

/* Visa Types Grid */
.visa-types-section {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    padding: 0 1rem;
}

.visa-types-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 2rem;
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.visa-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.visa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.visa-card-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.visa-card-content {
    width: 100%;
}

.visa-card-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 1rem;
}

.visa-card-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    text-align: left;
}

.visa-card-list li {
    font-size: 0.9rem;
    color: #0a1a44;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.5;
}

.visa-card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0a1a44;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

/* Profile Section */
.visa-profile-section {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    padding: 0 1rem;
}

.visa-profile-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 1.5rem;
}

.visa-profile-list {
    list-style: none;
    padding: 0;
}

.visa-profile-list li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #333;
}

.visa-profile-list strong {
    color: #0a1a44;
}

/* Help Section */
.visa-help {
    text-align: center;
    padding: 3rem 1rem;
    background-color: white;
    max-width: 800px;
    margin: 0 auto;
}

.visa-help-content {
    display: inline-block;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.visa-help h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0a1a44;
    margin-bottom: 1.5rem;
}

.visa-help-subtitle {
    color: #0a1a44;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.visa-help-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.visa-help-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0a1a44;
    font-size: 1rem;
}

.visa-help-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0a1a44;
    font-weight: bold;
}

.visa-help-contact {
    text-align: center;
    margin-top: 2rem;
}

.visa-help-btn {
    background-color: #0a1a44;
    color: white;
    padding: 0.8rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s;
}

.visa-help-btn:hover {
    background-color: #152c60;
    color: white;
}

.visa-help-btn i {
    transform: rotate(90deg);
    font-size: 1.2rem;
}

.visa-service-text {
    color: #0a1a44;
    font-weight: 800;
    font-size: 1.4rem;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .visa-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .visa-intro-content {
        flex-direction: column;
        text-align: center;
    }
    
    .visa-intro h2 {
        text-align: center;
    }
    
    .visa-grid {
        grid-template-columns: 1fr;
    }
    
    .visa-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .visa-card-list li {
        text-align: left;
    }
}
