/* Muon International - Exact Replica Styles */

/* Import Fonts from Original Site */
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@500&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,400;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* Navigation - Exact replica style */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #1e3054;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #1e3054;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s;
    padding: 10px 0;
    font-family: 'Lato', sans-serif;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c5aa0;
}

/* Dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 220px;
    padding: 10px 0;
    border-radius: 4px;
    margin-top: 10px;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #1e3054;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #2c5aa0;
}

/* Hero Section - With Original Background Image */
.hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 500;
    max-width: 900px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #fff;
    color: #1e3054;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #1e3054;
}

/* Section Styles */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 32px;
    margin-bottom: 50px;
    color: #1e3054;
    font-weight: 500;
}

/* Why Muon Section - Dark Theme */
.why-muon-dark {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 20px;
}

.why-muon-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-muon-content h2 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 500;
}

.feature-block {
    margin-bottom: 30px;
}

.feature-block h3 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 600;
}

.feature-block p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 14px;
}

.why-muon-image {
    position: sticky;
    top: 100px;
}

.why-muon-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .why-muon-container {
        grid-template-columns: 1fr;
    }
    .why-muon-image {
        position: relative;
        top: 0;
        order: -1;
    }
}

/* Products Section */
.products-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    margin: 20px 20px 12px;
    color: #1e3054;
    font-weight: 600;
}

.product-card p {
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
    font-size: 13px;
}

.product-link {
    display: inline-block;
    color: #fff;
    background-color: #1e3054;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    margin-bottom: 25px;
    transition: background-color 0.3s;
}

.product-link:hover {
    background-color: #2c4a7c;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3054 0%, #2c4a7c 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.cta-section h2 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Page Hero (for subpages) */
.page-hero {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.4) 100%), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-hero h2 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.95;
}

.page-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    font-weight: 300;
}

/* Subpage Content */
.subpage-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
}

.subpage-content h2 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 28px;
    color: #1e3054;
    margin-bottom: 25px;
    font-weight: 500;
}

.subpage-content p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.benefit-item {
    background-color: #fff;
    padding: 40px 35px;
    border-radius: 8px;
    border-left: 4px solid #1e3054;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.benefit-item h3 {
    color: #1e3054;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-item p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.7;
}

/* CSR Content */
.csr-project {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}

.csr-project:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.csr-project h3 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 24px;
    color: #1e3054;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Styles */
.form-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: 'Lato', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3054;
}

.form-group input[type="file"] {
    padding: 10px;
}

/* Careers Page */
.careers-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.careers-intro h2 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 32px;
    color: #1e3054;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

.contact-info h3 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 24px;
    color: #1e3054;
    margin-bottom: 25px;
    font-weight: 500;
}

.contact-info p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.hours-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.hours-box h4 {
    color: #1e3054;
    margin-bottom: 15px;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 500;
}

/* Multi-channel Payment Page */
.mcp-hero {
    background-color: #000;
    padding: 0;
}

.mcp-hero-container {
    display: grid;
    grid-template-columns: 45% 55%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.mcp-hero-image {
    height: 100%;
    min-height: 500px;
}

.mcp-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mcp-hero-content {
    background-color: #000;
    color: #fff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mcp-hero-content h6 {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: none;
}

.mcp-hero-content h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #fff;
}

.mcp-hero-content p {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
}

.mcp-hero-content .btn-primary {
    background-color: #1e3054;
    color: #fff;
    border: none;
    padding: 16px 40px;
    display: inline-block;
    width: fit-content;
}

.mcp-hero-content .btn-primary:hover {
    background-color: #2c4a7c;
}

/* MCP Features Section */
.mcp-features {
    background-color: #000;
    padding: 60px 20px 80px;
}

.mcp-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mcp-features h2 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 500;
    position: relative;
    padding-bottom: 15px;
}

.mcp-features h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #444;
}

.mcp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mcp-feature-item {
    text-align: center;
}

.mcp-feature-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 3px solid #333;
}

.mcp-feature-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mcp-feature-item h4 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.mcp-feature-item p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .mcp-hero-container {
        grid-template-columns: 1fr;
    }
    
    .mcp-hero-image {
        min-height: 300px;
    }
    
    .mcp-hero-content {
        padding: 50px 30px;
    }
    
    .mcp-hero-content h1 {
        font-size: 32px;
    }
    
    .mcp-features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Footer */
.footer {
    background-color: #1e3054;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer p {
    margin: 8px 0;
    opacity: 0.9;
    font-size: 14px;
}

.footer strong {
    font-weight: 500;
    font-size: 16px;
}

/* Simple content page layout */
.content-page {
    min-height: 500px;
    padding: 100px 20px;
    text-align: center;
}

.content-page h2 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 36px;
    color: #1e3054;
    margin-bottom: 25px;
    font-weight: 500;
}

.content-page p {
    font-size: 18px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .btn {
        padding: 14px 30px;
    }
}
