/* --- Global Reset & Color Theme Design Tokens --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    /* Custom Crimson Violet Palette */
    --crimson-violet: #5f0f40;
    --deep-crimson: #9a031e;
    --princeton-orange: #fb8b24;
    --autumn-leaf: #e36414;
    --dark-teal: #0f4c5c;
    
    --bg-light: #fbf8f9;
    --text-dark: #222222;
    --text-muted: #555555;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* --- Core Layout Components --- */
header {
    background: var(--dark-teal);
    color: #fff;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(15, 76, 92, 0.15);
    border-bottom: 3px solid var(--crimson-violet);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--princeton-orange);
    letter-spacing: 0.5px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition-smooth);
}

nav a:hover, nav a.active {
    color: var(--princeton-orange);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--autumn-leaf);
    transition: var(--transition-smooth);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

footer {
    background: var(--dark-teal);
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 0px;
    border-top: 4px solid var(--deep-crimson);
}

/* --- Interactive Elements --- */
.btn {
    display: inline-block;
    background: var(--autumn-leaf);
    color: white;
    padding: 12px 32px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(227, 100, 20, 0.2);
    cursor: pointer;
}

.btn:hover {
    background: var(--princeton-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 139, 36, 0.4);
}

/* --- Page Content Layouts --- */
.hero {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 130px 20px;
    text-align: center;
    background-color: #0f4c5c; /* Clean dark fallback canvas background color */
}

.hero h1 { 
    font-size: 3.2rem; 
    margin-bottom: 20px; 
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero p { 
    font-size: 1.25rem; 
    margin-bottom: 35px; 
    max-width: 650px; 
    margin-left: auto; 
    margin-right: auto;
    color: #f1f1f1;
}

.features {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(95, 15, 64, 0.05);
    text-align: center;
    border-top: 5px solid var(--crimson-violet);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 76, 92, 0.12);
}

.feature-card h3 { 
    margin-bottom: 15px; 
    color: var(--dark-teal); 
    font-size: 1.4rem;
}

/* --- Content Wrapper Container --- */
.container {
    max-width: 950px;
    margin: 60px auto;
    padding: 0 20px;
}

.box-layout {
    background: white;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.04);
    border-left: 4px solid var(--crimson-violet);
}

h1 { color: var(--dark-teal); margin-bottom: 25px; font-weight: 700; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    margin-top: 40px;
}
.stat-item h2 { color: var(--deep-crimson); font-size: 2.8rem; font-weight: 800; }
.stat-item p { font-weight: 600; color: var(--dark-teal); }

/* --- Catalog Layout Design --- */
.catalog-container { max-width: 1200px; margin: 50px auto; padding: 0 20px; }
.catalog-container h1 { text-align: center; margin-bottom: 45px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 35px; }

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eee;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(95, 15, 64, 0.12);
    border-color: var(--crimson-violet);
}

.card-img {
    height: 220px;
    background: #e0e0e0 center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content { padding: 25px; flex-grow: 1; }
.card-title { font-size: 1.3rem; color: var(--dark-teal); margin-bottom: 12px; font-weight: 700; }
.card-text { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 15px; }

.card-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--crimson-violet);
    color: white;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition-smooth);
}
.card:hover .card-btn { 
    background: var(--deep-crimson); 
}

