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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch optimization for mobile */
* {
    -webkit-tap-highlight-color: transparent;
}

button,
a {
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

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

/* Header Section */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo img {
    height: 70px;
    width: auto;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto;
    margin-right: 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-contact {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #1e3a5f;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #1e3a5f 0%, #2a4d75 100%), url('img/Hero/bg-baru.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 100px 0 150px;
    position: relative;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 940px;
    margin: 0 auto;
}

.hero-title {
    font-weight: 700;
    font-style: normal;
    font-size: 86px;
    line-height: 110%;
    letter-spacing: -0.02em;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-weight: 500;
    font-style: normal;
    font-size: 21px;
    line-height: 110%;
    letter-spacing: -0.02em;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-licensed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.licensed-text {
    font-weight: 500;
    font-style: italic;
    font-size: 18.92px;
    line-height: 110%;
    letter-spacing: -0.02em;
    text-align: center;
    vertical-align: middle;
    opacity: 0.9;
}

.bank-logo {
    height: 40px;
    width: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #C1820C;
    color: #fff;
    width: 178px;
    height: 67px;
    padding: 16px 21px;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    line-height: 145%;
    letter-spacing: -0.005em;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(193, 130, 12, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10.81px;
}

.btn-cta-primary:hover {
    background: #a66f0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(193, 130, 12, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: #FFFFFF;
    width: 303px;
    height: 67px;
    padding: 16px 21px;
    border: 2px solid #FFFFFF;
    border-radius: 16px;
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
    line-height: 145%;
    letter-spacing: -0.005em;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 1;
}

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

/* Statistics Card */
.statistics-card {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 10;
}

.statistics-card .container {
    background: #fff;
    border-radius: 16px;
    padding: 50px 80px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
    max-width: 1246px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    font-weight: 700;
    font-style: normal;
    font-size: 17px;
    line-height: 110%;
    letter-spacing: -0.02em;
    text-align: center;
    vertical-align: middle;
    color: #505050;
    margin-bottom: 8px;
}

.stat-number {
    font-weight: 900;
    font-style: normal;
    font-size: 54px;
    line-height: 110%;
    letter-spacing: -0.02em;
    text-align: center;
    vertical-align: middle;
    color: #01175E;
}

/* Why NBPAY Section */
.why-nbpay {
    padding: 180px 0 80px;
    background-color: #FFFFFF;
}

.section-title {
    font-weight: 800;
    font-style: normal;
    font-size: 66px;
    line-height: 120%;
    text-align: center;
    vertical-align: bottom;
    color: #01175E;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-item {
    width: 595px;
    max-width: 100%;
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 320px;
    height: 320px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 320px;
    height: 320px;
    object-fit: contain;
}

.feature-title {
    font-weight: 800;
    font-style: normal;
    font-size: 32px;
    line-height: 145%;
    letter-spacing: -0.005em;
    text-align: center;
    vertical-align: middle;
    color: #01175E;
    margin-bottom: 16px;
}

.feature-description {
    font-weight: 400;
    font-style: normal;
    font-size: 21px;
    line-height: 145%;
    letter-spacing: -0.005em;
    text-align: center;
    color: #000000;
}

/* Quote Section */
.quote-section {
    background: #f5f5f5;
    height: 320px;
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-text {
    font-weight: 700;
    font-style: normal;
    font-size: 43px;
    line-height: 130%;
    letter-spacing: -0.02em;
    text-align: center;
    vertical-align: middle;
    color: #001148;
    margin: 0 auto;
    max-width: 1320px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Supported Payment Methods Section */
.supported-payment {
    background: url('img/Quote/bg-payment.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: #fff;
    position: relative;
}

.supported-payment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(30, 58, 95, 0.75); */
    z-index: 0;
}

.supported-payment .container {
    position: relative;
    z-index: 1;
}

.supported-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

.supported-text {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 580px;
    max-width: 100%;
}

.supported-title {
    font-weight: 800;
    font-style: normal;
    font-size: 64.88px;
    line-height: 145%;
    letter-spacing: -0.005em;
    vertical-align: middle;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.supported-subtitle {
    font-weight: 500;
    font-style: normal;
    font-size: 32.44px;
    line-height: 145%;
    letter-spacing: -0.005em;
    vertical-align: middle;
    color: #ffffff;
    opacity: 0.95;
}

.supported-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    height: 100%;
}

.supported-image img {
    width: 100%;
    height: auto;
    max-width: 550px;
    object-fit: contain;
}

.payment-labels {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
}

.payment-label {
    background: #fff;
    color: #1e3a5f;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 160px;
}

/* Payment Methods Grid Section */
.payment-methods {
    padding: 80px 0;
    background: #fff;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

.payment-category {
    width: 650px;
    max-width: 100%;
    margin: 0 auto 40px;
}

.category-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 54px;
    line-height: 145%;
    letter-spacing: -0.005em;
    text-align: center;
    vertical-align: middle;
    color: #001B63;
    margin-bottom: 30px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.logos-grid img {
    width: 190px;
    height: 110px;
    max-width: 100%;
    border-radius: 6px;
    object-fit: contain;
    filter: grayscale(0);
    transition: transform 0.3s ease;
}

.logos-grid img:hover {
    transform: scale(1.1);
}

/* Contact Form Section */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

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

.contact-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 145%;
    letter-spacing: -0.005em;
    vertical-align: middle;
    color: #000000;
    margin-bottom: 16px;
}

.contact-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 66px;
    line-height: 110%;
    letter-spacing: -0.005em;
    vertical-align: middle;
    color: #06257B;
    margin-bottom: 20px;
}

.contact-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.005em;
    vertical-align: middle;
    color: #000000;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.005em;
    color: #000000;
}

.contact-content-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 21px;
    line-height: 110%;
    letter-spacing: -0.005em;
    color: #000000;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.005em;
    color: #000000;
}

.form-input,
.form-textarea {
    padding: 14px 18px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #000000;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1e3a5f;
}

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

.form-input-group {
    display: flex;
    gap: 12px;
    width: 100%;
}

.form-input-small {
    flex: 0 0 auto;
    width: 120px;
}

.form-input-large {
    flex: 1;
}

.btn-submit {
    background: #2A4EC3;
    color: #FFFFFF;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #2340A8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 78, 195, 0.3);
}

/* Footer Section */
.footer {
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

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

.footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #333333;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #333333;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }
    
    .supported-content {
        grid-template-columns: 1fr;
    }
    
    .payment-labels {
        position: static;
        transform: none;
        margin-top: 20px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Header */
    .header {
        overflow: visible;
        padding: 12px 0;
    }
    
    .header-content {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    .nav-buttons {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 8px;
        width: calc(100% - 32px);
        max-width: 320px;
        background: #ffffff;
        padding: 12px 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        flex-direction: column;
        gap: 0;
        border-radius: 12px;
        z-index: 9999;
    }
    
    .nav-buttons.active {
        display: flex !important;
    }
    
    .nav-buttons .nav-link {
        display: flex;
        align-items: center;
        padding: 14px 12px;
        font-size: 16px;
        font-weight: 500;
        color: #333;
        min-height: 48px;
        line-height: 20px;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        justify-content: center;
    }
    
    .nav-buttons .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-buttons .nav-link:hover {
        background: #f7f9fa;
        border-radius: 8px;
    }
    
    .btn-contact {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 8px 14px;
        font-size: 13px;
        font-weight: 600;
        height: 38px;
        min-width: 76px;
        width: auto;
        border-radius: 8px;
        margin-left: auto;
        margin-right: 4px;
        flex-shrink: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-shrink: 0;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 0;
    }
    
    .hero-licensed {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 24px;
    }
    
    .licensed-text {
        font-size: 14px;
    }
    
    .bank-logo {
        height: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        height: 50px;
        font-size: 18px;
        padding: 12px 20px;
    }
    
    /* Statistics Card */
    .statistics-card {
        margin-top: 30px;
        margin-bottom: 20px;
        position: relative;
    }
    
    .statistics-card .container {
        padding: 24px 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 0;
    }
    
    .stat-label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    /* Why NBPAY Section */
    .why-nbpay {
        padding: 80px 0 40px;
    }
    
    .section-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 30px;
        padding: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item {
        width: 100%;
        max-width: 100%;
        padding: 20px 16px;
        margin: 0 auto;
    }
    
    .feature-icon {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }
    
    .feature-icon img {
        width: 200px;
        height: 200px;
    }
    
    .feature-title {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .feature-description {
        font-size: 15px;
        line-height: 1.5;
        padding: 0;
    }
    
    /* Quote Section */
    .quote-section {
        height: auto;
        padding: 40px 16px;
        min-height: auto;
    }
    
    .quote-text {
        font-size: 18px;
        line-height: 1.4;
        padding: 0;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    /* Supported Payment Section */
    .supported-payment {
        padding: 40px 0;
    }
    
    .supported-content {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }
    
    .supported-text {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    
    .supported-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .supported-subtitle {
        font-size: 16px;
        line-height: 1.4;
        color: #000000;
    }
    
    /* Payment Methods Section */
    .payment-methods {
        padding: 40px 0;
    }
    
    .payment-methods .container {
        padding: 0 16px;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .payment-category {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .category-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 20px;
        padding: 0;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        max-width: 100%;
        justify-items: center;
    }
    
    .logos-grid img {
        width: 100%;
        max-width: 140px;
        height: auto;
        object-fit: contain;
        aspect-ratio: 190/110;
        border-radius: 6px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        padding: 0;
    }
    
    .contact-label {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .contact-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .contact-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    
    .contact-details {
        gap: 16px;
        margin-bottom: 0;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-label-text {
        font-size: 14px;
    }
    
    .contact-content-text {
        font-size: 18px;
    }
    
    .contact-form-wrapper {
        padding: 24px 16px;
        width: 100%;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 16px;
        font-size: 16px;
        width: 100%;
    }
    
    .form-input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-input-small,
    .form-input-large {
        width: 100%;
    }
    
    .btn-submit {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-social {
        gap: 16px;
        justify-content: center;
    }
    
    /* Back to Top */
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    /* Header */
    .header {
        padding: 10px 0;
    }
    
    .logo img {
        height: 45px;
    }
    
    .nav-buttons {
        width: calc(100% - 32px);
        max-width: 300px;
        padding: 10px 12px;
    }
    
    .nav-buttons .nav-link {
        padding: 12px 10px;
        font-size: 15px;
        min-height: 44px;
    }
    
    .btn-contact {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 600;
        height: 34px;
        min-width: 68px;
        border-radius: 8px;
        margin-left: auto;
        margin-right: 4px;
        flex-shrink: 0;
    }
    
    .mobile-menu-btn {
        flex-shrink: 0;
    }
    
    /* Hero Section */
    .hero {
        padding: 32px 0 50px;
    }
    
    .hero-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 16px;
    }
    
    .licensed-text {
        font-size: 12px;
    }
    
    .bank-logo {
        height: 28px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        height: 48px;
        font-size: 16px;
        padding: 12px 20px;
        max-width: 100%;
    }
    
    /* Statistics Card */
    .statistics-card .container {
        padding: 20px 16px;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    /* Why NBPAY Section */
    .why-nbpay {
        padding: 60px 0 32px;
    }
    
    .section-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 24px;
    }
    
    .features-grid {
        gap: 24px;
    }
    
    .feature-item {
        padding: 16px;
    }
    
    .feature-icon {
        width: 180px;
        height: 180px;
        margin-bottom: 16px;
    }
    
    .feature-icon img {
        width: 180px;
        height: 180px;
    }
    
    .feature-title {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Quote Section */
    .quote-section {
        padding: 32px 16px;
    }
    
    .quote-text {
        font-size: 16px;
        line-height: 1.4;
    }
    
    /* Supported Payment Section */
    .supported-payment {
        padding: 32px 0;
    }
    
    .supported-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .supported-subtitle {
        font-size: 14px;
        line-height: 1.4;
        color: #000000;
    }
    
    /* Payment Methods Section */
    .payment-methods {
        padding: 32px 0;
    }
    
    .payment-methods .container {
        padding: 0 16px;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .payment-category {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .category-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 16px;
        padding: 0;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        max-width: 100%;
        justify-items: center;
    }
    
    .logos-grid img {
        width: 100%;
        max-width: 120px;
        height: auto;
        aspect-ratio: 190/110;
        object-fit: contain;
        border-radius: 6px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 32px 0;
    }
    
    .contact-content {
        gap: 24px;
    }
    
    .contact-label {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .contact-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .contact-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-label-text {
        font-size: 13px;
    }
    
    .contact-content-text {
        font-size: 16px;
    }
    
    .contact-form-wrapper {
        padding: 20px 16px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 14px;
        font-size: 16px;
    }
    
    .btn-submit {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* Footer */
    .footer {
        padding: 24px 0;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-left {
        gap: 12px;
    }
    
    .footer-nav {
        gap: 10px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    /* Back to Top */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 16px;
        right: 16px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1e3a5f;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

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

.back-to-top:hover {
    background: #2a4d75;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(30, 58, 95, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}
