/* Modern Product Detail Page Styles */

/* Hero Section */
.product-hero-modern {
    padding: 8rem 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.product-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 35, 85, 0.7);
    z-index: 1;
}

.product-hero-modern .container {
    position: relative;
    z-index: 2;
}

.product-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.product-hero-badge i {
    color: var(--color-secondary);
}

.product-hero-modern h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.product-hero-modern p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* NexraLink Specific Hero BG */
.nexralink-hero-modern { background-image: url('/images/nexralink-hero.jpg'); }
.nexralink-hero-modern::before { background: linear-gradient(45deg, rgba(37, 99, 235, 0.85), rgba(29, 78, 216, 0.95)); } /* var(--color-primary) */

/* NexraNeo Specific Hero BG */
.nexraneo-hero-modern { background-image: url('/images/nexraneo-hero.jpg'); }
.nexraneo-hero-modern::before { background: linear-gradient(45deg, rgba(16, 185, 129, 0.85), rgba(5, 150, 105, 0.95)); } /* var(--color-secondary) */

/* NexraPay Specific Hero BG */
.nexrapay-hero-modern { background-image: url('/images/nexrapay-hero.jpg'); }
.nexrapay-hero-modern::before { background: linear-gradient(45deg, rgba(29, 78, 216, 0.85), rgba(30, 64, 175, 0.95)); } /* var(--color-primary-dark) */

/* Offerings Section */
.offerings-section {
    padding: 6rem 0;
}

.offering-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.offering-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.offering-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Product Contact Section */
.product-contact-section {
    padding: 6rem 0;
    background: var(--color-light);
}

.product-contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-light);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.2);
}

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

/* Zupiyo Specific Hero BG */
.zupiyo-hero-modern { background-image: url('/images/zupiyo-hero.jpg'); }
.zupiyo-hero-modern::before { background: linear-gradient(45deg, rgba(245, 158, 11, 0.85), rgba(217, 119, 6, 0.95)); } /* var(--color-accent) */

/* Feature Section */
.feature-section {
    padding: 6rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card-modern {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-modern {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Modern Pricing Section */
.pricing-section-modern {
    padding: 6rem 0;
}

.pricing-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card-modern {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid #eef2f6;
    transition: all 0.4s ease;
    text-align: center;
}

.pricing-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 71, 171, 0.1);
}

.pricing-card-modern.featured {
    transform: translateY(-20px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 71, 171, 0.15);
}

.pricing-card-modern-header {
    margin-bottom: 1.5rem;
}

.pricing-card-modern-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.pricing-card-modern-header p {
    color: var(--color-gray);
}

.pricing-price-modern {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.pricing-price-modern span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray);
}

.pricing-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    text-align: left;
}

.pricing-features-modern li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-features-modern li i {
    color: var(--color-secondary);
}

/* Tabs Section */
.tabs-section {
    padding: 6rem 0;
}

.tabs-container-modern {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.tabs-modern {
    display: flex;
    background: var(--color-light-grey);
    border-bottom: 1px solid var(--color-border);
}

.tab-btn-modern {
    padding: 1.25rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn-modern.active {
    color: var(--color-primary);
    background: #fff;
}

.tab-content-modern {
    display: none;
    padding: 3rem;
}

.tab-content-modern.active {
    display: block;
}

.tab-content-modern h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.tab-content-modern .feature-list {
    list-style: none;
    padding: 0;
    columns: 2;
}

.tab-content-modern .feature-list li {
    margin-bottom: 0.75rem;
}

.tab-content-modern .feature-list i {
    color: var(--color-secondary);
    margin-right: 0.75rem;
}

/* Case Study Section */
.case-study-section {
    padding: 6rem 0;
    background: var(--color-light-grey);
}

.case-study-card-modern {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.case-study-content {
    padding: 4rem;
}

.case-study-content .badge {
    margin-bottom: 1.5rem;
}

.case-study-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.case-study-results {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.case-study-result-item {
    text-align: center;
}

.case-study-result-item .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.case-study-result-item .text {
    color: var(--color-text-muted);
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Payment Methods Section */
.payment-methods-section {
    padding: 6rem 0;
}

.payment-methods-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-category-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.payment-category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-logos-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.payment-logo-modern {
    height: 40px;
    display: flex;
    align-items: center;
}

.payment-logo-modern img {
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.payment-logo-modern:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Integration Process Section */
.integration-process-section {
    padding: 6rem 0;
    background: var(--color-light-grey);
}

.integration-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.integration-timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--color-primary);
    opacity: 0.2;
    top: 0;
    bottom: 0;
    left: 24px;
}

.timeline-item {
    margin-left: 50px;
    padding-left: 3rem;
    padding-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -10px;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px var(--color-primary);
}

.timeline-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}


/* Use Cases Section */
.use-cases-section {
    padding: 6rem 0;
}

.use-case-card-modern {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.use-case-icon-modern {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.use-case-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Comparison Table Section */
.comparison-section {
    padding: 6rem 0;
    background: var(--color-light-grey);
}

.comparison-table-modern {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.comparison-table-modern th,
.comparison-table-modern td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table-modern th {
    background: var(--color-primary-dark);
    color: #fff;
    font-weight: 600;
}

.comparison-table-modern td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table-modern tr:last-child td {
    border-bottom: none;
}

.comparison-table-modern .check {
    color: var(--color-success);
    font-size: 1.5rem;
}

.comparison-table-modern .cross {
    color: var(--color-danger);
    font-size: 1.5rem;
}

.comparison-table-modern .limited {
    color: var(--color-warning);
    font-weight: 600;
}


/* CTA Section */
.product-cta-section {
    padding: 6rem 0;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
}

.product-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.product-cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}