/* --- Dynamic Details & Choice A Interactive Gallery Track Layout --- */
.back-link { margin-bottom: 25px; display: inline-block; color: var(--dark-teal); text-decoration: none; font-weight: bold; transition: var(--transition-smooth); }
.back-link:hover { color: var(--deep-crimson); transform: translateX(-5px); }
.product-info { flex: 1; min-width: 350px; padding: 45px; }
.sku { color: var(--deep-crimson); font-weight: bold; font-size: 0.85rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 25px; margin-bottom: 35px; }
.spec-table th, .spec-table td { padding: 14px; text-align: left; border-bottom: 1px solid #eee; }
.spec-table th { background: #fbf8f9; color: var(--dark-teal); width: 40%; font-weight: 700; }

.gallery-layout-block {
    flex: 1;
    min-width: 350px;
    padding: 25px;
    background: #fbf8f9;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-view-frame {
    width: 100%;
    height: 380px;
    border-radius: 6px;
    overflow: hidden;
    background: #e5e5e5;
    border: 1px solid #eee;
}

.main-view-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-view-frame:hover img {
    transform: scale(1.03);
}

.thumbnail-track {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.thumb-item {
    width: calc(33.33% - 8px);
    height: 85px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.65;
    transition: var(--transition-smooth);
}

.thumb-item:hover, .thumb-item.active {
    opacity: 1;
    border-color: var(--crimson-violet);
    transform: translateY(-2px);
}

/* --- Contact & Split Form Layout --- */
.contact-split { display: flex; flex-wrap: wrap; gap: 40px; border-left: none; border-top: 4px solid var(--dark-teal); }
.contact-form-wrapper { flex: 2; min-width: 320px; }
.contact-info-wrapper { flex: 1; min-width: 250px; background: #f4f6f9; padding: 35px; border-radius: 8px; display: flex; flex-direction: column; justify-content: center; border-right: 4px solid var(--crimson-violet); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: bold; color: var(--dark-teal); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; transition: var(--transition-smooth); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--crimson-violet); outline: none; box-shadow: 0 0 8px rgba(95, 15, 64, 0.15); }
.form-group textarea { resize: vertical; height: 130px; }
.info-block { margin-bottom: 25px; }
.info-block strong { display: block; color: var(--deep-crimson); margin-bottom: 5px; font-size: 1.1rem; }

/* --- High-Performance CSS Structural Animations --- */
.animate-fade-in {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-stagger > * {
    opacity: 0;
    transform: translateY(20px);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Updated Headings to Match Button Accent Color --- */
h1 { 
    color: var(--autumn-leaf); /* Swapped from dark teal to match the button */
    margin-bottom: 25px; 
    font-weight: 700; 
}

/* --- Catalog & Page Main Container Titles --- */
.catalog-container h1 { 
    text-align: center; 
    margin-bottom: 45px; 
    color: var(--autumn-leaf); 
}

/* --- Detailed Layout Section Adjustment --- */
.contact-form-wrapper h1 {
    color: var(--autumn-leaf);
}

/* --- New Multi-Tier Header System --- */
header {
    background: var(--dark-teal);
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.header-right-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Institutional Product Search Form */
.search-form {
    display: flex;
    align-items: center;
}

.search-input {
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
    width: 240px;
    outline: none;
    transition: var(--transition-smooth);
}

.search-input:focus {
    border-color: var(--princeton-orange);
}

.search-btn {
    background: var(--autumn-leaf);
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.search-btn:hover {
    background: var(--princeton-orange);
}

/* Action Icons (Basket & Profile) */
.action-icon-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.action-icon-btn:hover {
    color: var(--princeton-orange);
}

/* Sub-Header Navigation Bar */
.sub-nav-bar {
    background: var(--crimson-violet);
    padding: 0.7rem 2rem;
    display: flex;
    justify-content: flex-start;
    box-shadow: 0 4px 12px rgba(15, 76, 92, 0.15);
    border-bottom: 3px solid var(--deep-crimson);
}

.sub-nav-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
    transition: var(--transition-smooth);
}

.sub-nav-bar a:hover, .sub-nav-bar a.active {
    color: var(--princeton-orange);
}

.sub-nav-bar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--autumn-leaf);
    transition: var(--transition-smooth);
}

.sub-nav-bar a:hover::after, .sub-nav-bar a.active::after {
    width: 100%;
}

/* --- Brand Image Logo Framework --- */
.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: #ffffff; /* Clean white primary typography */
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px; /* Uniform space between logo image and text */
}

.brand-logo-img {
    width: auto;
    height: 40px; /* Constrains the height to fit cleanly in your sticky header */
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    transition: var(--transition-smooth);
}

.logo-link:hover .brand-logo-img {
    transform: scale(1.05); /* Subtle interactive hover pulse */
}

/* Secondary Typography Accent Layer */
.logo span {
    color: var(--autumn-leaf);
    font-weight: 400;
    font-size: 1.3rem;
    margin-left: 2px;
}

/* --- Dual-Column Institutional Showcase Panel --- */
.showcase-banner {
    background: #5f0f40; /* Custom Crimson Violet Theme Canvas Background */
    padding: 60px 0;
    width: 100%;
    color: #ffffff;
    border-top: 4px solid var(--autumn-leaf);
    border-bottom: 4px solid var(--deep-crimson);
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    align-items: center;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Overriding global h2 styles for this section */
.showcase-content h2 {
    color: var(--princeton-orange); /* Vibrant contrast font heading anchor */
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.showcase-content p {
    color: #f5eff2; /* Soft layout white readability line */
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Secondary Action Variant Button */
.secondary-btn {
    background: transparent;
    border: 2px solid var(--autumn-leaf);
    color: white;
}

.secondary-btn:hover {
    background: var(--autumn-leaf);
    color: white;
}

.showcase-graphic {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.showcase-container:hover .showcase-graphic img {
    transform: scale(1.02);
}

/* --- 3-Column Focus Icon Frame Adjustments --- */
.focus-icon-wrapper {
    width: 90px;
    height: 90px;
    background: #fdf5f7; /* Extremely subtle Crimson Violet tint */
    border: 2px solid rgba(95, 15, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px auto; /* Centered layout anchor alignment */
    transition: var(--transition-smooth);
}

.focus-icon-wrapper i {
    font-size: 2.4rem;
    color: var(--crimson-violet); /* Fallback to theme base brand token */
    transition: var(--transition-smooth);
}

/* Hover Interactive Mechanics */
.focus-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(15, 76, 92, 0.08);
    border-color: rgba(95, 15, 64, 0.2);
}

.focus-column:hover .focus-icon-wrapper {
    background: var(--crimson-violet);
    border-color: var(--crimson-violet);
    transform: scale(1.05);
}

.focus-column:hover .focus-icon-wrapper i {
    color: #ffffff; /* Inverts cleanly to premium white on container hover */
}

/* Center card typography to match centered icons */
.focus-column h3 {
    text-align: center;
    font-size: 1.35rem;
    color: var(--dark-teal);
    margin: 0 20px 12px 20px;
    font-weight: 700;
}

.focus-column p {
    text-align: center;
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 20px;
}

/* --- 3-Column Focus Grid Section --- */
.focus-grid {
    padding: 70px 0 20px 0;
    background: var(--bg-light);
    width: 100%;
}

.focus-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.focus-column {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    padding-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    transition: var(--transition-smooth);
}

.focus-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(15, 76, 92, 0.08);
    border-color: rgba(95, 15, 64, 0.2);
}

.focus-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e5e5e5;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--dark-teal);
}

.focus-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.focus-column:hover .focus-img-wrapper img {
    transform: scale(1.04);
}

.focus-column h3 {
    font-size: 1.35rem;
    color: var(--dark-teal);
    margin: 0 20px 12px 20px;
    font-weight: 700;
}

.focus-column p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 20px;
}
/* --- Customized Institutional CTA Banner Track --- */
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
@media (min-width: 1200px) {
    .py-xl-5 { padding-top: 3rem; padding-bottom: 3rem; }
}

.bg-primary-custom {
    background: var(--dark-teal); /* Blends perfectly into your core palette layout */
    border-left: 5px solid var(--autumn-leaf) !important; /* Highlights action visibility */
}

.text-white { color: #ffffff; }
.rounded { border-radius: 8px; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-0 { margin-bottom: 0; }
.pb-2 { padding-bottom: 0.5rem; }

.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.justify-content-between { justify-content: space-between; }

/* Responsive Row Flex Alternator Layout */
@media (min-width: 992px) {
    .flex-lg-row { flex-direction: row; align-items: center; }
    .pb-lg-1 { padding-bottom: 0.25rem; }
}

.p-4 { padding: 1.5rem; }
@media (min-width: 768px) {
    .p-md-5 { padding: 3rem; }
}

.fw-bold { font-weight: 700; }

/* Overriding default title rules for this explicit layout block */
.bg-primary-custom h2 {
    color: var(--princeton-orange) !important;
    font-size: 1.8rem;
}

.bg-primary-custom p {
    color: #e2f0f3;
    font-size: 1.05rem;
}

/* Light Action Button Styles */
.btn-light-custom {
    display: inline-block;
    background: #ffffff;
    color: var(--dark-teal) !important;
    padding: 12px 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.btn-light-custom:hover {
    background: var(--princeton-orange);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 139, 36, 0.3);
}

@media (max-width: 991px) {
    .my-2 { margin-top: 15px; }
}

/* --- 4-Column Image Grid Section with Dark Overlays --- */
.image-overlay-grid {
    padding: 30px 0 60px 0;
    width: 100%;
    background: var(--bg-light);
}

.overlay-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.grid-overlay-item {
    position: relative;
    height: 300px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

/* Base Dark Layout Tint Overlay */
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65); /* Soft premium deep dark slate tint */
    z-index: 1;
    transition: var(--transition-smooth);
}

/* Layered Typography Header on Top */
.overlay-title {
    position: relative;
    color: #ffffff !important; /* Forces clean visibility over background graphic */
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    padding: 0 15px;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

/* Interactive Hover Mechanics Matrix */
.grid-overlay-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(95, 15, 64, 0.15);
}

.grid-overlay-item:hover .dark-overlay {
    background: rgba(95, 15, 64, 0.45); /* Shifts over to an elegant crimson tint on hover */
}

.grid-overlay-item:hover .overlay-title {
    transform: scale(1.04);
    color: var(--princeton-orange) !important; /* Pop accent title on focus */
}

/* --- Direct HTML-Based Parallax Engine Layout --- */
.inline-parallax-frame {
    position: relative;
    width: 100%;
    min-height: 420px;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Clips overlapping background elements safely */
    background: #111; /* Fallback base layout color */
}

/* Layering the HTML Img Element directly beneath content cards */
.parallax-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140%; /* Intentionally taller than framework wrapper to allow scroll room */
    object-fit: cover;
    pointer-events: none; /* Prevents text selection anomalies */
    z-index: 0;
    
    /* Hardware Accelerated Parallax Emulation */
    transform: translateY(0);
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 76, 92, 0.88), rgba(95, 15, 64, 0.88));
    z-index: 1;
}

.parallax-content {
    position: relative;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    z-index: 2;
}

.parallax-content h2 {
    color: var(--princeton-orange) !important;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.parallax-content p {
    color: #f7f5f6;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 30px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.provinces-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.provinces-badge-row span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.provinces-badge-row span i {
    color: var(--autumn-leaf);
    margin-right: 4px;
}

@media (max-width: 768px) {
    .inline-parallax-frame {
        min-height: auto;
        padding: 60px 15px;
    }
    .parallax-bg-img {
        height: 100%; /* Resets back to flat alignment for mobile frame efficiency */
    }
    .parallax-content h2 { font-size: 1.8rem; }
    .parallax-content p { font-size: 1rem; }
}

/* --- Dual-Column Sales Team Showcase - inverted theme update --- */
.team-showcase {
    padding: 80px 0;
    background: #5f0f40; /* Updated to deep Crimson Violet */
    width: 100%;
    border-top: 4px solid var(--autumn-leaf); /* Balanced border break */
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 60px;
    align-items: center;
}

.team-graphic {
    width: 100%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-container:hover .team-graphic img {
    transform: scale(1.02);
}

.team-content {
    display: flex;
    flex-direction: column;
}

/* Heading color update for dark canvas contrast */
.team-content h2 {
    color: var(--princeton-orange); /* Vibrant contrast font heading anchor */
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Body paragraph color update to clean white contrast layers */
.team-content p {
    color: #f5eff2; /* Soft layout white readability line */
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature Badge Adjustments for the Dark Layout Matrix */
.team-features-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Inside white icon layout tweaks */
.team-feature-item i {
    font-size: 1.2rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1); /* Translucent frosted icon backdrop */
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-feature-item span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff; /* Clean white label text */
}

/* --- Responsive Layout Breakpoint Adjustments --- */
@media (max-width: 768px) {
    .team-showcase {
        padding: 50px 0;
    }
    .team-container {
        gap: 35px;
        grid-template-columns: 1fr;
    }
    .team-graphic {
        height: 300px;
    }
    .team-content h2 {
        font-size: 1.75rem;
    }
}

/* --- Featured Products Showcase Section --- */
.featured-products-showcase {
    padding: 80px 0;
    background: var(--bg-light);
    width: 100%;
}

.products-section-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.products-section-header h2 {
    color: var(--dark-teal); /* Reverting back to clear text hierarchy anchor */
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.products-section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.products-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Institutional Card Framework */
.product-showcase-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f4;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.product-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(15, 76, 92, 0.1);
    border-color: rgba(95, 15, 64, 0.15);
}

.product-thumb {
    position: relative;
    width: 100%;
    height: 240px;
    background: #f5f5f5;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-showcase-card:hover .product-thumb img {
    transform: scale(1.04);
}

/* Facility Compliance Badging */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.stock-ready { background: var(--dark-teal); }
.stock-vetted { background: var(--autumn-leaf); }

.product-meta {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--autumn-leaf);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-meta h3 {
    font-size: 1.3rem;
    color: var(--dark-teal);
    margin-bottom: 10px;
    font-weight: 700;
}

.product-meta p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f4f6;
    padding-top: 15px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-teal);
}

.product-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Minimalist Circular Navigation Button Hooks */
.product-view-btn {
    width: 40px;
    height: 40px;
    background: #f0f4f6;
    color: var(--dark-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.product-showcase-card:hover .product-view-btn {
    background: var(--autumn-leaf);
    color: #ffffff;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .featured-products-showcase { padding: 50px 0; }
    .products-section-header { margin-bottom: 35px; }
    .products-section-header h2 { font-size: 1.75rem; }
}

/* --- Institutional Client Testimonials Framework --- */
.testimonials-section {
    padding: 80px 0;
    background: #ffffff; /* Clean canvas break against the light grey products track */
    width: 100%;
    border-top: 1px solid #edf1f3;
}

.testimonials-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.testimonials-header h2 {
    color: var(--dark-teal);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.testimonials-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Review Card Profiles */
.testimonial-card {
    background: #fdfafb; /* Subtle warming Crimson Violet tint blend */
    border: 1px solid rgba(95, 15, 64, 0.05);
    border-radius: 8px;
    padding: 40px 30px 30px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes profile block directly to the bottom */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(95, 15, 64, 0.06);
    border-color: rgba(95, 15, 64, 0.15);
}

.quote-icon-top {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 35px;
    height: 35px;
    background: var(--autumn-leaf);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 4px 8px rgba(251, 139, 36, 0.2);
}

.testimonial-text {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--dark-teal);
    font-style: italic;
    margin-bottom: 30px;
}

/* Circled Images Layout Stack (Bottom Anchor) */
.testimonial-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(95, 15, 64, 0.08);
    padding-top: 20px;
}

.avatar-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%; /* Pure radial circle border layer */
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 12px;
    background: #e1e8ed;
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents facial feature compression layout distortion */
}

.testimonial-profile h4 {
    font-size: 1rem;
    color: var(--dark-teal);
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-profile span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* --- Responsive Adaptations --- */
@media (max-width: 768px) {
    .testimonials-section { padding: 50px 0; }
    .testimonials-header h2 { font-size: 1.75rem; }
    .testimonial-card { padding: 35px 20px 25px 20px; }
}

/* --- Fluid Full-Width Newsletter Subscription Ribbon - Expanded Layout --- */
.fluid-newsletter-banner {
    width: 100%;
    background: #e36414; /* Specified bright autumn burnt orange brand vector canvas */
    padding: 30px 0;
    color: #ffffff;
    box-shadow: inset 0 8px 16px rgba(0, 0, 0, 0.06), inset 0 -8px 16px rgba(0, 0, 0, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0 !important; /* Forces total removal of any structural bottom spacing */
}

.newsletter-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 0 !important; /* Eliminates container layout drift */
}

.newsletter-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0; /* Prevents text from being compressed by the expanded input */
}

.newsletter-ribbon-icon {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-text-stack h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff !important;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}

.newsletter-text-stack p {
    font-size: 0.95rem;
    color: #fff2eb;
    margin: 0; /* Clears baseline paragraphs margins */
    font-weight: 500;
}

/* Expanded Fluid Form Layout */
.newsletter-form-fluid {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1; /* Instructs form to stretch across all remaining empty canvas real estate */
    max-width: 750px; /* Expanded from 600px to allow a larger, high-visibility input zone */
    width: 100%;
    margin-bottom: 0 !important; /* Strips native form system bottom gutters */
}

.fluid-input-group {
    position: relative;
    flex-grow: 1;
    width: 100%;
    margin-bottom: 0 !important;
}

.field-embedded-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #a3939b;
    font-size: 0.95rem;
    pointer-events: none;
}

.fluid-email-field {
    width: 100%;
    padding: 15px 16px 15px 44px; /* Slightly taller padding framework for a premium feel */
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    font-size: 1rem; /* Marginally increased size for premium legibility */
    font-weight: 600;
    color: #1a1016;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    margin-bottom: 0 !important;
}

.fluid-email-field:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25), 0 6px 15px rgba(0, 0, 0, 0.1);
}

