/* Product Profile Specific Styles */

:root {
    --highlight-gold: #CAA554;
    --dark-green: #002d1a;
    --light-cream: #F9F8F3;
    --border-color: rgba(0, 0, 0, 0.08);
}

.container {
    max-width: 1600px;
}

.performance-metrics-section {
    background-color: var(--dark-green);
    padding: 60px 0;
    color: #fff;
    overflow: hidden;
}

.section-subtitle-gold {
    color: var(--highlight-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.metrics-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
}

/* Metric Items & Bars */
.metric-info {
    font-family: 'Outfit', sans-serif;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
}

.metric-value {
    color: var(--highlight-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.progress-bar-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--highlight-gold);
    width: 0;
    transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.metric-subtext {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: lowercase;
}

/* Animation Utilities for Section 4 */
.performance-metrics-section .reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: calc(var(--delay, 0) * 0.15s);
}

.performance-metrics-section .reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.performance-metrics-section .reveal-up.active .progress-bar-fill {
    width: var(--target-width);
}

/* Section 5: Application Matrix */
.application-matrix-section {
    padding: 100px 0;
    background-color: #fff;
}

.matrix-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-green);
}

.matrix-title span {
    color: var(--highlight-gold);
}

.app-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.app-card.large-card {
    height: 500px;
}

.app-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.app-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.app-card:hover img {
    transform: scale(1.1);
}

