/* Payment Hero Section */
.payment-hero {
    position: relative;
    padding: 180px 0 100px 0;
    overflow: hidden;
    background-image: url('Images/payment/paymentbg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.payment-hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.payment-hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.payment-hero-subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.btn-view-countries {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 16px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-view-countries:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.payment-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-hero-image-container {
    position: relative;
    width: 100%;
    max-width: 700px;
}

.girl-card-image {
    width: 100%;
    height: auto;
    display: block;
}

.payment-badge {
    position: absolute;
    width: auto;
    height: 80px;
}

.domestic-badge {
    top: 20%;
    left: -10%;
    z-index: 2;
}

.sepa-badge {
    top: 35%;
    left: -10%;
    z-index: 2;
}

.global-badge {
    top: 50%;
    left: -10%;
    z-index: 2;
}

.silver-coin {
    position: absolute;
    bottom: -5%;
    right: -10%;
    width: auto;
    height: 180px;
    z-index: 2;
}

/* Local Strength Global Coverage Section */
.local-global-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.local-global-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lockcard-image {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.local-global-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.local-global-title {
    font-family: 'Cairo', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.local-global-title .text-orange {
    color: #FF6B35;
}

.local-global-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.local-global-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.local-icon-box {
    background-color: #FF6B35;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
}

.local-icon-box img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.local-feature-text {
    flex: 1;
}

.local-feature-text h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .payment-hero {
        padding: 140px 0 80px 0;
    }

    .payment-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .payment-hero-title {
        font-size: 42px;
    }

    .payment-hero-subtitle {
        font-size: 16px;
    }

    .payment-badge {
        height: 60px;
    }

    .silver-coin {
        height: 90px;
    }

    .local-global-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .local-global-title {
        font-size: 36px;
    }

    .lockcard-image {
        max-width: 450px;
    }
}

@media screen and (max-width: 640px) {
    .payment-hero {
        padding: 120px 0 60px 0;
    }

    .payment-hero-title {
        font-size: 32px;
    }

    .payment-hero-subtitle {
        font-size: 14px;
    }

    .btn-view-countries {
        width: 100%;
        text-align: center;
    }

    .payment-badge {
        height: 50px;
    }

    .silver-coin {
        height: 70px;
    }

    .local-global-title {
        font-size: 28px;
        margin: 0 0 24px 0;
    }

    .local-global-features {
        gap: 16px;
    }

    .local-icon-box {
        min-width: 50px;
        height: 50px;
        padding: 12px;
    }

    .local-icon-box img {
        width: 24px;
        height: 24px;
    }

    .local-feature-text h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .payment-hero-title {
        font-size: 28px;
    }

    .payment-hero-subtitle {
        font-size: 13px;
    }

    .payment-badge {
        height: 40px;
    }

    .domestic-badge {
        left: -3%;
    }

    .sepa-badge {
        left: -5%;
    }

    .silver-coin {
        height: 60px;
        right: -3%;
    }

    .local-global-title {
        font-size: 24px;
    }

    .local-feature-text h3 {
        font-size: 14px;
    }
}

/* Multi-Currency Section */
.multi-currency-section {
    position: relative;
    padding: 150px 0;
    background-image: url('Images/payment/currencybg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 600px;
}

.multi-currency-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.multi-currency-title {
    font-family: 'Cairo', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.multi-currency-description {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0 0 32px 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.btn-fx-overview {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 16px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-fx-overview:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

/* Coin positioning */
.coin-ethereum {
    position: absolute;
    top: 5%;
    left: 2%;
    width: 130px;
    height: 130px;
    z-index: 1;
}

.coin-dollar {
    position: absolute;
    top: 8%;
    right: 25%;
    width: 120px;
    height: 120px;
    z-index: 1;
}

.coin-solana {
    position: absolute;
    bottom: 15%;
    left: 20%;
    width: 115px;
    height: 115px;
    z-index: 1;
}

.coin-bitcoin {
    position: absolute;
    bottom: 5%;
    right: 2%;
    width: 140px;
    height: 140px;
    z-index: 1;
}

/* Responsive Design for Multi-Currency */
@media screen and (max-width: 968px) {
    .multi-currency-section {
        padding: 80px 0;
    }

    .multi-currency-title {
        font-size: 42px;
    }

    .multi-currency-description {
        font-size: 16px;
    }

    .coin-ethereum {
        width: 70px;
        height: 70px;
    }

    .coin-dollar {
        width: 65px;
        height: 65px;
    }

    .coin-solana {
        width: 60px;
        height: 60px;
    }

    .coin-bitcoin {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 640px) {
    .multi-currency-section {
        padding: 60px 0;
    }

    .multi-currency-title {
        font-size: 32px;
    }

    .multi-currency-description {
        font-size: 14px;
    }

    .btn-fx-overview {
        width: 100%;
    }

    .coin-ethereum {
        width: 50px;
        height: 50px;
        top: 3%;
        left: 3%;
    }

    .coin-dollar {
        width: 45px;
        height: 45px;
        top: 5%;
        right: 5%;
    }

    .coin-solana {
        width: 40px;
        height: 40px;
        bottom: 10%;
        left: 5%;
    }

    .coin-bitcoin {
        width: 55px;
        height: 55px;
        bottom: 8%;
        right: 3%;
    }
}

/* Payment Video Section */
.payment-video-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.payment-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1800px;
    height: auto;
    z-index: 0;
    opacity: 0.4;
}

.payment-video-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-video-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.payment-video-title {
    font-family: 'Cairo', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #FF6B35;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}

.payment-signature {
    width: 200px;
    height: auto;
}

.payment-video-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Design for Payment Video Section */
@media screen and (max-width: 968px) {
    .payment-video-section {
        padding: 80px 0;
    }

    .payment-video-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .payment-video-title {
        font-size: 48px;
    }

    .payment-signature {
        width: 150px;
    }
}

@media screen and (max-width: 640px) {
    .payment-video-section {
        padding: 60px 0;
    }

    .payment-video-title {
        font-size: 36px;
    }

    .payment-signature {
        width: 120px;
    }
}

@media screen and (max-width: 480px) {
    .payment-video-title {
        font-size: 28px;
    }
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    background-color: #0a0a0a;
    border: none;
    margin: 0;
}

.use-cases-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.use-cases-title {
    font-family: 'Cairo', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.btn-open-multi-currency {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 16px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-open-multi-currency:hover {
    background-color: white;
    color: #0a0a0a;
}

.use-cases-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
}

.carousel-track .use-case-box {
    flex: 0 0 calc(50% - 20px);
}

.use-case-box {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: none;
    outline: none;
}

.use-case-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.use-case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5s ease, background 0.5s ease;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 40px;
}

.use-case-box:hover .use-case-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}

.use-case-box:hover .use-case-image {
    transform: scale(1.1);
}

.use-case-title {
    font-family: 'Cairo', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
    align-self: flex-end;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.use-case-box:hover .use-case-title {
    transform: translateY(0);
}

.use-case-description {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    text-align: right;
    align-self: flex-end;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.use-case-box:hover .use-case-description {
    transform: translateY(0);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Responsive Design for Use Cases */
@media screen and (max-width: 968px) {
    .use-cases-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }

    .use-cases-title {
        font-size: 42px;
    }

    .btn-open-multi-currency {
        width: 100%;
    }

    .carousel-track {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .use-case-box {
        height: 400px;
    }

    .carousel-nav {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    .use-cases-section {
        padding: 60px 0;
    }

    .use-cases-title {
        font-size: 32px;
    }

    .use-cases-header {
        margin-bottom: 32px;
    }

    .use-case-box {
        height: 350px;
    }

    .use-case-overlay {
        padding: 24px;
    }

    .use-case-title {
        font-size: 24px;
    }

    .use-case-description {
        font-size: 14px;
    }
}