.fluid-email-field::placeholder {
    color: #a3939b;
    font-weight: 400;
}

/* Submit Action Button */
.fluid-submit-btn {
    background: #5f0f40;
    color: #ffffff;
    border: none;
    padding: 15px 32px; /* Balanced height with the new input field scale */
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(95, 15, 64, 0.2);
    transition: var(--transition-smooth);
    white-space: nowrap;
    margin-bottom: 0 !important;
}

.fluid-submit-btn:hover {
    background: #0f4c5c;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(15, 76, 92, 0.25);
}

/* --- Responsive Adaptations for Smaller Device Tracks --- */
@media (max-width: 991px) {
    .newsletter-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .newsletter-info {
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form-fluid {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-form-fluid {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .fluid-submit-btn {
        justify-content: center;
        padding: 15px;
    }
}

/* --- Updated 3-Column Institutional Footer --- */
.site-footer {
    background: #111622; /* Premium deep charcoal slate canvas profile */
    color: #ffffff;
    padding: 70px 0 0 0;
    width: 100%;
    border-top: 4px solid var(--dark-teal);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 50px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
}

/* Subtle under-border accent detail */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--e36414, #e36414); /* Fallback to new burnt orange accent */
    border-radius: 2px;
}

/* Column 1: Links Layout Styling */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a3b2c2;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth, all 0.3s ease);
}