.app-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgb(0 0 0 / 25%) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.app-index {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 35px;
    height: 35px;
    background-color: var(--highlight-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.app-tags {
    color: var(--highlight-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.app-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.app-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.app-sub-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.app-sub-tags span {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.app-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.8rem;
}

.app-footer .inclusion {
    color: var(--highlight-gold);
    font-weight: 700;
}

.app-footer .benefits {
    color: rgba(255, 255, 255, 0.6);
}

/* Animations for Section 5 */
.application-matrix-section .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: calc(var(--delay, 0) * 0.15s);
}

.application-matrix-section .reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.app-card:hover {
    transition-delay: 0s !important;
}

/* Section 6: Complete Specification Sheet */
.specification-sheet-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.spec-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-green);
}

.spec-title span {
    color: var(--highlight-gold);
}

.spec-subtitle {
    max-width: 800px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.spec-table-container {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.spec-table-header {
    background-color: var(--dark-green);
    color: #fff;
    padding: 20px 25px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    border-bottom: 2px solid var(--highlight-gold);
}

.spec-table {
    margin-bottom: 0;
}

.spec-table thead th {
    background-color: #01321E;
    color: var(--highlight-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 15px 25px;
    border: none;
    text-transform: uppercase;
}

.spec-table tbody td {
    padding: 12px 25px;
    font-size: 0.85rem;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    vertical-align: middle;
}

.spec-table tbody tr:nth-child(even) {
    background-color: #f7f7f7;
}

.spec-table tbody tr:hover {
    background-color: rgba(202, 165, 84, 0.05);
}

.table-note {
    font-size: 0.75rem;
    font-style: italic;
    color: #888;
    padding: 0 10px;
}

.text-gold {
    color: var(--highlight-gold) !important;
}

.spec-footer-note {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--highlight-gold);
}

/* Animations for Section 6 */
.specification-sheet-section .reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: calc(var(--delay, 0) * 0.1s);
}

.specification-sheet-section .reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.spec-table-container:hover {
    transition-delay: 0s !important;
}

/* Section 7: Packaging, Storage & Shelf Life */
.packaging-storage-section {
    padding: 60px 0;
    background-color: #fff;
}

/* Packaging Cards */
.pkg-card {
    background: #F7F5F0;
    border: 1px solid #E5E1D8;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pkg-card:hover {
    background: #01321E;
    border-color: var(--highlight-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition-delay: 0s !important;
}

.pkg-card:hover .pkg-name {
    color: var(--highlight-gold);
}

.pkg-card:hover .pkg-desc {
    color: rgba(255, 255, 255, 0.7);
}

.pkg-card:hover .pkg-icon {
    background-color: var(--highlight-gold);
    color: #01321E;
}

.pkg-icon {
    width: 50px;
    height: 50px;
    background: #01321E;
    color: var(--highlight-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.pkg-thumb {
    width: 250px;
    height: 185px;
    object-fit: contain;
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
}

.pkg-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--highlight-gold);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* .card-border {
    border: 2px solid #CAA55480;
    border-radius: 20px;

} */

.pkg-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.pkg-desc {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
    transition: color 0.3s ease;
}

/* Storage Cards (Dark Green) */
.storage-card {
    background: #01321E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.storage-card:hover {
    background: var(--highlight-gold);
    border-color: #01321E;
    transform: translateY(-5px);
    transition-delay: 0s !important;
}

.storage-card:hover .storage-name,
.storage-card:hover .storage-desc {
    color: #01321E;
}

.storage-card:hover .storage-label {
    color: #01321E;
    opacity: 0.7;
}

.storage-card:hover .storage-icon {
    background-color: #01321E;
    color: var(--highlight-gold);
}

.storage-card:hover .badge-recommended {
    background-color: #01321E;
    color: var(--highlight-gold);
    border-color: #01321E;
}

.storage-icon {
    width: 45px;
    height: 45px;
    background: var(--highlight-gold);
    color: #01321E;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.storage-img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    position: absolute;
    right: 10px;
    top: 5px;
    opacity: 0.9;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.storage-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--highlight-gold);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.storage-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    transition: color 0.3s ease;
}

.badge-recommended {
    font-size: 0.55rem;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--highlight-gold);
    color: var(--highlight-gold);
}

.storage-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    transition: color 0.3s ease;
}

/* Shelf Life Bar */
.shelf-life-bar {
    background: #01321E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
}

.border-end-light {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sl-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.sl-value {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--highlight-gold);
    margin: 0;
    line-height: 1;
}

.sl-unit {
    color: var(--highlight-gold);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1rem;
}

.sl-icon-wrapper {
    width: 45px;
    height: 45px;
    background: var(--highlight-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sl-icon-img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.sl-sub-item {
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

/* .sl-sub-item:hover {
    background: var(--highlight-gold);
}

.sl-sub-item:hover .sl-title {
    color: #01321E;
}

.sl-sub-item:hover .sl-desc {
    color: rgba(1, 50, 30, 0.7);
}

.sl-sub-item:hover .sl-icon-wrapper {
    background: #fff;
} */
.table-alignment {
    gap: 2.2rem !important;

}

.sl-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.sl-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Animations for Section 7 */
.packaging-storage-section .reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: calc(var(--delay, 0) * 0.1s);
}

.packaging-storage-section .reveal-up.active {
    opacity: 1;
    transform: translateY(0);
    border-radius: 20px;
}

@media (max-width: 767px) {
    .border-end-light {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Section 1: Header Bar */
.product-profile-section-1 {
    background-color: var(--dark-green);
    padding: 20px 0;
}

.profile-header-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-header-bar .line {
    height: 1px;
    background-color: var(--highlight-gold);
    flex-grow: 1;
    max-width: 100px;
}

.profile-title {
    color: var(--highlight-gold);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

/* Section 2: Layout */
.product-profile-section-2 {
    background-color: #fff;
    color: #333;
}

/* Left Content Column */
.product-content-col {
    padding: 80px 0% 40px 8.5%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-wrapper {
    max-width: 700px;
}

.main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-green);
    line-height: 1.1;
}

.main-title .highlight {
    color: var(--highlight-gold);
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Highlight Cards */
.highlight-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-gold);
}

.highlight-card .card-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #01321E;
    margin-bottom: 5px;
}

.highlight-card .card-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    color: #CAA554;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.highlight-card .card-text {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

/* Compositional Specifications */
.specs-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 10px;
}

.specifications-box {
    margin-top: 40px;
}

/* .specs-grid {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
} */

.spec-item {
    padding: 20px;
    border: 1px solid var(--border-color);
    margin-top: -1px;
    margin-left: -1px;
    transition: background-color 0.3s ease;
}

.spec-item:hover {
    background-color: #fdfaf3;
}

.spec-label {
    font-size: 0.8rem;
    color: var(--highlight-gold);
    margin-bottom: 5px;
    font-weight: 700;
}

.spec-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 2px;
}

.spec-detail {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
}

/* Buttons */
.btn-primary-green {
    background-color: var(--dark-green);
    color: #fff;
    border: none;
    transition: all 0.3s;
}

.btn-primary-green:hover {
    background-color: var(--highlight-gold);
    color: #000;
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 1px solid var(--highlight-gold);
    color: var(--highlight-gold);
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background-color: var(--highlight-gold);
    color: #fff;
    transform: translateY(-2px);
}

/* Right Image Column */
.product-image-col {
    background-color: var(--dark-green);
    position: relative;
    overflow: hidden;
    min-height: 800px;
}

.banner-image-container {
    width: 100%;
    height: 100%;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* display: block; */
}

/* Floating Gold Badge */
.floating-badge-gold {
    position: absolute;
    top: 50px;
    left: 40px;
    background-color: var(--highlight-gold);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-green);
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: 1px;
}

