/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 700px;
    overflow: hidden;
    margin-top: 10px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Enhanced image quality settings */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
    /* Remove blur filters and enhance sharpness */
    filter: none;
    -webkit-filter: none;
    /* Force hardware acceleration for better rendering */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.slide.active {
    opacity: 1;
}

/* Dynamic slide background images are set inline */

/* Force high-quality image rendering */
.hero-slider {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Ensure background images are rendered at full quality */
.slide {
    /* Force GPU acceleration for better image rendering */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    /* Prevent image blur during transitions */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Enhanced image quality and positioning */
.slide {
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-attachment: scroll; /* Changed from fixed for better mobile performance */
    background-position: center center;
}

/* Ensure images are crisp on high DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .slide {
        background-size: contain !important;
        -webkit-background-size: contain !important;
        -moz-background-size: contain !important;
        -o-background-size: contain !important;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: -moz-crisp-edges;
        image-rendering: crisp-edges;
        /* Enhanced sharpness for retina displays */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
        margin-top: 0;
        width: 100vw;
        max-width: 100vw;
    }
    
    .slider-container {
        width: 100vw;
        height: 100vh;
    }
    
    .slider-wrapper {
        width: 100vw;
        height: 100vh;
    }
    
    .slide {
        width: 100vw;
        height: 100vh;
        background-attachment: scroll;
        background-position: center center !important;
        background-size: cover !important;
        -webkit-background-size: cover !important;
        -moz-background-size: cover !important;
        -o-background-size: cover !important;
        /* Ensure crisp rendering on mobile */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: white;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1CB098;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title strong {
    color: #1CB098;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1CB098, #0d9488);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(28, 176, 152, 0.3);
    border: none;
    cursor: pointer;
    min-width: 150px;
    text-align: center;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(28, 176, 152, 0.4);
    background: linear-gradient(135deg, #0d9488, #1CB098);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.nav-btn:hover {
    background: rgba(28, 176, 152, 0.8);
    border-color: #1CB098;
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 1.2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: #1CB098;
    border-color: white;
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: rgba(28, 176, 152, 0.8);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .slider-nav {
        padding: 0 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-btn {
        width: 200px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 180px;
    }
    
    .hero-cta {
        gap: 12px;
    }
}

.top-bar {
    background: #334155;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: #1CB098;
}

.contact-info span {
    direction: ltr;
    unicode-bidi: bidi-override;
}


.social-links a {
    color: white;
    margin-left: 10px;
    font-size: 16px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #1CB098;
}

.navbar {
    background: white;
    padding: 25px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    color: #1CB098;
    font-weight: 700;
    font-size: 28px;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    color: #475569;
}

.language-btn:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.language-dropdown.show {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    color: #475569;
    transition: background-color 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8fafc;
    color: #1CB098;
}

.language-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* Auth Section */
.auth-section {
    display: flex;
    align-items: center;
}

.auth-btn {
    background: #1CB098;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.auth-btn:hover {
    background: #0a8a73;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(28, 176, 152, 0.3);
    color: white;
    text-decoration: none;
}

.dashboard-btn {
    background: #6366f1;
}

.dashboard-btn:hover {
    background: #4f46e5;
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
}

.nav-item {
    position: relative;
    margin-left: 20px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-link:hover {
    color: #1CB098;
}

.nav-link i {
    margin-left: 5px;
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 30px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    display: grid;
}

.dropdown-section h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.dropdown-section a {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 5px 0;
    font-size: 14px;
    transition: color 0.3s;
}

.dropdown-section a:hover {
    color: #333;
}

/* Modern Features Section */
.modern-features {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}

.modern-features .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.modern-features .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1CB098, #0d9488);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(28, 176, 152, 0.3);
}

.modern-features .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.modern-features .section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.modern-feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1CB098, #0d9488);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.modern-feature-card:hover::before {
    transform: scaleX(1);
}

.modern-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1CB098, #0d9488);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(28, 176, 152, 0.3);
}

.feature-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: #475569;
    font-size: 14px;
}

.feature-details li i {
    color: #1CB098;
    font-size: 16px;
}

.features-cta {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 176, 152, 0.1), rgba(13, 148, 136, 0.1));
    z-index: 1;
}

.features-cta .cta-content {
    position: relative;
    z-index: 2;
}

.features-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.features-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.modern-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1CB098, #0d9488);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(28, 176, 152, 0.3);
}

.modern-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(28, 176, 152, 0.4);
    color: white;
}

.modern-cta-btn i {
    transition: transform 0.3s ease;
}

.modern-cta-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-features {
        padding: 60px 0;
    }
    
    .modern-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modern-feature-card {
        padding: 25px;
    }
    
    .features-cta {
        padding: 40px 30px;
    }
    
    .features-cta h3 {
        font-size: 1.5rem;
    }
}