.footer-links a i {
    font-size: 0.75rem;
    opacity: 0.6;
    transition: var(--transition-smooth, all 0.3s ease);
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-links a:hover i {
    color: var(--e36414, #e36414);
    opacity: 1;
}

/* Column 2: Contact Layout Styling */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #a3b2c2;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.footer-contact-info li i {
    color: var(--e36414, #e36414);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Forces child containers to hug the left wall */
    text-align: left;        /* Ensures text wraps and fills out from the left edge */
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start; /* Keeps the icons perfectly level with the first line of text */
    justify-content: flex-start;
    gap: 12px;
    color: #a3b2c2;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    width: 100%;             /* Allows internal elements to block out text fields correctly */
    text-align: left;        /* Secondary fallback block reinforcement */
}

.footer-contact-info li i {
    color: var(--e36414, #e36414);
    font-size: 1.1rem;
    margin-top: 2px;         /* Subtle nudge down to align centered against a crisp 1rem font track */
    flex-shrink: 0;          /* Prevents the icon from flattening out on wrapped multiline address blocks */
}

.footer-contact-info a {
    color: #a3b2c2;
    text-decoration: none;
    text-align: left;
    display: inline-block;   /* Scopes interactive hover areas to strict word dimensions */
    transition: var(--transition-smooth, all 0.3s ease);
}

.footer-contact-info a:hover {
    color: #ffffff;
}

/* Column 3: Secure Settlement Layout Details */
.settlement-column p {
    color: #a3b2c2;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.payment-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-card-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    width: 65px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth, all 0.3s ease);
    cursor: default;
}

.payment-card-icon i {
    font-size: 2rem;
}

/* Hover Accent Colors for Merchant Flags */
.payment-card-icon:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.payment-card-icon.visa-color:hover i {
    color: #00579f; /* Brand accurate Visa Blue tint */
}

.payment-card-icon.mastercard-color:hover i {
    color: #ff5f00; /* Brand accurate Mastercard Amber layer */
}

/* Bottom Copyright Bar */
.footer-baseline {
    background: #0b0e16;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.baseline-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: left;
}

.baseline-wrapper p {
    color: #647589;
    font-size: 0.85rem;
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 0 0;
    }
    .footer-container {
        gap: 35px;
        padding-bottom: 40px;
    }
    .footer-column h3 {
        margin-bottom: 15px;
    }
}

/* Column 3: Secure Settlement Layout Details - Left Aligned */
.settlement-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns content blocks and buttons to the left edge */
    text-align: left;        /* Safeguards copy wrapping layout typography from the left */
}

.settlement-column h3 {
    text-align: left;
    width: 100%;
}

.settlement-column p {
    color: #a3b2c2;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    text-align: left;        /* Forces body prose to wrap cleanly from the left edge */
}

.payment-badge-row {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Pulls Visa & Mastercard icons tightly to the left margin */
    gap: 12px;
    width: 100%;
}

/* --- About Page Operational Multi-Column Layout --- */
.about-operations-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.ops-column-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f4;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth, all 0.3s ease);
}

