:root {
    --primary: #1a4b8c;
    --primary-light: #2a5b9c;
    --secondary: #f8a01d;
    --accent: #28a745;
    --dark: #1e2a3a;
    --light: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #1a4b8c 0%, #2a5b9c 100%);
    --gradient-secondary: linear-gradient(135deg, #f8a01d 0%, #f9b042 100%);
    --gradient-dark: linear-gradient(135deg, #1e2a3a 0%, #2d3a4a 100%);
    --gradient-hero: linear-gradient(135deg, #1a4b8c 0%, #2a5b9c 50%, #3a6bac 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: #333;
    background-color: #f9fafb;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Header */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 10px;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    color: var(--dark) !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.1"><path fill="white" d="M0 0h1200v800H0z"/><circle cx="600" cy="400" r="200" fill="none" stroke="white" stroke-width="2"/></svg>');
    background-size: cover;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Services Section */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--gradient-secondary);
    bottom: -10px;
    left: 0;
    border-radius: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

/* Visa Section */
.visa-section {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.visa-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.03"><path fill="%231a4b8c" d="M0 0h1200v800H0z"/><circle cx="600" cy="400" r="200" fill="none" stroke="%231a4b8c" stroke-width="2"/></svg>');
    background-size: cover;
}

.visa-package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.visa-package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.visa-card-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.visa-card-header:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.visa-card-body {
    padding: 1.5rem;
}

.visa-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.visa-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.visa-features li:last-child {
    border-bottom: none;
}

.visa-features li i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.05"><path fill="white" d="M0 0h1200v800H0z"/><circle cx="600" cy="400" r="200" fill="none" stroke="white" stroke-width="2"/></svg>');
    background-size: cover;
}

.cta-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
}

.btn-light {
    background: white;
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: white;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.03"><path fill="white" d="M0 0h1200v800H0z"/><circle cx="600" cy="400" r="200" fill="none" stroke="white" stroke-width="2"/></svg>');
    background-size: cover;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    bottom: -8px;
    left: 0;
    border-radius: 10px;
}

.footer ul li {
    margin-bottom: 0.7rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: white;
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

/* Additional styles for services, visa, and contact pages */

/* Page Header */
.page-header {
    padding: 100px 0 60px;
    margin-top: 76px;
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-features .feature-item {
    font-size: 1.1rem;
}

/* Comparison Cards */
.comparison-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Visa Process */
.visa-process {
    background: white;
}

.process-step {
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow);
}

/* Requirements List */
.requirements-list h5 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.requirements-list p {
    color: #6c757d;
    margin-bottom: 0;
}

/* FAQ Accordion */
.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(26, 75, 140, 0.1);
    color: var(--primary);
}

.accordion-body {
    padding: 1.25rem;
}

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 75, 140, 0.25);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-item h5 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.map-placeholder {
    border-radius: 15px;
    margin: 0 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .service-detail {
        padding: 60px 0;
    }
    
    .map-placeholder {
        margin: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}


/* Additional styles for home page */

/* Hero Stats */
.hero-stats {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: #6c757d;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
}

.testimonial-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    height: 100%;
    position: relative;
}

.testimonial-card:before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.testimonial-author h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.testimonial-author p {
    color: var(--primary);
    font-size: 0.9rem;
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-primary);
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
    border: none;
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .hero-stats .row {
        text-align: center;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: 50px;
        margin-bottom: 1rem;
    }
    
    .newsletter-form .btn {
        border-radius: 50px;
        width: 100%;
    }
}

/* Legal pages styles */
.content-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.content-card h2 {
    color: var(--primary);
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
}

.content-card ul {
    padding-left: 1.5rem;
}

