/* NFC Solutions Page Styles */

/* Hero Section (Frame 7) */
.nfc-hero {
    position: relative;
    background-image: url('../img/nfc-solutions-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 446px; /* From Figma */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.nfc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* #00000066 is 40% opacity */
    z-index: 1;
}

.nfc-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Matches Figma alignment */
    height: 100%;
    padding-bottom: 52px; /* From Figma */
    gap: 28px; /* row-gap from Figma */
}

.nfc-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 47px;
    font-weight: 700;
    line-height: 57px;
    margin: 0;
    color: #ffffff;
    max-width: 1040px;
}

.nfc-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.31px;
    color: rgba(255, 255, 255, 0.9); /* #ffffffe5 */
    margin: 0;
    max-width: 800px;
}

.nfc-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 48px;
    padding: 0 31px;
    border: 1px solid #ffffff;
    border-radius: 6px;
    background: transparent;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.15px;
}

.nfc-hero-btn:hover {
    background: #ffffff;
    color: #000000;
}

.nfc-hero-btn img {
    width: 16px;
    height: 16px;
    transition: filter 0.3s ease;
}

.nfc-hero-btn:hover img {
    filter: invert(1);
}

/* Review Pods Section (Frame: UI With Left Image) */
.review-pods-section {
    background: #ffffff;
    padding: 49px 0 0; /* Matches Figma padding-top */
    color: #000000;
}

.review-pods-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 89px; /* Matches Figma side padding */
    display: flex;
    flex-direction: column;
    row-gap: 49px;
}

.review-pods-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.review-pods-tag {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ff6900;
    text-transform: uppercase;
    letter-spacing: 0.56px;
    line-height: 20px;
    margin: 0;
}

.review-pods-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #101828;
    letter-spacing: 0.36px;
    line-height: 1.25;
    margin: 0;
}

.review-pods-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 40px;
}

.review-pods-features {
    display: flex;
    gap: 16px;
    min-height: 0;
}

.review-pods-col {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Matches margin-top: 16px logic */
}

.review-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.1), 0px 1px 2px -1px rgba(0,0,0,0.1);
    padding: 24px;
    width: 290px; /* Approximate width based on layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
    min-height: 220px;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

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

.review-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #101828;
    line-height: 27px;
    letter-spacing: -0.44px;
    margin: 0 0 8px 0;
}

.review-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4a5565;
    line-height: 20px;
    letter-spacing: -0.15px;
    margin: 0;
}

.review-pods-image {
    min-height: 0;
    border-radius: 11px;
    overflow: hidden;
    position: relative;
    align-self: stretch;
}

.review-pods-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-pods-action {
    display: flex;
    justify-content: center;
    padding-bottom: 60px; /* Added padding bottom */
}

.btn-orange-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff6900;
    border-radius: 10px;
    padding: 12px 32px; /* Matches Figma padding 24px 32px but 49px height suggests vertical padding is less or box-sizing different. 49px height with 16px font means (49-16)/2 = 16.5px padding. Let's use flex center and height. */
    height: 49px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.32px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-orange-lg:hover {
    background: #e05e00;
}

/* NFC Keychains & Stickers Section (Design UI in Bark Mode) */
/* Reusing nfc-keychains-section styles for stickers as layout is identical */
.nfc-dark-section {
    background: #0a1229; /* Slightly lighter than footer (#050a1c) for visual separation */
    padding: 56px 0 0; /* Matches Figma padding-top */
    color: #ffffff;
}

.nfc-dark-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px; /* Reduced from 161px to fit content side-by-side */
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.nfc-dark-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    line-height: 59px;
    letter-spacing: -1.25px;
    margin: 0;
    text-align: center;
    padding-bottom: 50px;
}

.nfc-dark-content {
    display: flex;
    justify-content: center; /* Center the whole block */
    gap: 40px; /* Adjust gap */
    align-items: center; /* Centered vertically to avoid top misalignment if image is slightly shorter */
    padding-bottom: 45px;
}

.nfc-dark-image {
    flex-shrink: 0; /* Prevent shrinking */
    width: 535px;
    height: 412px;
    border-radius: 16px;
    box-shadow: 0px 25px 51px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.nfc-dark-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nfc-dark-features {
    display: flex;
    justify-content: space-between;
    width: 616px;
    flex-shrink: 0; /* Prevent shrinking */
    gap: 24px;
    align-items: flex-start;
}

.nfc-dark-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
}