.ops-column-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 76, 92, 0.08);
    border-color: rgba(95, 15, 64, 0.1);
}

.ops-image-frame {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #f0f4f6;
}

.ops-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth, all 0.3s ease);
}

.ops-column-card:hover .ops-image-frame img {
    transform: scale(1.03);
}

.ops-text-frame {
    padding: 25px;
    text-align: left; /* Left aligns layout content */
    display: flex;
    flex-direction: column;
}

.ops-text-frame h3 {
    color: var(--dark-teal, #0f4c5c);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.ops-text-frame p {
    color: var(--text-muted, #546e7a);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustment layer ensuring spacing looks proportional */
@media (max-width: 768px) {
    .about-operations-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 35px;
    }
    .ops-image-frame {
        height: 200px;
    }
}

/* --- Separated Operational Section Track --- */
.about-operations-section {
    width: 100%;
    padding: 60px 0;
    background: var(--bg-light, #f8f9fa); /* Clean canvas break separating sections */
}

/* Structural internal container holding maximum dimensions & applying left/right pads */
.ops-inner-padded-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* Generous explicit side padding as requested */
}

.about-operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.ops-column-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f4;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth, all 0.3s ease);
}

.ops-column-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(15, 76, 92, 0.08);
    border-color: rgba(95, 15, 64, 0.1);
}