/* Service Inquiry Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, #1CB098, #0d9488);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.close:hover {
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1CB098;
    background: white;
    box-shadow: 0 0 0 3px rgba(28, 176, 152, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1CB098, #0d9488);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(28, 176, 152, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 176, 152, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-width: none;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Bootstrap-style Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 220px;
    padding: 8px 0;
    margin: 0;
    font-size: 14px;
    color: #333;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    clear: both;
    font-weight: 400;
    color: #333;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #1CB098;
    background-color: #f8fafc;
    text-decoration: none;
}

.dropdown-item.active {
    color: #1CB098;
    background-color: #e0f2fe;
    font-weight: 600;
}

.dropdown-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Ensure dropdown works on hover for desktop */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 5px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger:hover {
    background: linear-gradient(135deg, #1CB098, #0ea5e9);
    border-color: #1CB098;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28, 176, 152, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 100px;
    background: url('../images/Home-banner.jpg') center/cover no-repeat;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Service Page Hero Sections */
.visa-hero {
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.license-hero {
    background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.holiday-hero {
    background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(251,191,36,0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(251,191,36,0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;

}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.8) 0%, rgba(59, 130, 246, 0.6) 100%);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    width: 100%;
}

.hero-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.hero-text {
    text-align: center;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
}

.hero-title strong {
    color: #1CB098;
}

.hero-cta {
    margin-top: 30px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);

}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;

}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1CB098;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;

}

.cta-btn {
    background: #334155;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: #475569;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-trust {
    margin-top: 20px;
}

.trust-badges {
    display: flex;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item i {
    color: #1CB098;
    font-size: 16px;
}

.hero-visual {
    position: relative;
    text-align: center;
}

.hero-image {
    position: relative;
    display: inline-block;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-weight: 600;
    font-size: 14px;

}

.floating-card i {
    font-size: 20px;
    color: #1CB098;
}

.card-1 {
    top: 20px;
    left: 20px;
}

.card-2 {
    top: 150px;
    right: 30px;
}

.card-3 {
    bottom: 80px;
    left: 30px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;

}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;

}

.scroll-arrow:hover {
    border-color: #334155;
    color: #1CB098;
}

/* Animations removed for performance */

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    margin-top: -100px;
    z-index: 10;
}

/* Our Services Section */
.our-services {
    padding: 100px 0;
    background: white;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8fafc;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #1CB098;
    background: white;
}

.service-item .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(51, 65, 85, 0.3);
}

.service-item .service-icon i {
    font-size: 32px;
    color: white;
}

.service-item h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.service-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* License Button Styles */
.license-btn {
    display: block;
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(51, 65, 85, 0.2);
    margin: 0 auto;
    width: fit-content;
}

/* Comprehensive Services Grid */
.comprehensive-services {
    padding: 100px 0;
    background: #f8fafc;
}

.services-grid-comprehensive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card-comprehensive {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card-comprehensive:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-comprehensive .service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-comprehensive .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-comprehensive:hover .service-image img {
    transform: scale(1.05);
}

.service-card-comprehensive h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 15px 0;
    padding: 0 20px;
    line-height: 1.4;
}

.service-more-btn {
    display: inline-block;
    background: #1CB098;
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.service-more-btn:hover {
    background: #0ea5e9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 176, 152, 0.3);
    color: white;
    text-decoration: none;
}

/* Service Inquiry Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 3% auto;
    padding: 0;
    border-radius: 15px;
    width: 95%;
    max-width: 1200px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 40px 50px;
}

.modal-body .form-group {
    margin-bottom: 25px;
}

.modal-body label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.modal-body input,
.modal-body textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.modal-body input:focus,
.modal-body textarea:focus {
    outline: none;
    border-color: #1CB098;
}

.modal-body textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-body .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1CB098, #0ea5e9);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-body .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 176, 152, 0.3);
}

.modal-body .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Modal */
@media (max-width: 1024px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-width: 95%;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 25px 30px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 5% auto;
        width: 98%;
        max-width: 98%;
    }
    
    .modal-body {
        padding: 20px;
    }
}

.license-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 65, 85, 0.3);
    color: white;
    text-decoration: none;
}

.license-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(51, 65, 85, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 35px;
    color: white;
}

.service-card h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h5 {
    color: #1CB098;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-text h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 20px;
}

.feature-text h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h5 {
    color: #1CB098;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Visa Categories */
.visa-categories {
    padding: 100px 0;
    background: #f8fafc;
}

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

.visa-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e5e7eb;
}

.visa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.visa-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.visa-icon i {
    font-size: 30px;
    color: white;
}

.visa-card h3 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.visa-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Destinations */
.destinations {
    padding: 100px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding: 30px;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.destination-flag {
    width: 80px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 8px;
    overflow: hidden;
}

.destination-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-card h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.destination-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    background: #0A8A73;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    border: none;
    cursor: pointer;
    margin-right: 15px;
}

.read-more:hover {
    background: #087a65;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 138, 115, 0.3);
    color: white;
}

.apply-more {
    background: #1CB098;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.apply-more:hover {
    background: #0a8a73;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(28, 176, 152, 0.3);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
}

