/* Interactive Globe Hero */
.globe-hero {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.globe-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.globe-text {
    flex: 1;
    padding-right: 3rem;
}

.globe-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.globe-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.interactive-globe {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.globe {
    width: 350px;
    height: 350px;
    background: url('images/world-map.png') no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0, 150, 255, 0.3);
    position: relative;
}

.country-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.marker {
    position: absolute;
    color: #ff6b6b;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    z-index: 3;
}

.marker:hover {
    transform: scale(1.5);
    color: #ff5252;
}

.marker::after {
    content: attr(data-country);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.marker:hover::after {
    opacity: 1;
}

.hero-search {
    display: flex;
    max-width: 500px;
}

.hero-search input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
}

.hero-search button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-search button:hover {
    background: #ff5252;
}

/* Visa Process Steps */
.visa-process {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.visa-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.visa-process h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #2a5298;
    margin: 1rem auto 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f0f4ff;
    color: #2a5298;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-card i {
    font-size: 2.5rem;
    color: #2a5298;
    margin-bottom: 1.5rem;
    display: block;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.step-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.step-link {
    color: #2a5298;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.step-link i {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.step-link:hover {
    color: #1e3c72;
}

.step-link:hover i {
    transform: translateX(3px);
}

/* Country Grid Section */
.country-grid-section {
    padding: 5rem 2rem;
    background: #f9fafc;
}

.section-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.continent-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.filter-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background: #f0f4ff;
    border-color: #2a5298;
}

.filter-btn.active {
    background: #2a5298;
    color: white;
    border-color: #2a5298;
}

.country-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.country-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: #333;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.country-flag {
    width: 80px;
    height: 50px;
    margin: 0 auto 1rem;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.country-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.country-info {
    font-size: 0.85rem;
    color: #666;
}

.country-info span {
    display: block;
    margin-bottom: 0.3rem;
}

.country-info i {
    margin-right: 0.3rem;
    font-size: 0.8rem;
}

.view-all-card {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.view-all-card:hover {
    transform: translateY(-5px);
}

.view-all-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.view-all-card p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.view-all-btn {
    display: inline-block;
    background: white;
    color: #2a5298;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.view-all-btn i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.view-all-btn:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
}

.view-all-btn:hover i {
    transform: translateX(3px);
}

/* Visa Types Section */
.visa-types-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.visa-types-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.visa-types-section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #2a5298;
    margin: 1rem auto 0;
}

.visa-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.visa-type-card {
    background: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: #333;
}

.visa-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.visa-type-card i {
    font-size: 2.5rem;
    color: #2a5298;
    margin-bottom: 1.5rem;
    display: block;
}

.visa-type-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.visa-type-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Application Guide */
.application-guide {
    padding: 5rem 2rem;
    background: #f9fafc;
}

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.guide-text {
    flex: 1;
}

.guide-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.guide-text p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.guide-steps {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.guide-steps li {
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.6;
}

.guide-steps strong {
    color: #2a5298;
}

.guide-btn {
    display: inline-block;
    background: #2a5298;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.guide-btn i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.guide-btn:hover {
    background: #1e3c72;
    transform: translateY(-2px);
}

.guide-btn:hover i {
    transform: translateX(3px);
}

.guide-image {
    flex: 1;
}

.guide-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Success Stories */
.success-stories {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.success-stories h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #2a5298;
    margin: 1rem auto 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.story-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.story-content {
    padding: 1.5rem;
}

.story-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2a5298;
}

.story-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.story-author {
    display: flex;
    align-items: center;
}

.story-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.8rem;
    object-fit: cover;
}

.story-author span {
    color: #333;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .globe-container {
        flex-direction: column;
    }
    
    .globe-text {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .hero-search {
        margin: 0 auto;
    }
    
    .guide-container {
        flex-direction: column;
    }
    
    .guide-text {
        text-align: center;
    }
    
    .guide-steps {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .globe-text h1 {
        font-size: 2.2rem;
    }
    
    .globe {
        width: 280px;
        height: 280px;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .country-grid {
        grid-template-columns: 1fr;
    }
    
    .visa-types-grid {
        grid-template-columns: 1fr;
    }
    
    .globe-text h1 {
        font-size: 1.8rem;
    }
    
    .globe-text p {
        font-size: 1rem;
    }
}