.ops-image-frame {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #f0f4f6;
}

.ops-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth, all 0.3s ease);
}

.ops-column-card:hover .ops-image-frame img {
    transform: scale(1.03);
}

.ops-text-frame {
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.ops-text-frame h3 {
    color: var(--dark-teal, #0f4c5c);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.ops-text-frame p {
    color: var(--text-muted, #546e7a);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .about-operations-section {
        padding: 40px 0;
    }
    .ops-inner-padded-wrapper {
        padding: 0 20px; /* Slightly compact safe-bounds padding track for mobile frames */
    }
    .about-operations-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* --- Powerlink Distributors Warehouse Parallax Banner --- */
.warehouse-parallax {
    position: relative;
    width: 100%;
    min-height: 440px;
    padding: 90px 40px; /* Strong left and right interior padding anchors */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Safely slices overflow tracking frames */
    background: #0f141d; /* Fallback baseline dark canvas profile */
}

/* Layering the HTML Img Element directly beneath content overlays */
.warehouse-parallax .parallax-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140%; /* Taller than wrap boundary frame to provide fluid slide overhead */
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
    
    /* Hardware Accelerated Drift Translation Hooks */
    transform: translateY(0);
    will-change: transform;
}

/* Dark layout overlay shielding text elements from background glare */
.warehouse-parallax .parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 16, 22, 0.88), rgba(95, 15, 64, 0.88)); /* Rich deep wine tone blend */
    z-index: 1;
}

