/* Card Hero Section */
.card-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.card-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Images/card/cardbg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

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

.card-hero-left {
    animation: fadeInUp 1s ease-out;
}

.card-hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 64px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: white;
    margin-bottom: 24px;
}

.card-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

.card-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-get-my-card {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A5B 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-get-my-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-issue-team-cards {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-issue-team-cards:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.card-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cards-image {
    width: 100%;
    max-width: 900px;
    height: auto;
}

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

/* Cards For Every Occasion Section */
.cards-occasion-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.cards-occasion-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cards-occasion-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.text-orange {
    color: #FF6B35;
}

.cards-occasion-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cards-occasion-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.cards-icon-box {
    width: 56px;
    height: 56px;
    background: #FF6B35;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.cards-feature-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 968px) {
    .card-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .card-hero-title {
        font-size: 48px;
        line-height: 52px;
    }

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

    .hero-cards-image {
        max-width: 450px;
        margin: 0 auto;
    }

    .cards-occasion-section {
        padding: 60px 0;
    }

    .cards-occasion-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cards-occasion-title {
        font-size: 36px;
    }

    .cards-stack-image {
        max-width: 450px;
    }

    .cards-occasion-features {
        gap: 20px;
    }

    .cards-icon-box {
        width: 48px;
        height: 48px;
    }

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

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

@media screen and (max-width: 640px) {
    .card-hero {
        padding: 80px 0 40px;
    }

    .card-hero-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .card-hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .card-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-get-my-card,
    .btn-issue-team-cards {
        width: 100%;
        padding: 14px 32px;
        font-size: 15px;
    }

    .hero-cards-image {
        max-width: 100%;
    }

    .cards-occasion-section {
        padding: 50px 0;
    }

    .cards-occasion-content {
        gap: 40px;
    }

    .cards-occasion-title {
        font-size: 28px;
    }

    .cards-stack-image {
        max-width: 100%;
    }

    .cards-occasion-features {
        gap: 18px;
    }

    .cards-icon-box {
        width: 44px;
        height: 44px;
    }

    .cards-icon-box img {
        width: 22px;
        height: 22px;
    }

    .cards-feature-text h3 {
        font-size: 15px;
    }
}

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

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

    .cards-occasion-title {
        font-size: 24px;
    }
}

/* Physical Card Advantages Section */
.physical-card-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.physical-card-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.physical-card-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.physical-card-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-arrow {
    color: #FF6B35;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.physical-card-feature p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0;
}

.btn-apply-now {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-apply-now:hover {
    background: #FF8A5B;
    transform: translateY(-2px);
}

.physical-card-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tapcard-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 24px;
}

/* Physical Card Section Responsive */
@media screen and (max-width: 968px) {
    .physical-card-section {
        padding: 60px 0;
    }

    .physical-card-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .physical-card-title {
        font-size: 48px;
    }

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

@media screen and (max-width: 640px) {
    .physical-card-section {
        padding: 50px 0;
    }

    .physical-card-title {
        font-size: 36px;
    }

    .physical-card-feature p {
        font-size: 15px;
    }

    .btn-apply-now {
        width: 100%;
        padding: 14px 32px;
    }

    .tapcard-image {
        max-width: 100%;
    }
}

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

    .physical-card-feature p {
        font-size: 14px;
    }
}

/* Card Security Section */
.card-security-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.card-security-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.card-security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.card-security-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

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

.card-security-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 750px;
}

.btn-security-features {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-security-features:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Card Security Section Responsive */
@media screen and (max-width: 968px) {
    .card-security-section {
        padding: 100px 0;
    }

    .card-security-title {
        font-size: 48px;
    }

    .card-security-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .card-security-section {
        padding: 80px 0;
    }

    .card-security-title {
        font-size: 36px;
    }

    .card-security-description {
        font-size: 15px;
    }

    .btn-security-features {
        width: 100%;
        padding: 14px 32px;
    }
}

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

    .card-security-description {
        font-size: 14px;
    }
}

/* Video Section Styles */
.account-opening-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-opening-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1800px;
    height: auto;
    z-index: 1;
    background-repeat: no-repeat;
}

.account-opening-content {
    position: relative;
    z-index: 2;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.video-thumbnail-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: background 0.3s ease;
}

.video-thumbnail-container:hover .play-button-overlay {
    background: transparent;
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.account-video {
    width: 100%;
    height: auto;
    border-radius: 16px;
}