.testimonial-card.active {
    display: block;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.client-info h4 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.client-info span {
    color: #1CB098;
    font-weight: 500;
}

.testimonial-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
    background-color: #333;
}

/* Blog Section */
.blog {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
}

.blog-meta i {
    margin-right: 5px;
    color: #1CB098;
}

.blog-cta {
    text-align: center;
}

.view-more-btn {
    background: transparent;
    color: #333;
    border: 2px solid #334155;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.view-more-btn:hover {
    background: #334155;
    color: white;
}

/* Footer Slider */
.footer-slider-section {
    background: #334155;
    padding: 60px 0;
    color: white;
}

.slider-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}

.splide {
    padding: 0 2rem;
}

.splide[dir="rtl"] {
    direction: rtl;
}

.splide__arrow {
    background: rgba(255, 255, 255, 0.2);
}

.splide__arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

[dir="rtl"] .splide__arrow--prev svg {
    transform: scaleX(-1);
}

[dir="rtl"] .splide__arrow--next svg {
    transform: scaleX(-1);
}

.slider-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.slider-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.slider-content {
    text-align: center;
    width: 100%;
}

.slider-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
}

.slider-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.slider-btn {
    background: #3C8271;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    font-size: 0.9rem;
}

.slider-btn:hover {
    background: #2d6b5a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(60, 130, 113, 0.3);
}

/* Splide Custom Styles */
.splide__arrow {
    background: #3C8271;
    border: 1px solid #3C8271;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.splide__arrow:hover {
    background: #2d6b5a;
    color: white;
    transform: scale(1.1);
}

.splide__arrow:disabled {
    opacity: 0.3;
}

.splide__arrow svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: #334155;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #1CB098;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #1CB098;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inquiry-form input,
.inquiry-form textarea {
    padding: 12px;
    border: 1px solid #475569;
    border-radius: 8px;
    background: #334155;
    color: white;
    font-family: inherit;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: #94a3b8;
}