.warehouse-parallax .parallax-content {
    position: relative;
    max-width: 850px;
    text-align: center;
    color: #ffffff;
    z-index: 2;
}

.warehouse-parallax .parallax-content h2 {
    color: #e36414 !important; /* Locks bright brand accent color onto the heading track */
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.warehouse-parallax .parallax-content p {
    color: #f5eff2; /* Soft white readability line */
    font-size: 1.15rem;
    line-height: 1.75;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .warehouse-parallax {
        min-height: auto;
        padding: 60px 20px; /* Safe compact padding rules for mobile viewports */
    }
    .warehouse-parallax .parallax-bg-img {
        height: 100%; /* Shuts down image length offset scaling on mobile devices */
    }
    .warehouse-parallax .parallax-content h2 {
        font-size: 1.85rem;
    }
    .warehouse-parallax .parallax-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* --- Split Column Product Structural Definitions --- */
.product-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Generous separation cushion directly between top split block and bottom table block */
    width: 100%;
}

/* Master parent layout split container mapping the upper columns */
.product-main-split {
    display: flex;
    width: 100%;
    gap: 40px; /* Internal column alley separator */
    align-items: flex-start;
}

/* Left side structural anchor (30% Width Track) */
.product-gallery-container {
    flex: 0 0 30%;
    width: 30%;
}

/* Ensures dynamic runtime images stretch reliably inside the layout container */
.product-gallery {
    width: 100%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    background-color: #f0f4f6; /* Fallback rendering card profile canvas */
    border: 1px solid #eef2f4;
}

/* Right side structural anchor (70% Width Track) */
.product-info-panel {
    flex: 0 0 70%;
    width: 70%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Styles for textual context elements inside the info panel */
.product-info-panel h1 {
    margin: 0 0 10px 0;
    font-size: 2.2rem;
    color: var(--dark-teal, #0f4c5c);
}

.product-info-panel .sku {
    font-size: 0.9rem;
    color: var(--text-muted, #78909c);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.product-info-panel p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #455a64;
    margin: 0 0 30px 0;
}

/* Full Width Structural Specifications Area Below */
.product-specs-full-width {
    width: 100%;
    border-top: 1px solid #eef2f4;
    padding-top: 30px;
}

.product-specs-full-width h3 {
    text-align: left;
    font-size: 1.3rem;
    color: var(--dark-teal, #0f4c5c);
    margin: 0 0 15px 0;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.spec-table th, 
.spec-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eef2f4;
}

.spec-table th {
    width: 30%; /* Align headers with the 30% image layout matrix above for balance */
    background-color: var(--bg-light, #f8f9fa);
    color: #37474f;
    font-weight: 600;
}

.spec-table td {
    color: #546e7a;
}

/* --- Responsive Multi-Device Adaptability Viewports --- */
@media (max-width: 768px) {
    /* Collapse the top columns down into vertical block tracks for mobile device viewports */
    .product-main-split {
        flex-direction: column;
        gap: 25px;
    }
    
    .product-gallery-container,
    .product-info-panel {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .product-gallery {
        min-height: 250px; /* Slightly lower track height bounds constraint for small screens */
    }
    
    .spec-table th {
        width: 40%; /* Expand responsive parameters inside localized tables */
    }
}

.product-gallery {
    width: 100%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    border: 1px solid #eef2f4;
    /* Static default background image displaying premium warehouse textile rolls */
    background-image: url('https://encrypted-tbn2.gstatic.com/licensed-image?q=tbn:ANd9GcTPO3xyniGwnks9QWDSWZ13OiCn0u1fAeTXgJ4h3BG9ibAkzAktRwZA6ZCwdp7PNAeSYaYVsnyniid7PGM');
}

/* --- Plain Image Left Side Structural Anchors --- */
.product-image-container {
    flex: 0 0 30%;
    width: 30%;
}

.product-plain-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid #eef2f4;
    background-color: #f0f4f6; /* Fallback baseline fill coloring while image streams in */
}

/* --- Responsive Multi-Device Adaptability Viewports --- */
@media (max-width: 768px) {
    .product-main-split {
        flex-direction: column;
        gap: 25px;
    }
    
    .product-image-container {
        flex: 0 0 100%;
        width: 100%;
    }
}

.product-wrapper { 
    background: white; 
    border-radius: 8px; 
    box-shadow: 0 4px 25px rgba(0,0,0,0.04); 
    display: flex; 
    overflow: hidden; 
    flex-wrap: wrap; 
    border-top: 4px solid var(--crimson-violet); 
    
    /* NEW: Balanced Outer Internal Padding Layer */
    padding: 40px; 
    box-sizing: border-box; /* Crucial: Ensures padding doesn't explode your overall card width */
}

/* --- Responsive Layout Tweaks --- */
@media (max-width: 768px) {
    .product-wrapper {
        /* Gently scales down internal padding on smaller mobile screens so content doesn't squeeze */
        padding: 24px 16px; 
    }
}

/* --- Contact Page Structural Extensions --- */

/* Full-Width Warehouse Image Banner */
.contact-hero-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #111622;
}

.contact-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-hero-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17, 22, 34, 0.85), rgba(95, 15, 64, 0.6));
}

.contact-hero-banner .banner-text-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: #ffffff;
    text-align: left;
    z-index: 2;
}

.contact-hero-banner .banner-text-content h1 {
    font-size: 2.2rem;
    color: #ffffff !important;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.contact-hero-banner .banner-text-content p {
    font-size: 1.1rem;
    color: #fff2eb;
    margin: 0;
    font-weight: 500;
}

/* Icon & Form Block Fixes */
.contact-form-wrapper h2 i,
.info-block strong i,
.map-container-block h3 i {
    color: var(--crimson-violet, #5f0f40);
    margin-right: 8px;
}

.info-block a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-block a:hover {
    color: var(--crimson-violet, #5f0f40);
}

/* Google Map Block Container Rules */
.map-container-block {
    margin-top: 40px;
    width: 100%;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.04);
    box-sizing: border-box;
    text-align: left;
}

.map-container-block h3 {
    font-size: 1.3rem;
    color: var(--dark-teal, #0f4c5c);
    margin: 0 0 20px 0;
}

.map-iframe-wrapper {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eef2f4;
    line-height: 0; /* Prevents tiny trailing white gaps below iframe */
}

/* Responsive Adaptive Layer */
@media (max-width: 768px) {
    .contact-hero-banner {
        height: 200px;
    }
    .contact-hero-banner .banner-text-content h1 {
        font-size: 1.5rem;
    }
    .contact-hero-banner .banner-text-content p {
        font-size: 0.95rem;
    }
    .map-container-block {
        padding: 15px;
    }
}