/* Certifications Tags */
.certifications-overlay {
    position: absolute;
    bottom: 120px;
    left: 40px;
    right: 40px;
    z-index: 5;
}

.cert-title {
    display: inline-flex;
    padding: 10px;
    border-radius: 15px;
    background-color: var(--dark-green);
    color: var(--highlight-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.badge-tag {
    background: #01321E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.badge-tag:hover {
    background: var(--highlight-gold);
    color: var(--dark-green);
    border-color: var(--highlight-gold);
    transform: translateY(-2px);
}

/* Animations */

/* Bottom Stats Bar (Overlapping image) */
.bottom-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 45, 26, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.stat-label {
    color: var(--highlight-gold);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem;
}

.stat-value {
    color: #fff;
    font-weight: 500;
}

.section-subtitle-lined {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--highlight-gold);
    letter-spacing: 2px;
}

.section-subtitle-lined::before,
.section-subtitle-lined::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: var(--highlight-gold);
}

/* Section 3: Fiber Architecture Section */
.fiber-architecture-section {
    background-color: #fff;
    padding: 60px 0;
}

.architecture-header {
    max-width: 900px;
    margin: 0 auto 60px;
}

.architecture-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-green);
    line-height: 1;
}

.architecture-title span {
    color: var(--highlight-gold);
}

.architecture-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Indicative Ratio Bar */
.ratio-bar-wrapper {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 30px 15px;
    border-top: 1px solid #CAA55480;
    border-bottom: 1px solid #CAA55480;
}