.inquiry-form button {
    background: #fbbf24;
    color: #333;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.inquiry-form button:hover {
    background: #f59e0b;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 900px) and (min-width: 601px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .visa-grid,
    .destinations-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .dropdown-menu {
        min-width: 300px;
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .splide {
        padding: 0 1rem;
    }
    
    .slider-card {
        padding: 1.5rem;
    }
    
    .slider-image {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .slider-content h4 {
        font-size: 1.2rem;
    }
    
    .slider-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slider-card {
        padding: 1rem;
    }
    
    .slider-image {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .slider-content h4 {
        font-size: 1rem;
    }
    
    .slider-content p {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .slider-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .service-card,
    .visa-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-card p {
        font-size: 16px;
    }
}

/* Animations removed for performance */

/* Smooth Scrolling removed for performance */

/* Focus States for Accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #334155;
    border-radius: 50%;
}

/* Modal Styles */
.consultation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.modal-close:hover {
    background: #f3f4f6;
}

.modal-body {
    padding: 30px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
}

.submit-btn {
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    max-width: 400px;
    border-left: 4px solid #10b981;

}

.notification-success {
    border-left-color: #10b981;
}

.notification-error {
    border-left-color: #ef4444;
}

.notification-info {
    border-left-color: #334155;
}

.notification span {
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #374151;
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1500;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .navbar {
        padding: 15px 0;
        position: relative;
    }
    
    .navbar .container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .nav-brand {
        flex: 1;
    }
    
    .hamburger {
        order: 3;
        margin-left: auto;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1002 !important;
        background: linear-gradient(135deg, #334155, #475569) !important;
        border: 1px solid #334155 !important;
    }
    
    .hamburger:hover {
        background: linear-gradient(135deg, #1CB098, #0ea5e9) !important;
        border-color: #1CB098 !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(28, 176, 152, 0.3) !important;
    }
    
    /* Force hamburger to be visible */
    .navbar .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 80px 0 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        display: flex !important;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
        display: block !important;
    }
    
    .nav-link {
        display: block !important;
        padding: 15px 30px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: #f8fafc;
        color: #1CB098;
        padding-left: 40px;
    }
    
    .dropdown-toggle {
        position: relative;
    }
    
    .dropdown-toggle::after {
        content: '';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        border: solid #333;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 3px;
        transform: translateY(-50%) rotate(45deg);
        transition: transform 0.3s ease;
    }
    
    .dropdown-toggle[aria-expanded="true"]::after {
        transform: translateY(-50%) rotate(-135deg);
    }
    
    .nav-actions {
        display: none !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .mobile-only .language-selector {
        width: 100%;
        display: block !important;
        padding: 15px 30px;
        border-top: 1px solid #e5e7eb;
        margin-top: 10px;
    }
    
    .mobile-only .language-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        display: flex !important;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
    }
    
    .mobile-only .auth-section {
        width: 100%;
        display: block !important;
        padding: 15px 30px;
        border-top: 1px solid #e5e7eb;
        margin-top: 10px;
    }
    
    .mobile-only .auth-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        display: flex !important;
        background: #1CB098;
        color: white;
        border-radius: 8px;
        text-decoration: none;
    }
    
    .mobile-only .auth-btn:hover {
        background: #0ea5e9;
        color: white;
    }
    
    .language-dropdown {
        position: static !important;
        display: none;
        width: 100%;
        box-shadow: none;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        margin-top: 10px;
    }
    
    .language-dropdown.show {
        display: block !important;
    }
    
    .mobile-only .language-dropdown {
        position: static !important;
        display: none;
        width: 100%;
        box-shadow: none;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        margin-top: 10px;
    }
    
    .mobile-only .language-dropdown.show {
        display: block !important;
    }
    
    .language-option {
        display: flex;
        align-items: center;
        padding: 10px 15px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .language-option:last-child {
        border-bottom: none;
    }
    
    .language-option:hover {
        background: #e5e7eb;
        color: #1CB098;
    }
    
    .language-option img {
        width: 20px;
        height: 15px;
        margin-right: 10px;
    }
    
    .hamburger {
        display: flex !important;
        position: relative;
        z-index: 1001;
        cursor: pointer;
        padding: 8px;
        background: #f8fafc;
        border-radius: 5px;
        border: 1px solid #e5e7eb;
    }
    
    .hamburger:hover {
        background: #e5e7eb;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .dropdown-menu {
        position: static !important;
        display: none !important;
        box-shadow: none;
        padding: 0;
        background: #f8fafc;
        margin-top: 0;
        border: none;
        border-radius: 0;
        width: 100%;
        min-width: auto;
    }
    
    .dropdown-menu.show {
        display: block !important;
    }
    
    .dropdown-item {
        padding: 15px 30px;
        margin-bottom: 0;
        font-size: 14px;
        border-bottom: 1px solid #e5e7eb;
        background: transparent;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .dropdown-item:hover {
        background: #e5e7eb;
        padding-left: 40px;
    }
    
    .dropdown-item.active {
        background: #dbeafe;
        color: #1CB098;
        font-weight: 600;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item i {
        font-size: 16px;
        width: 20px;
        text-align: center;
    }
    
    .modal-content {
        margin: 20px;
        max-width: none;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    /* Mobile overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Additional Mobile Styles for Smaller Screens */
@media (max-width: 480px) {
    .nav-menu {
        width: 90%;
        max-width: 280px;
    }
    
    .nav-link {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .nav-actions {
        padding: 15px 25px;
    }
    
    .language-btn,
    .auth-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .logo-image {
        height: 30px;
        max-width: 100px;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .language-option {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .language-option img {
        width: 18px;
        height: 12px;
        margin-right: 8px;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .desktop-only {
        display: flex !important;
    }
    
    .mobile-only {
        display: none !important;
    }
    
    .hamburger {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
    
    .nav-actions {
        display: flex !important;
    }
}

/* Mobile hamburger visibility */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 9999 !important;
        background: linear-gradient(135deg, #334155, #475569) !important;
        border: 1px solid #334155 !important;
    }
    
    .hamburger:hover {
        background: linear-gradient(135deg, #1CB098, #0ea5e9) !important;
        border-color: #1CB098 !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(28, 176, 152, 0.3) !important;
    }
}

/* Ensure hamburger is hidden on larger screens */
@media screen and (min-width: 769px) {
    .hamburger {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Header Scrolled State */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Animation Classes removed */

/* Loading State */
.loading {
    cursor: wait;
}

.loading * {
    pointer-events: none;
}

/* Enhanced Focus Styles */
.nav-link:focus,
.cta-btn:focus,
.read-more:focus,
.view-more-btn:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Page Header Styles */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.9), rgba(71, 85, 105, 0.8));
}

.page-header-content {
    position: relative;
    z-index: 10;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #1CB098;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
    color: #1CB098;
    font-weight: 500;
}

/* Modern Page Hero */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(28, 176, 152, 0.95) 0%, rgba(23, 160, 133, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    color: white;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 176, 152, 0.9) 0%, rgba(23, 160, 133, 0.9) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero .breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.page-hero .breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.page-hero .breadcrumb a:hover {
    opacity: 0.8;
}

.page-hero .breadcrumb span {
    margin: 0 10px;
    opacity: 0.7;
}

.page-hero .breadcrumb .current {
    font-weight: 500;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Card Designs */
.visa-types-grid,
.license-types-grid,
.holiday-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 350px));
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
}

.visa-type-card,
.license-type-card,
.package-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(28, 176, 152, 0.1);
}

.visa-type-card:hover,
.license-type-card:hover,
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #334155;
}

.visa-type-card.featured,
.license-type-card.featured,
.package-card.featured {
    border: 2px solid #334155;
    transform: scale(1.05);
}

.visa-type-card.featured:hover,
.license-type-card.featured:hover,
.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visa-icon,
.license-icon,
.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.visa-type-card:hover .visa-icon,
.license-type-card:hover .license-icon,
.package-card:hover .package-icon {
    transform: scale(1.1) rotate(5deg);
}

.visa-icon i,
.license-icon i,
.package-icon i {
    font-size: 35px;
    color: white;
}

.visa-type-card h3,
.license-type-card h3,
.package-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.visa-type-card p,
.license-type-card p,
.package-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.visa-features,
.license-features,
.package-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.visa-features li,
.license-features li,
.package-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: #555;
}

.visa-features li i,
.license-features li i,
.package-features li i {
    color: #1CB098;
    margin-right: 12px;
    font-size: 14px;
}

.visa-price,
.license-price,
.package-price {
    text-align: center;
    margin: 25px 0;
    font-size: 14px;
    color: #666;
}

.visa-price span,
.license-price span,
.package-price span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1CB098;
    display: block;
    margin-top: 5px;
}

.visa-type-card button,
.license-type-card button,
.package-card button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visa-type-card button:hover,
.license-type-card button:hover,
.package-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 176, 152, 0.3);
}

/* Package Image Section */
.package-image {
    position: relative;
    height: 120px;
    background: linear-gradient(135deg, rgba(28, 176, 152, 0.1), rgba(23, 160, 133, 0.1));
    border-radius: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(28, 176, 152, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

/* Enhanced Benefits and Requirements Cards */
.benefits-grid,
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card,
.requirement-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(28, 176, 152, 0.1);
}

.benefit-card:hover,
.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #334155;
}

.benefit-icon,
.req-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(28, 176, 152, 0.1), rgba(23, 160, 133, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon,
.requirement-card:hover .req-icon {
    transform: scale(1.1);
}

.benefit-icon i,
.req-icon i {
    font-size: 30px;
    color: #1CB098;
}

.benefit-card h3,
.requirement-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.benefit-card p,
.requirement-card p {
    color: #666;
    line-height: 1.6;
}

/* Enhanced Process Steps */
.process-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(28,176,152,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

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

.process-step::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 2px;
    height: calc(100% - 60px);
    background: linear-gradient(to bottom, transparent, rgba(28, 176, 152, 0.3), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 30px;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(28, 176, 152, 0.3);
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(28, 176, 152, 0.4);
}

.step-content {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-top: -40px;
    padding-top: 60px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(28, 176, 152, 0.1);
}

.process-step:hover .step-content {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: #334155;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(28, 176, 152, 0.1), rgba(23, 160, 133, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(28, 176, 152, 0.2), rgba(23, 160, 133, 0.3));
}

.step-icon i {
    font-size: 28px;
    color: #1CB098;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon i {
    color: #17a085;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.process-step:hover .step-content h3 {
    color: #1CB098;
}

.step-content p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* Process Connection Lines for Desktop */
@media (min-width: 1024px) {
    .process-steps {
        position: relative;
    }
    
    .process-steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 10%;
        right: 10%;
        height: 3px;
        background: linear-gradient(to right, 
            transparent 0%, 
            rgba(28, 176, 152, 0.3) 20%, 
            rgba(28, 176, 152, 0.5) 50%, 
            rgba(28, 176, 152, 0.3) 80%, 
            transparent 100%);
        z-index: 1;
    }
    
    .process-step::before {
        display: none;
    }
}

/* Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(28, 176, 152, 0.1);
    text-align: center;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #334155;
}

.offer-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.offer-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(28, 176, 152, 0.1), rgba(23, 160, 133, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
}

.offer-icon i {
    font-size: 30px;
    color: #1CB098;
}

.offer-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.offer-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-code {
    background: rgba(28, 176, 152, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    color: #1CB098;
    margin: 20px 0;
}

.offer-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(28, 176, 152, 0.3);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(28, 176, 152, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    background: rgba(28, 176, 152, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 18px;
    color: #1CB098;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.author-info span {
    color: #666;
    font-size: 14px;
}

.rating {
    margin-left: auto;
    color: #ffc107;
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(28, 176, 152, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-color: #334155;
}

.faq-item.active {
    border-color: #334155;
    box-shadow: 0 10px 40px rgba(28, 176, 152, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    background: white;
    border-radius: 15px;
    position: relative;
}

.faq-question:hover {
    background: rgba(28, 176, 152, 0.05);
}

.faq-item.active .faq-question {
    background: rgba(28, 176, 152, 0.1);
    border-bottom: 1px solid rgba(28, 176, 152, 0.2);
    border-radius: 15px 15px 0 0;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h4 {
    color: #1CB098;
}

.faq-question i {
    color: #1CB098;
    transition: all 0.3s ease;
    font-size: 16px;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 30px;
    color: #666;
    line-height: 1.6;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: none;
    opacity: 1;
    padding: 20px 30px 25px;
    height: auto;
    overflow: visible;
}

.faq-answer p {
    margin: 0;
    padding: 0;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Visa Types Tags */
.visa-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0 20px 0;
    justify-content: center;
}

.visa-type {
    background: rgba(28, 176, 152, 0.1);
    color: #1CB098;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(28, 176, 152, 0.2);
    transition: all 0.3s ease;
}

.destination-card:hover .visa-type {
    background: rgba(28, 176, 152, 0.2);
    border-color: #334155;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Story Section */
.about-story {
    padding: 100px 0;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #334155;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 24px;
    color: white;
}

.highlight-text h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.highlight-text p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.story-visual {
    position: relative;
}

.story-image-grid {
    position: relative;
    height: 500px;
}

.story-image {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image.main-image {
    width: 350px;
    height: 400px;
    top: 0;
    left: 0;
    z-index: 2;
}

.story-image.secondary-image {
    width: 250px;
    height: 200px;
    bottom: 50px;
    right: 0;
    z-index: 3;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(251, 191, 36, 0.95);
    color: #333;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.story-stats {
    position: absolute;
    bottom: 0;
    left: 50px;
    display: flex;
    gap: 15px;
    z-index: 4;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    min-width: 100px;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    display: block;
}

.stat-card .stat-label {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Mission Vision Section */
.mission-vision {
    padding: 100px 0;
    background: #f8fafc;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #334155, #475569);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.mv-icon i {
    font-size: 35px;
    color: white;
}

.mv-card h3 {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mv-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.mv-points {
    list-style: none;
}

.mv-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #666;
}

.mv-points li i {
    color: #10b981;
    font-size: 14px;
}

/* Core Values Section */
.core-values {
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e5e7eb;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 35px;
    color: white;
}

.value-card h3 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-overlay .social-links {
    display: flex;
    gap: 15px;
}

.member-overlay .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.member-overlay .social-links a:hover {
    background: #fbbf24;
    color: #333;
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.member-role {
    color: #1CB098;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reasons-list {
    margin-bottom: 40px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #334155;
}

.reason-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.reason-content h4 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.reason-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.achievement-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.achievement-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.achievement-icon i {
    font-size: 24px;
    color: white;
}

.achievement-text h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.achievement-text p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Active Navigation Link */
.nav-link.active {
    color: #333;
    font-weight: 600;
}

/* Contact Items in Footer */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    color: #1CB098;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .about-story-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-image-grid {
        height: 400px;
    }
    
    .story-image.main-image {
        width: 280px;
        height: 320px;
    }
    
    .story-image.secondary-image {
        width: 200px;
        height: 150px;
        bottom: 20px;
        right: 20px;
    }
    
    .story-stats {
        left: 20px;
        bottom: -20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-cards {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-main {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}

/* Services Page Styles */
.services-overview-page {
    padding: 100px 0;
}

.services-categories {
    margin-top: 60px;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #666;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.category-btn:hover,
.category-btn.active {
    border-color: #333;
    background: #334155;
    color: white;
}



.service-card-detailed {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    opacity: 1;
    transform: translateY(0);
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.service-header .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-header .service-icon i {
    font-size: 28px;
    color: white;
}

.service-title h3 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.service-subtitle {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.service-content {
    padding: 0 30px 30px;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.service-features li i {
    color: #10b981;
    font-size: 12px;
}

.service-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.country-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.service-price {
    color: #666;
    font-size: 14px;
}

.service-price span {
    color: #333;
    font-size: 20px;
    font-weight: 700;
}

.service-btn {
    background: linear-gradient(135deg, #334155, #475569);
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f8fafc;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.step-content h3 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-color: #334155;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #334155, #475569);
    color: #333;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    padding: 40px 30px;
    text-align: center;
    background: #f8fafc;
}

.pricing-header h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 20px;
    color: #666;
    margin-right: 5px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.price-description {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #666;
}

.pricing-features li i.fa-check {
    color: #10b981;
}

.pricing-features li i.fa-times {
    color: #ef4444;
}

.pricing-btn {
    width: 100%;
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-card.featured .pricing-btn {
    background: linear-gradient(135deg, #334155, #475569);
    color: #333;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

/* FAQ Section - Duplicate removed, using the main FAQ styles above */

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    
    .category-nav {
        gap: 10px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-header .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-header .service-icon i {
        font-size: 24px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-content,
    .service-header {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .service-footer {
        padding: 15px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-section {
    padding-right: 20px;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #334155;
    transition: all 0.3s;
}

.contact-method:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 24px;
    color: white;
}

.method-content h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.method-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.method-content p [dir="ltr"],
.method-content p [dir="ltr"] * {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: embed;
}

.method-link {
    color: #1CB098;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.method-link:hover {
    color: #f59e0b;
}

.social-media {
    margin-top: 40px;
}

.social-media h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.social-link.facebook {
    background: #e3f2fd;
    color: #1976d2;
}

.social-link.facebook:hover {
    background: #1976d2;
    color: white;
}

.social-link.twitter {
    background: #e1f5fe;
    color: #0288d1;
}

.social-link.twitter:hover {
    background: #0288d1;
    color: white;
}

.social-link.linkedin {
    background: #e8f5e8;
    color: #388e3c;
}

.social-link.linkedin:hover {
    background: #388e3c;
    color: white;
}

.social-link.instagram {
    background: #fce4ec;
    color: #c2185b;
}

.social-link.instagram:hover {
    background: #c2185b;
    color: white;
}

.contact-form-section {
    padding-left: 20px;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.form-header {
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-header p {
    opacity: 0.9;
    margin: 0;
}

.contact-form {
    padding: 40px 30px;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    font-size: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(51, 65, 85, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #334155;
    border-color: #333;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-group.error .checkmark {
    border-color: #ef4444;
}

.checkbox-label a {
    color: #333;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #334155, #475569);
    color: #333;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Quick Contact Section */
.quick-contact {
    padding: 100px 0;
    background: #f8fafc;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.quick-contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e5e7eb;
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.quick-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.quick-icon i {
    font-size: 35px;
    color: white;
}

.quick-contact-card h3 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.quick-contact-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.quick-btn {
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(51, 65, 85, 0.3);
}

/* Office Locations */
.office-locations {
    padding: 100px 0;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.office-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.office-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.office-card:hover .office-image img {
    transform: scale(1.05);
}

.office-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #334155, #475569);
    color: #333;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.office-info {
    padding: 30px;
}

.office-info h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.office-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.detail-item i {
    color: #1CB098;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.detail-item p[dir="ltr"],
.detail-item p[dir="ltr"] * {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: embed;
}

.office-actions {
    display: flex;
    gap: 15px;
}

.office-btn {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.office-btn.primary {
    background: linear-gradient(135deg, #334155, #475569);
    color: #333;
}

.office-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.office-btn.secondary {
    background: transparent;
    color: #333;
    border: 2px solid #334155;
}

.office-btn.secondary:hover {
    background: #334155;
    color: white;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: #f8fafc;
}

.map-container {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #334155, #475569);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.map-placeholder::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 100 100" fill="white" opacity="0.1"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="30" r="1.5"/><circle cx="40" cy="70" r="1"/><circle cx="70" cy="80" r="2"/><circle cx="30" cy="50" r="1.5"/></svg>');
    background-size: 200px 200px;
    animation: mapFloat 20s linear infinite;
}

.map-placeholder:hover {
    transform: scale(1.02);
}

.map-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.map-content i {
    font-size: 60px;
    margin-bottom: 20px;
    color: #1CB098;
}

.map-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.map-btn {
    background: #fbbf24;
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.map-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

@keyframes mapFloat {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(0) translateY(-10px); }
    75% { transform: translateX(10px) translateY(-5px); }
    100% { transform: translateX(0) translateY(0); }
}

/* Contact FAQ */
.contact-faq {
    padding: 100px 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-header {
        padding: 30px 20px;
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .office-actions {
        flex-direction: column;
    }
    
    .office-btn {
        text-align: center;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-content i {
        font-size: 40px;
    }
    
    .map-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .method-icon {
        margin: 0 auto 15px;
    }
    
    .quick-contact-card {
        padding: 30px 20px;
    }
    
    .office-info {
        padding: 25px 20px;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Print Styles */
@media print {
    .header,
    .back-to-top,
    .consultation-modal,
    .notification {
        display: none !important;
    }
    
    .hero,
    .page-header {
        padding: 50px 0;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}

/* ===== RTL SUPPORT ===== */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .hero-title {
    text-align: right;
}

[dir="rtl"] .hero-description {
    text-align: right;
}

[dir="rtl"] .section-header h2 {
    text-align: right;
}

[dir="rtl"] .section-header p {
    text-align: right;
}

[dir="rtl"] .license-type-card {
    text-align: right;
}

[dir="rtl"] .benefit-card {
    text-align: right;
}

[dir="rtl"] .process-step {
    text-align: right;
}

[dir="rtl"] .requirement-card {
    text-align: right;
}

[dir="rtl"] .faq-question {
    text-align: right;
}

[dir="rtl"] .faq-answer {
    text-align: right;
}

[dir="rtl"] .cta-content {
    text-align: right;
}

/* ===== HOLIDAY PACKAGES SHOWCASE ===== */
.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.package-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .package-card {
        margin-bottom: 20px;
    }
}

[dir="rtl"] .cta-info {
    text-align: right;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-content {
    text-align: left;
}

.about-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: left;
}

.about-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
    text-align: left;
}

.more-services-btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.more-services-btn:hover {
    background: #1d4ed8;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.about-image {
    text-align: center;
    padding-left: 20px;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .about-image {
        margin-top: 40px;
        padding-left: 0;
    }
    
    .about-image img {
        height: 300px;
    }
}

[dir="rtl"] .breadcrumb {
    text-align: right;
}

/* ===== OUR OFFICES SECTION ===== */
.our-offices {
    padding: 80px 0;
    background: #f8fafc;
}

.offices-maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.office-map-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.office-map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.office-info {
    padding: 30px;
}

.office-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.office-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.detail-item i {
    color: #3b82f6;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.office-actions {
    display: flex;
    gap: 15px;
}

.office-btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.office-btn.primary {
    background: #3b82f6;
    color: white;
}

.office-btn.primary:hover {
    background: #2563eb;
    color: white;
    text-decoration: none;
}

.office-btn.secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.office-btn.secondary:hover {
    background: #3b82f6;
    color: white;
    text-decoration: none;
}

.office-map {
    height: 300px;
    overflow: hidden;
}

.office-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-offices {
        padding: 60px 0;
    }
    
    .offices-maps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .office-info {
        padding: 20px;
    }
    
    .office-actions {
        flex-direction: column;
    }
    
    .office-btn {
        text-align: center;
    }
}

[dir="rtl"] .breadcrumb span {
    margin: 0 8px 0 0;
}

[dir="rtl"] .breadcrumb a {
    margin-left: 8px;
    margin-right: 0;
}

/* Login Modal Styles */
.login-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

.login-modal-content {
    position: relative;
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-modal-header {
    position: relative;
    padding: 20px 30px 0;
    border-bottom: 1px solid #eee;
}

.modal-logo {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    display: block;
    margin: 0 auto 20px;
}

.login-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.login-close:hover,
.login-close:focus {
    color: #000;
    text-decoration: none;
}

.login-wrapper {
    padding: 30px;
}

/* Login Form Styles - New Tab Structure */
.modal-tabs {
    display: flex;
    margin: 30px 0 20px 0;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid lightgrey;
}

.tab-btn {
    flex: 1;
    height: 50px;
    background: #fff;
    border: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    background: #3C8271;
    color: #fff;
}

.tab-btn:hover {
    background: #f0f0f0;
}

.tab-btn.active:hover {
    background: #3C8271;
}

.login-wrapper .form-container {
    width: 100%;
    position: relative;
}

.tab-content {
    display: none;
    width: 100%;
}

.tab-content.active {
    display: block;
}

.login-wrapper .field {
    width: 100%;
    margin-top: 20px;
}

.login-wrapper .field input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-wrapper .field input:focus {
    border-color: #3C8271;
    box-shadow: 0 0 0 2px rgba(60, 130, 113, 0.2);
}

.login-wrapper .field input::placeholder {
    color: #999;
    font-size: 16px;
}

.login-wrapper .field input:focus::placeholder {
    color: #999;
}

.login-wrapper .form-inner form .signup-link {
    text-align: center;
    margin-top: 30px;
}

.login-wrapper .form-inner form .signup-link a {
    color: #1a75ff;
    text-decoration: none;
}

.login-wrapper .form-inner form .signup-link a:hover {
    text-decoration: underline;
}

/* Captcha Styles for Modal */
.login-wrapper .captcha-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.login-wrapper .captcha-header {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.login-wrapper .captcha-display-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-wrapper .captcha-display {
    background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%),
        linear-gradient(-45deg, #f8f9fa 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #f8f9fa 75%),
        linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px 20px;
    min-width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-wrapper .captcha-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    user-select: none;
    position: relative;
    z-index: 2;
    letter-spacing: 3px;
}

.login-wrapper .captcha-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.login-wrapper .captcha-line {
    position: absolute;
    background: rgba(0, 0, 0, 0.15);
    height: 2px;
    width: 100%;
    transform-origin: center;
}

.login-wrapper .captcha-refresh {
    background: #3C8271;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.login-wrapper .captcha-refresh:hover {
    background: #2d6b5a;
}

.login-wrapper .captcha-input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-wrapper .captcha-input:focus {
    border-color: #3C8271;
    box-shadow: 0 0 0 2px rgba(60, 130, 113, 0.2);
}

/* Error Messages for Modal */
.login-wrapper .error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.login-wrapper .field.error input {
    border-color: #dc3545;
}

.login-wrapper .general-error {
    color: #dc3545;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
}

.login-wrapper .general-success {
    color: #155724;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
}

.login-wrapper .btn {
    width: 100%;
    height: 50px;
    margin-top: 20px;
}

.login-wrapper .btn input[type="submit"] {
    width: 100%;
    height: 100%;
    background: #3C8271;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-wrapper .btn input[type="submit"]:hover {
    background: #2d6b5a;
    transform: translateY(-1px);
}

/* Loading State for Modal */
.login-wrapper .btn.loading input[type="submit"] {
    opacity: 0.7;
    pointer-events: none;
}

/* Login Modal Responsive */
@media (max-width: 768px) {
    .login-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .login-wrapper {
        padding: 20px;
    }
    
    .login-wrapper .title {
        font-size: 28px;
    }
    
    .login-wrapper .captcha-display {
        min-width: 150px;
        padding: 10px 15px;
    }
    
    .login-wrapper .captcha-text {
        font-size: 20px;
    }
}
