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

body {
    font-family: 'Momo Trust Sans', -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    font-weight: 400;
}

/* Sticky Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.contact-btn {
    background: linear-gradient(135deg, #003366 0%, #006699 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Momo Trust Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.2);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 51, 102, 0.3);
}

/* Contact Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    color: #003366;
}

.modal-content h2 {
    color: #003366;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-option:hover {
    background: #e3f2fd;
    border-color: #006699;
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    min-width: 50px;
    text-align: center;
}

.contact-details h3 {
    color: #003366;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 300;
}

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

/* Video Header Section */
.video-header {
    position: relative;
    height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#bgVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.85), rgba(0, 102, 153, 0.75));
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-content .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

/* Section Styles */
.section {
    padding: 60px 0;
}

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

.section h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #003366;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #003366, #006699);
}

.section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: white;
}

/* Maldives Section */
.maldives-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* Vision & Mission Section */
.vision-mission-section {
    background-color: white;
}

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

.vision-box, .mission-box {
    background: linear-gradient(135deg, #003366 0%, #006699 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vision-box h2, .mission-box h2 {
    color: white;
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.vision-box h2::after, .mission-box h2::after {
    background: white;
    left: 0;
    transform: none;
}

.vision-box p, .mission-box p {
    color: white;
    text-align: left;
    font-size: 1.1rem;
}

/* Core Values Section */
.core-values-section {
    background-color: #f8f9fa;
}

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

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

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

.value-icon {
    font-size: 3rem;
    color: #006699;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    color: #666;
}

/* Warehouse Section */
.warehouse-section {
    background: white;
}

.warehouse-section .intro-text {
    margin-bottom: 40px;
    font-weight: 500;
}

.warehouse-content {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #006699;
}

.advantages h3 {
    color: #003366;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: left;
}

.advantages ul {
    list-style: none;
    padding: 0;
}

.advantages ul li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.1rem;
    color: #555;
    text-align: left;
    line-height: 1.6;
}

.advantages ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #006699;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* Tab System */
.tabs {
    margin-top: 40px;
}

.tabs input[type="radio"] {
    display: none;
}

.tab-labels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-label {
    padding: 15px 40px;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #003366;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-label:hover {
    background: #003366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#tab1:checked ~ .tab-labels label[for="tab1"],
#tab2:checked ~ .tab-labels label[for="tab2"] {
    background: #003366;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tab-content {
    display: none;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2 {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #006699;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #003366;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-card p {
    font-size: 0.95rem;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
}

/* Commitment Section */
.commitment-section {
    background: linear-gradient(135deg, #003366 0%, #006699 100%);
    color: white;
}

.commitment-section h2 {
    color: white;
}

.commitment-section h2::after {
    background: white;
}

.commitment-section p {
    color: white;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: #001a33;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-logo img {
        height: 40px;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .contact-option {
        padding: 15px;
    }

    .contact-icon {
        font-size: 2rem;
        margin-right: 15px;
        min-width: 40px;
    }

    .contact-details h3 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.85rem;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-content .tagline {
        font-size: 1.2rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .video-header {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    #bgVideo {
        object-fit: contain !important;
        width: 100%;
        height: 100%;
    }

    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .tab-labels {
        flex-direction: column;
        gap: 15px;
    }

    .tab-label {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar-logo img {
        height: 35px;
    }

    .contact-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .modal-content {
        padding: 25px 15px;
    }

    .modal-content h2 {
        font-size: 1.3rem;
    }

    .contact-option {
        padding: 12px;
        flex-direction: row;
    }

    .contact-icon {
        font-size: 1.8rem;
        margin-right: 12px;
        min-width: 35px;
    }

    .contact-details h3 {
        font-size: 0.95rem;
    }

    .contact-details p {
        font-size: 0.8rem;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .header-content .tagline {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .warehouse-content {
        padding: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
