* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f7fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.main-header {
    background: #003580;
    color: white;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.2s;
}

    .nav-link:hover {
        opacity: 0.8;
    }

.cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-partner {
    background: white;
    color: #003580;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-partner:hover {
        background: #f0f0f0;
        transform: translateY(-2px);
    }

.btn-login {
    background: transparent;
    color: white;
    padding: 10px 24px;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-login:hover {
        background: white;
        color: #003580;
    }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section - Reduced spacing */
.hero-section {
    background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
    padding: 80px 20px; /* Reduced from 120px */
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px; /* Reduced from 56px */
    font-weight: 700;
    margin-bottom: 16px; /* Reduced from 24px */
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px; /* Reduced from 24px */
    line-height: 1.5;
    margin-bottom: 32px; /* Reduced from 48px */
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #003580;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        background: #f0f0f0;
    }

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

    .btn-secondary:hover {
        background: white;
        color: #003580;
        transform: translateY(-3px);
    }

/* Mission Section - Reduced spacing */
.mission-section {
    padding: 60px 20px; /* Reduced from 100px */
    background: white;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; /* Reduced from 80px */
    align-items: center;
}

.mission-content h2 {
    font-size: 36px; /* Reduced from 40px */
    font-weight: 700;
    color: #003580;
    margin-bottom: 20px; /* Reduced from 24px */
}

.mission-text {
    font-size: 16px; /* Kept same */
    line-height: 1.7; /* Reduced from 1.8 */
    color: #24292e;
    margin-bottom: 16px; /* Reduced from 20px */
    text-align: justify;
}

.mission-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mission-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: #f6f8fa;
}

    .mission-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .mission-image:hover img {
        transform: scale(1.05);
    }

    .mission-image.large {
        grid-column: 1 / -1;
    }

/* Features Section - Reduced spacing */
.features-section {
    padding: 60px 20px; /* Reduced from 100px */
    background: linear-gradient(135deg, #f6f8fa 0%, #e1e4e8 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px; /* Reduced from 60px */
}

.section-title {
    font-size: 36px; /* Reduced from 40px */
    font-weight: 700;
    color: #003580;
    margin-bottom: 12px; /* Reduced from 16px */
}

.section-subtitle {
    font-size: 17px; /* Reduced from 18px */
    color: #586069;
    line-height: 1.5;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px; /* Reduced from 32px */
}

.feature-card {
    background: white;
    padding: 32px 28px; /* Reduced from 40px 32px */
    border-radius: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-align: center;
}

    .feature-card:hover {
        transform: translateY(-8px);
        border-color: #0366d6;
        box-shadow: 0 12px 32px rgba(3, 102, 214, 0.2);
    }

.feature-icon {
    font-size: 48px; /* Reduced from 56px */
    margin-bottom: 16px; /* Reduced from 24px */
}

.feature-title {
    font-size: 20px; /* Reduced from 22px */
    font-weight: 600;
    color: #24292e;
    margin-bottom: 12px; /* Reduced from 16px */
}

.feature-description {
    font-size: 15px;
    color: #586069;
    line-height: 1.6; /* Reduced from 1.7 */
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f6f8fa 0%, #e1e4e8 100%);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-image {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

    .benefits-image img {
        width: 100%;
        border-radius: 12px;
    }

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 20px;
    color: #24292e;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 15px;
    color: #586069;
    line-height: 1.5;
}

/* CTA Section - Reduced spacing */
.cta-section {
    padding: 60px 20px; /* Reduced from 80px */
    background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 36px; /* Reduced from 42px */
    font-weight: 700;
    margin-bottom: 16px; /* Reduced from 20px */
}

.cta-text {
    font-size: 17px; /* Reduced from 18px */
    margin-bottom: 32px; /* Reduced from 40px */
    opacity: 0.95;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background: white;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #f6f8fa;
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid #0366d6;
}

.testimonial-text {
    font-size: 16px;
    color: #24292e;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: #0366d6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h4 {
    font-size: 16px;
    color: #24292e;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 13px;
    color: #586069;
}

/* Footer - Reduced spacing */
.main-footer {
    background: #003580;
    color: white;
    padding: 50px 20px 20px; /* Reduced from 60px */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px; /* Reduced from 40px */
    margin-bottom: 32px; /* Reduced from 40px */
}

.footer-about h3 {
    font-size: 22px; /* Reduced from 24px */
    margin-bottom: 12px; /* Reduced from 16px */
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 16px; /* Reduced from 20px */
    font-size: 14px;
}

.footer-section h4 {
    font-size: 15px; /* Reduced from 16px */
    margin-bottom: 12px; /* Reduced from 16px */
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: white;
        }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
    }

/* Language & Currency Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
}

    .dropdown-toggle:hover {
        opacity: 0.8;
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 150px;
    display: none;
    z-index: 1000;
    margin-top: 8px;
}

    .dropdown-menu.show {
        display: block;
    }

.dropdown-item {
    padding: 10px 16px;
    color: #24292e;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background 0.2s;
}

    .dropdown-item:hover {
        background: #f6f8fa;
    }

    .dropdown-item.active {
        background: #0366d6;
        color: white;
    }

/* Mobile Navigation - Fixed display issue */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #003580;
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 80px 20px 20px;
    /* Removed display: none */
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .mobile-menu-links a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

    .mobile-menu-buttons a {
        text-align: center;
        padding: 12px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
    }

/* Mobile Responsive - Adjusted */
@media (max-width: 968px) {
    .hero-content,
    .benefits-container {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .mission-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-content {
        text-align: center;
    }

    .mission-images {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mission-image.large {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .cta-buttons {
        display: none;
    }

    .hero-section {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .mission-section,
    .features-section,
    .cta-section {
        padding: 40px 20px;
    }

    .mission-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .mission-text {
        font-size: 15px;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 28px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 28px;
        font-size: 15px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

        .hero-cta a {
            width: 100%;
            max-width: 300px;
            text-align: center;
        }

    .dropdown-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .mission-section,
    .features-section,
    .cta-section {
        padding: 32px 20px;
    }

    .mission-title {
        font-size: 24px;
    }

    .mission-text {
        font-size: 14px;
    }

    .mission-images {
        gap: 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Preloader overlay for main layout */
.preloader {
    background-color: #00000094 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: none; /* hidden by default, controlled via JS */
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader img {
    width: 118px;
}

.loader-container {
    position: relative;
    width: 100px;
    height: 100px;
}

.bed-icon,
.dots-spin {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.dots-spin {
    animation: spin 2s linear infinite;
    transform-origin: center center;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
ol, ul {
    padding-left: unset;
}
.modal-dialog-centered {
    justify-content: center;
}