.content-card li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.last-updated {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

/* Print styles for legal pages */
@media print {
    .header,
    .footer,
    .whatsapp-float {
        display: none !important;
    }
    
    .content-card {
        box-shadow: none;
        padding: 0;
    }
    
    .page-header {
        background: white !important;
        color: black !important;
        padding: 2rem 0 !important;
    }
}





/* Legal pages styles */
.content-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.content-card h2 {
    color: var(--primary);
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
}

.content-card ul {
    padding-left: 1.5rem;
}

.content-card li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.last-updated {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

/* Print styles for legal pages */
@media print {
    .header,
    .footer,
    .whatsapp-float {
        display: none !important;
    }
    
    .content-card {
        box-shadow: none;
        padding: 0;
    }
    
    .page-header {
        background: white !important;
        color: black !important;
        padding: 2rem 0 !important;
    }
}




/* Service image styles */
.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 1rem;
}

.service-card.with-image .service-icon {
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

/* Loading states */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Error states */
.text-danger {
    color: #dc3545 !important;
}



/* Service Detail Page Styles */

/* Service Hero Section */
.service-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-hero-section .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.service-hero-section .breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.service-hero-section .breadcrumb-item.active {
    color: #6c757d;
}

.service-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

/* Service Details Section */
.service-details-section {
    background: white;
}

.service-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #555;
}

.service-content p {
    margin-bottom: 1.5rem;
}

.service-features .feature-item {
    padding: 0.5rem 0;
    font-size: 1rem;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.sidebar-card .card-header {
    border: none;
    padding: 1.5rem;
}

.sidebar-card .card-body {
    padding: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

/* Service Grid Styles (for listing page) */
.services-grid-section {
    background: white;
}

.service-grid-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.service-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-grid-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-grid-icon {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-grid-icon i {
    font-size: 3rem;
}

.service-grid-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-grid-description {
    color: #6c757d;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-grid-features {
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: inline-block;
    background: rgba(26, 75, 140, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.service-grid-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-grid-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

/* Related Services Section */
.related-services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero-section .display-4 {
        font-size: 2rem;
    }
    
    .service-grid-card .row {
        flex-direction: column;
    }
    
    .service-grid-image,
    .service-grid-icon {
        height: 150px;
    }
    
    .service-grid-content {
        padding: 1.5rem;
    }
    
    .service-sidebar {
        position: static;
        margin-top: 2rem;
    }
}



/* Visa Package Grid Styles */
.visa-package-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.visa-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

/* Card Header */
.visa-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px 20px;
    position: relative;
    text-align: center;
}

.visa-card-header h4 {
    margin: 0 0 8px 0;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.2;
}

.visa-type {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.popular-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff4757;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

/* Card Body */
.visa-card-body {
    padding: 24px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.visa-info {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-item i {
    color: #667eea;
    margin-right: 12px;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.info-item span {
    color: #2d3748;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Visa Grid Features */
.visa-grid-features {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.visa-grid-features h6 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.visa-grid-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visa-grid-features li {
    color: #718096;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.visa-grid-features li:before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.visa-grid-features li.text-muted {
    color: #a0aec0 !important;
    font-style: italic;
}

/* Card Footer */
.visa-grid-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background: #f8f9fa;
}

.visa-grid-footer .btn {
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.visa-grid-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.visa-grid-footer .btn i {
    font-size: 0.9rem;
}

/* Animation Delays for Staggered Effect */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .visa-card-header {
        padding: 20px 16px;
    }
    
    .visa-card-header h4 {
        font-size: 1.3rem;
    }
    
    .visa-card-body {
        padding: 20px 16px;
    }
    
    .visa-grid-footer {
        padding: 16px;
    }
}

@media (max-width: 576px) {
    .visa-package-card {
        border-radius: 12px;
    }
    
    .visa-card-header {
        padding: 16px;
    }
    
    .visa-card-body {
        padding: 16px;
    }
    
    .info-item {
        margin-bottom: 10px;
        padding: 6px 0;
    }
    
    .info-item span {
        font-size: 0.85rem;
    }
    
    .popular-tag {
        top: 8px;
        right: 8px;
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

/* Loading State */
.visa-package-card.loading {
    position: relative;
    overflow: hidden;
}

.visa-package-card.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Empty State */
.visa-package-card.empty {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    text-align: center;
    padding: 40px 20px;
}

.visa-package-card.empty .empty-state-icon {
    font-size: 3rem;
    color: #a0aec0;
    margin-bottom: 16px;
}

.visa-package-card.empty .empty-state-text {
    color: #718096;
    font-size: 1rem;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .visa-package-card {
        border: 2px solid #000;
    }
    
    .visa-card-header {
        background: #000;
        color: #fff;
    }
    
    .info-item {
        border-bottom: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .visa-package-card {
        transition: none;
    }
    
    .visa-package-card:hover {
        transform: none;
    }
    
    [data-aos] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Print Styles */
@media print {
    .visa-package-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .visa-card-header {
        background: #f0f0f0 !important;
        color: #000 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .popular-tag {
        background: #000 !important;
        color: #fff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}






@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-link:hover {
    transform: scale(1.1);
}

.whatsapp-link i {
    font-size: 1.8rem;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
}