/* Product Page Specific Stylesheet */

/* Product Variables & Themes */
.theme-game-theory {
    --theme-color: #0F4C81;
    --theme-bg-soft: #f0f7fd;
    --theme-accent: #64B5F6;
}

.theme-gita-leadership {
    --theme-color: #2e7d32;
    --theme-bg-soft: #f1f8e9;
    --theme-accent: #81C784;
}

.theme-vedantic-esg {
    --theme-color: #512da8;
    --theme-bg-soft: #f3e5f5;
    --theme-accent: #B39DDB;
}

.theme-team-building {
    --theme-color: #f57f17;
    --theme-bg-soft: #fff3e0;
    --theme-accent: #FFCA28;
}

/* Base Product Layout */
body.product-page {
    font-family: 'Inter', sans-serif;
    color: #1d1d1f;
    background-color: #ffffff;
    line-height: 1.6;
}

.product-back-nav {
    border-bottom: 1px solid #e5e5ea;
    padding: 1rem 0;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-back-home {
    font-weight: 500;
    font-size: 0.9rem;
    color: #6e6e73;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.btn-back-home:hover {
    color: #1d1d1f;
}

/* Product Hero */
.product-hero {
    background-color: var(--theme-bg-soft);
    padding: 6rem 0 5rem;
    border-bottom: 1px solid #e5e5ea;
}

.product-hero-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.product-hero-content .product-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--theme-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.product-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    line-height: 1.05;
    background: linear-gradient(90deg, #0b111a, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.product-name-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--theme-color);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 0.4rem 1.1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.product-hero-content .product-tagline {
    font-size: 1.15rem;
    color: #444446;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.65;
    border-left: 3px solid var(--theme-color);
    padding-left: 1.25rem;
    margin-top: 1rem;
}

/* C-Suite Spec Box */
.c-suite-specs {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1.5rem;
}

.spec-item {
    flex: 1;
}

.spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6e6e73;
    margin-bottom: 0.25rem;
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1d1d1f;
}

/* Product Main Section */
.product-body-section {
    padding: 5rem 0;
}

.product-layout-grid {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
}

.product-details-left {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.product-description-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #0b111a;
}

.product-description-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3c;
    margin-bottom: 1.5rem;
}

/* Modules timeline */
.modules-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.module-card {
    border-left: 4px solid var(--theme-color);
    background-color: #fff;
    padding: 1.8rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border: 1px solid #f2f2f7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.module-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.module-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0b111a;
    margin-bottom: 0.75rem;
}

.module-card p {
    font-size: 0.9rem;
    color: #6e6e73;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.module-deliverable {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1d1d1f;
}

.module-deliverable span {
    color: var(--theme-color);
}

/* Visual Mockups Column */
.product-details-right {
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.visual-card {
    background-color: #ffffff;
    border: 1px solid #e5e5ea;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.visual-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0b111a;
    margin-bottom: 1.5rem;
}

.visual-container {
    width: 100%;
    min-height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    background-color: #fbfbfd;
    border-radius: 8px;
    padding: 1rem;
    overflow: hidden;
    border: 1px dashed #e5e5ea;
}

.visual-caption {
    font-size: 0.85rem;
    color: #6e6e73;
    line-height: 1.4;
}

/* Deliverables Grid Section */
.deliverables-section {
    background-color: #f5f5f7;
    padding: 5rem 0;
}

.deliverables-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.deliverables-header {
    text-align: center;
    margin-bottom: 4rem;
}

.deliverables-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #0b111a;
    margin-bottom: 1rem;
}

.deliverables-header p {
    font-size: 1.1rem;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.deliv-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    border: 1px solid #e5e5ea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deliv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.deliv-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: var(--theme-bg-soft);
    color: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.deliv-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #0b111a;
    margin-bottom: 0.75rem;
}

.deliv-card p {
    font-size: 0.88rem;
    color: #6e6e73;
    line-height: 1.5;
}

/* Call To Action */
.product-cta-section {
    padding: 6rem 0;
    text-align: center;
}

.product-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-cta-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #0b111a;
    margin-bottom: 1.5rem;
}

.product-cta-container p {
    font-size: 1.15rem;
    color: #6e6e73;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* VISUAL MODELS - CUSTOM CSS */

/* 1. Game Theory Matrix — fixed layout */
.gt-matrix-wrap {
    width: 100%;
    overflow-x: auto;
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
}

.gt-matrix {
    display: grid;
    grid-template-columns: 72px minmax(80px,1fr) minmax(80px,1fr);
    grid-template-rows: 44px minmax(70px,1fr) minmax(70px,1fr);
    gap: 6px;
    min-width: 260px;
    width: 260px;
    font-family: 'Inter', sans-serif;
}

.gt-corner { /* empty top-left cell */ }

.gt-header-top,
.gt-header-top-2 {
    font-size: 0.65rem;
    font-weight: 700;
    color: #6e6e73;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #f5f5f7;
    border-radius: 6px;
    padding: 0.25rem;
}

.gt-header-left-1,
.gt-header-left-2 {
    font-size: 0.65rem;
    font-weight: 700;
    color: #6e6e73;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: right;
    line-height: 1.3;
}

.gt-cell {
    background-color: #ffffff;
    border: 1px solid #e5e5ea;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.gt-cell:hover {
    background-color: #0F4C81;
    color: #ffffff;
    border-color: #0F4C81;
    transform: scale(1.04);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(15, 76, 129, 0.3);
}

.gt-payoff {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.gt-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.65;
    letter-spacing: 0.5px;
    text-align: center;
}

.gt-cell:hover .gt-label {
    color: #ffffff;
    opacity: 0.9;
}

/* 2. Gita Shield Visual */
.gita-circles-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 2rem auto 1.5rem;
}