.dark-card {
    background: #2a2d35;
    border-radius: 16px;
    padding: 32px 12px; /* 32px top/bottom, horizontal adjusted for centering */
    width: 296px;
    height: 198px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.dark-card:hover {
    transform: translateY(-5px);
}

.dark-icon {
    width: 32px;
    height: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dark-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.dark-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    line-height: 28px;
    letter-spacing: -0.44px;
    margin: 0;
    text-align: center;
}

.dark-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #99a1af;
    line-height: 23px;
    letter-spacing: -0.15px;
    margin: 0;
    text-align: center;
    max-width: 230px;
}

.nfc-dark-action {
    display: flex;
    justify-content: center;
    padding-bottom: 60px; /* Added some bottom padding */
}

.btn-orange-shadow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e85d2a;
    border-radius: 10px;
    padding: 14px 40px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.32px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-orange-shadow:hover {
    background: #d1491a;
}

/* NFC Wristbands Section (Frame 11) */
.nfc-wristbands-section {
    background: #ffffff;
    padding: 61px 0 0;
    color: #000000;
}

.nfc-wristbands-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 137px; /* Matches Figma side padding */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nfc-wristbands-header {
    text-align: center;
    padding: 36px 0 40px;
}

.nfc-wristbands-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #101828;
    letter-spacing: 0.36px;
    line-height: 49px;
    margin: 0 0 25px;
}

.nfc-wristbands-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #4a5565;
    line-height: 28px;
    margin: 0;
}

.nfc-wristbands-content {
    display: flex;
    justify-content: center;
    gap: 40px; /* Spacing between features and image */
    align-items: flex-start;
    width: 100%;
}

.nfc-wristbands-features {
    display: flex;
    gap: 24px;
}

.nfc-wristbands-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wristband-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    padding: 32px;
    width: 290px;
    min-height: 232px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.wristband-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.05);
}

.wristband-icon {
    height: 40px; /* Adjust height based on icon aspect ratio */
    margin-bottom: 8px;
}

.wristband-icon img {
    height: 100%;
    width: auto;
}

.wristband-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #101828;
    line-height: 27px;
    letter-spacing: -0.44px;
    margin: 0;
    text-align: center;
}

.wristband-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4a5565;
    line-height: 20px;
    letter-spacing: -0.15px;
    margin: 0;
    text-align: center;
}

.nfc-wristbands-image {
    flex-shrink: 0;
    width: 568px;
    height: 487px;
    border-radius: 26px;
    overflow: hidden;
}

.nfc-wristbands-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nfc-wristbands-action {
    padding: 79px 0 60px; /* Matches Figma top margin for button */
}

.btn-orange-simple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e85c29;
    border-radius: 8px;
    padding: 12px 33px 12px 31px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.32px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-orange-simple:hover {
    background: #d1491a;
}

/* Responsive */
@media (max-width: 1200px) {
    .review-pods-section .container,
    .nfc-dark-section .container,
    .nfc-wristbands-section .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .review-pods-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .review-pods-image {
        height: 380px;
        min-height: 380px;
    }

    .nfc-dark-content,
    .nfc-wristbands-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .review-pods-image,
    .nfc-dark-image,
    .nfc-wristbands-image {
        width: 100%;
        max-width: 600px;
    }

    .nfc-dark-image,
    .nfc-wristbands-image {
        height: auto;
    }

    .nfc-dark-image img,
    .nfc-wristbands-image img {
        height: auto;
        width: 100%;
        display: block;
        object-fit: contain;
    }

    .review-pods-features,
    .nfc-dark-features,
    .nfc-wristbands-features {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .review-pods-col {
        width: 100%;
        max-width: 100%;
    }

    .review-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .nfc-dark-col,
    .nfc-wristbands-col {
        width: 100%;
        max-width: 100%;
    }

    .dark-card,
    .wristband-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .review-pods-section .container,
    .nfc-dark-section .container,
    .nfc-wristbands-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .review-pods-col,
    .nfc-dark-col,
    .nfc-wristbands-col {
        width: 100%;
    }

    .review-card,
    .dark-card,
    .wristband-card {
        width: 100%;
        min-width: 0;
        height: auto;
        box-sizing: border-box;
    }

    .nfc-wristbands-title,
    .nfc-dark-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .nfc-dark-image,
    .nfc-wristbands-image {
        width: 100%;
        height: auto;
    }

    .nfc-dark-image img,
    .nfc-wristbands-image img {
        height: auto;
        width: 100%;
        display: block;
        object-fit: contain;
    }
}