.ratio-label {
    color: var(--highlight-gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ratio-bar-wrapper .text-muted {
    color: var(--highlight-gold) !important;
}

.indicative-ratio-bar {
    height: 27px;
    background-color: #f0f0f0;
    border-radius: 50px;
    display: flex;
    overflow: hidden;
    cursor: pointer;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.bar-segment {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* font-size: 0.65rem; */
    font-weight: 700;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-idf {
    width: 80%;
    background-color: var(--highlight-gold);
    /* color: #0B3A27; */
}

.bar-sdf {
    width: 20%;
    background-color: #CAA55440;
    color: var(--dark-green);
}

/* Interaction Panes */
.fiber-interaction-row {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.fiber-pane {
    padding: 60px;
    min-height: 800px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fiber-pane * {
    transition: all 0.3s ease;
}

.pane-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pane-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    border: 1px solid var(--highlight-gold);
}

.pane-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.pane-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: #CAA55426;
}

.pane-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 1;
    /* Normally show in opacity 1 */
}

.pane-section-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: var(--highlight-gold);
}

/* Property List */
.property-list {
    list-style: none;
    padding: 0;
}

.property-item {
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 0px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

/* Odd/Even Type row cell color change */
.active-idf .idf-pane .property-item:nth-child(even),
.active-sdf .sdf-pane .property-item:nth-child(even) {
    background-color: #CAA55426;
}

.active-idf .sdf-pane .property-item:nth-child(even),
.active-sdf .idf-pane .property-item:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

.property-item i {
    color: var(--highlight-gold);
    font-size: 1.1rem;
    margin-top: 2px;
}

.prop-content strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.prop-content p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 1;
}

.property-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.idf-pane .property-item i {
    color: var(--highlight-gold);
}

.sdf-pane .property-item i {
    color: var(--highlight-gold);
}

/* Info Boxes */
.pane-info-box {
    margin-top: 50px;
    padding: 30px;
    border-radius: 15px;
    background: #CAA55426;
}

.info-box-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    color: #CAA554 !important;
}

.info-box-text {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    opacity: 1;
}

/* INTERACTIVE STATE: IDF ACTIVE */
.active-idf .idf-pane {
    background-color: white !important;
    color: var(--dark-green) !important;
}

.active-idf .sdf-pane {
    background-color: var(--dark-green) !important;
    color: #ffffff !important;
}

.active-idf .bar-idf {
    flex-grow: 1.5;
    background-color: var(--highlight-gold) !important;
    color: #0B3A27 !important;
}

.active-idf .bar-sdf {
    flex-grow: 1;
    background-color: #CAA55440 !important;
    color: var(--highlight-gold) !important;
}

/* INTERACTIVE STATE: SDF ACTIVE */
.active-sdf .idf-pane {
    background-color: var(--dark-green) !important;
    color: #ffffff !important;
}

.active-sdf .sdf-pane {
    background-color: white !important;
    color: var(--dark-green) !important;
}

.active-sdf .bar-sdf {
    flex-grow: 1.5;
    background-color: var(--highlight-gold) !important;
    color: #0B3A27 !important;
}

.active-sdf .bar-idf {
    flex-grow: 1;
    background-color: #CAA55440 !important;
    color: var(--highlight-gold) !important;
}

/* IDF Pane Content Colors when ACTIVE (Light) */
.active-idf .idf-pane .pane-main-title,
.active-sdf .sdf-pane .pane-main-title {
    color: var(--highlight-gold) !important;
}

.active-idf .idf-pane .pane-desc,
.active-sdf .sdf-pane .pane-desc {
    color: #444 !important;
}

.active-idf .idf-pane .prop-content strong,
.active-sdf .sdf-pane .prop-content strong {
    color: var(--dark-green) !important;
}

.active-idf .idf-pane .prop-content p,
.active-sdf .sdf-pane .prop-content p,
.active-idf .idf-pane .info-box-text,
.active-sdf .sdf-pane .info-box-text {
    color: #555 !important;
}

.active-idf .idf-pane .pane-icon,
.active-sdf .sdf-pane .pane-icon {
    border-color: var(--highlight-gold) !important;
    color: var(--highlight-gold) !important;
    background-color: #F7F5F0 !important;
}

.active-idf .idf-pane .pane-badge,
.active-sdf .sdf-pane .pane-badge {
    background: #CAA55426 !important;
    color: var(--highlight-gold) !important;
}

/* Pane Content Colors when INACTIVE (Dark Green) */
.active-sdf .idf-pane .pane-main-title,
.active-idf .sdf-pane .pane-main-title,
.active-sdf .idf-pane .pane-desc,
.active-idf .sdf-pane .pane-desc,
.active-sdf .idf-pane .prop-content strong,
.active-idf .sdf-pane .prop-content strong,
.active-sdf .idf-pane .prop-content p,
.active-idf .sdf-pane .prop-content p,
.active-sdf .idf-pane .info-box-text,
.active-idf .sdf-pane .info-box-text {
    color: #ffffff !important;
}

.active-sdf .idf-pane .pane-badge,
.active-idf .sdf-pane .pane-badge {
    background: #FFFFFF40 !important;
    color: #ffffff !important;
}

.active-sdf .idf-pane .pane-icon,
.active-idf .sdf-pane .pane-icon {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #01321E !important;
    background-color: #CAA554 !important;
}

.active-sdf .idf-pane .pane-info-box,
.active-idf .sdf-pane .pane-info-box {
    background: #0B3A27 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .fiber-pane {
        padding: 40px;
    }

    .architecture-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .fiber-pane {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .architecture-title {
        font-size: 2.5rem;
    }

    .pane-main-title {
        font-size: 1rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    .main-title {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .product-content-col {
        padding: 40px 5%;
    }

    .product-image-col {
        min-height: 600px;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .floating-badge-gold {
        top: 30px;
        left: 20px;
    }

    .certifications-overlay {
        bottom: 140px;
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .main-title {
        font-size: 1.5rem;
    }

    .spec-item {
        padding: 15px;
    }

    .certifications-overlay {
        bottom: 160px;
    }

    .col-6.spec-item {
        width: 50%;
    }
}