.gita-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px dashed rgba(46, 125, 50, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.gita-ring.outer {
    width: 250px;
    height: 250px;
    border-style: solid;
    border-color: rgba(46, 125, 50, 0.1);
    background-color: rgba(46, 125, 50, 0.01);
}

.gita-ring.middle {
    width: 170px;
    height: 170px;
    border-style: solid;
    border-color: rgba(46, 125, 50, 0.2);
    background-color: rgba(46, 125, 50, 0.03);
}

.gita-ring.inner {
    width: 90px;
    height: 90px;
    border-style: solid;
    border-color: var(--theme-color);
    background-color: var(--theme-color);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

.gita-circles-container:hover .gita-ring.outer {
    background-color: rgba(46, 125, 50, 0.05);
    border-color: rgba(46, 125, 50, 0.3);
    transform: translate(-50%, -50%) scale(1.02);
}

.gita-circles-container:hover .gita-ring.middle {
    background-color: rgba(46, 125, 50, 0.1);
    border-color: rgba(46, 125, 50, 0.4);
    transform: translate(-50%, -50%) scale(1.05);
}

.gita-circles-container:hover .gita-ring.inner {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.5);
}

.gita-label-node {
    position: absolute;
    background-color: #ffffff;
    border: 1px solid #e5e5ea;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #1d1d1f;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.gita-label-node:hover {
    background-color: var(--theme-color);
    color: #ffffff;
    border-color: var(--theme-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.2);
}

.node-1 { top: -10px; left: 50%; transform: translateX(-50%); }
.node-2 { bottom: 10px; left: -20px; }
.node-3 { bottom: 10px; right: -20px; }

/* 3. Vedantic ESG concentric circles */
.esg-circles {
    position: relative;
    width: 260px;
    height: 260px;
}

.esg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: all 0.4s;
    cursor: pointer;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
}

.esg-c1 {
    width: 260px;
    height: 260px;
    background-color: rgba(81, 45, 168, 0.05);
    border: 1px solid rgba(81, 45, 168, 0.1);
    padding-top: 15px;
    z-index: 1;
}

.esg-c2 {
    width: 200px;
    height: 200px;
    background-color: rgba(81, 45, 168, 0.1);
    border: 1px solid rgba(81, 45, 168, 0.15);
    padding-top: 15px;
    z-index: 2;
}

.esg-c3 {
    width: 140px;
    height: 140px;
    background-color: rgba(81, 45, 168, 0.2);
    border: 1px solid rgba(81, 45, 168, 0.2);
    padding-top: 12px;
    z-index: 3;
}

.esg-c4 {
    width: 80px;
    height: 80px;
    background-color: var(--theme-color);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(81, 45, 168, 0.3);
    align-items: center;
    z-index: 4;
}

.esg-circle-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--theme-color);
}

.esg-c4 .esg-circle-text {
    color: #ffffff;
    font-size: 0.7rem;
    text-align: center;
}

.esg-circle:hover {
    background-color: rgba(81, 45, 168, 0.3);
    transform: translate(-50%, -50%) scale(1.05);
}

.esg-c4:hover {
    background-color: #4527a0;
}

/* 4. Behavioral Quadrants Grid */
.tb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    width: 260px;
    height: 240px;
    position: relative;
}

.tb-axis-y {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e5e5ea;
    z-index: 1;
}

.tb-axis-x {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e5e5ea;
    z-index: 1;
}

.tb-quadrant {
    background-color: #ffffff;
    border: 1px solid #f2f2f7;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s;
}

.tb-quadrant:hover {
    background-color: rgba(245, 127, 23, 0.05);
    border-color: var(--theme-color);
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tb-quad-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.25rem;
    text-align: center;
}

.tb-quad-desc {
    font-size: 0.6rem;
    color: #6e6e73;
    text-align: center;
    line-height: 1.3;
}

.tb-label-top {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    white-space: nowrap;
}

.tb-label-bottom {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    white-space: nowrap;
}

.tb-label-left {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 0.65rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    white-space: nowrap;
}

.tb-label-right {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 0.65rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    white-space: nowrap;
}


/* Cross-offerings section */
.other-offerings-section {
    padding: 5rem 0;
    background-color: #0b111a;
}

.other-offerings-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.other-offerings-header {
    margin-bottom: 3rem;
}

.other-offerings-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.other-offerings-header p {
    font-size: 0.95rem;
    color: #888;
}

.other-offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.offering-card {
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 2rem 1.75rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--offer-color, #64B5F6);
    opacity: 0;
    transition: opacity 0.3s;
}

.offering-card:hover {
    background-color: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.offering-card:hover::before {
    opacity: 1;
}

.offer-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--offer-color, #64B5F6);
}

.offer-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.offer-desc {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.5;
    flex: 1;
}

.offer-arrow {
    font-size: 1.1rem;
    color: var(--offer-color, #64B5F6);
    margin-top: 0.5rem;
    transition: transform 0.3s;
}

.offering-card:hover .offer-arrow {
    transform: translateX(4px);
}

/* Responsive styles for products */
@media (max-width: 1024px) {
    .product-hero-container, .product-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .product-details-right {
        position: static;
    }
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .other-offerings-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 4rem 0 3rem;
    }
    .product-hero-content h1 {
        font-size: 2.6rem;
    }
    .c-suite-specs {
        flex-direction: column;
        gap: 1rem;
    }
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
    .product-cta-container h2 {
        font-size: 2.2rem;
    }
    .other-offerings-grid {
        grid-template-columns: 1fr;
    }
    .gt-matrix {
        width: 220px;
    }
}
