/* ==========================================================================
   TINYA PYIPI ENGINEERING P/L - HYDRAULICS
   Components Stylesheet - Light-Dominant Flyer Palette (Hero, Cards, Modals, Forms & Footer)
   ========================================================================== */

/* 1. HERO SECTION (BRIGHT INDUSTRIAL WITH CRIMSON & GOLD FLYER ACCENTS) */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height) - var(--topbar-height));
    display: flex;
    align-items: center;
    padding: 4.5rem 0 6rem 0;
    overflow: hidden;
    background-color: #f8fafc;
}

.hero-bg-media {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.92) contrast(1.05) saturate(1.1);
    transform: scale(1.03);
    transition: transform 10s ease;
}

.hero:hover .hero-bg-img {
    transform: scale(1.0);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.94) 60%, rgba(241, 245, 249, 0.88) 100%),
                linear-gradient(to right, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.4) 100%),
                linear-gradient(to top, #f8fafc 0%, transparent 20%);
    z-index: 2;
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(144, 12, 19, 0.08);
    border: 1px solid var(--border-crimson);
    border-left: 3.5px solid var(--brand-crimson);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.775rem;
    font-weight: 800;
    color: var(--brand-crimson);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.hero-tag svg {
    color: var(--brand-green);
}

.hero-title {
    font-size: 3.65rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.08;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--brand-crimson);
    display: block;
    background: linear-gradient(135deg, var(--brand-crimson) 0%, #d32f2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.45rem;
    }
}

/* FLYER SIGNATURE RIBBON BANNER IN HERO ("Keep Earth Moving...") */
.hero-ribbon-banner {
    background: linear-gradient(135deg, var(--brand-crimson) 0%, #ad141c 100%);
    color: #ffffff;
    border: 1.5px solid var(--brand-gold);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-crimson);
    margin-bottom: 1.5rem;
}

.hero-ribbon-banner .banner-text {
    font-family: var(--font-script);
    font-style: italic;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.hero-subheading {
    font-size: 1.2rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 620px;
}

.hero-script-tagline {
    font-family: var(--font-script);
    font-style: italic;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand-crimson);
    margin-bottom: 0.75rem;
    display: block;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2.75rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    border-top: 1.5px solid var(--border-light);
    padding-top: 1.75rem;
    max-width: 600px;
}

@media (max-width: 576px) {
    .trust-badges {
        grid-template-columns: 1fr;
    }
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-heading);
}

.trust-badge-item svg {
    color: var(--brand-green);
    flex-shrink: 0;
}

/* HERO SIDE CARD - FEATURED FLYER CARD (CLEAN WHITE SURFACE WITH CRIMSON/GOLD FRAME) */
.hero-feature-card {
    background: #ffffff;
    border: 2px solid var(--brand-crimson);
    border-radius: var(--radius-lg);
    padding: 1.85rem;
    box-shadow: var(--shadow-lg), 0 0 25px rgba(144, 12, 19, 0.12);
    position: relative;
    overflow: hidden;
}

.hero-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--brand-crimson) 0%, var(--brand-gold) 50%, var(--brand-crimson) 100%);
}

.flyer-badge-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.85rem;
}

.flyer-badge-header h4 {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--text-dark);
}

.flyer-badge-tag {
    background: var(--brand-crimson);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.08em;
    border: 1px solid var(--brand-gold);
}

.flyer-preview-img-wrap {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.flyer-preview-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.flyer-quick-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.flyer-quick-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.4;
    border-bottom: 1px dashed var(--border-light);
    padding-bottom: 0.4rem;
}

.flyer-quick-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.flyer-quick-item span {
    color: var(--text-muted);
    font-weight: 600;
    flex-shrink: 0;
}

.flyer-quick-item strong {
    color: var(--brand-crimson);
    font-weight: 800;
    text-align: right;
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid var(--brand-crimson);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--brand-crimson);
    border-radius: 2px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

/* 2. INDUSTRIAL CAPABILITY BAR (FOREST GREEN WITH GOLD TRIM) */
.capability-bar {
    background: linear-gradient(90deg, #1E3D12 0%, var(--brand-green) 50%, #1E3D12 100%);
    border-top: 2px solid var(--brand-gold);
    border-bottom: 2px solid var(--brand-gold);
    padding: 1.25rem 0;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-sm);
}

.capability-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.capability-item svg {
    color: var(--brand-gold-light);
}

@media (max-width: 768px) {
    .capability-bar-wrapper {
        justify-content: center;
    }
}

/* 3. ABOUT SECTION (CLEAN WHITE SURFACE WITH METALLIC/CRIMSON ACCENTS) */
.about-section {
    background-color: var(--bg-surface);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, var(--brand-crimson) 0%, var(--brand-crimson-dark) 100%);
    border: 2px solid var(--brand-gold);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-crimson);
    color: #fff;
    text-align: center;
}

@media (max-width: 576px) {
    .about-image-badge {
        position: relative;
        bottom: 0; right: 0;
        margin-top: 1rem;
    }
}

.about-image-badge .number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    color: var(--brand-gold-light);
}

.about-image-badge .label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-content p {
    font-size: 1.075rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 2rem 0;
}

.about-highlight-item {
    background: var(--bg-surface-alt);
    border: 1px solid var(--border-light);
    border-left: 3.5px solid var(--brand-crimson);
    padding: 1.15rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: var(--shadow-sm);
}

.about-highlight-item h5 {
    font-size: 0.925rem;
    color: var(--text-heading);
    margin-bottom: 0.35rem;
    font-weight: 800;
}

.about-highlight-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

/* 4. VISION, MISSION & VALUES SECTION */
.vision-mission-section {
    background: var(--bg-surface-alt);
    position: relative;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.vm-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

@media (max-width: 992px) {
    .vm-cards-grid {
        grid-template-columns: 1fr;
    }
}

.vm-card {
    background: linear-gradient(145deg, #1E3D12 0%, var(--brand-green) 100%);
    border: 2px solid var(--brand-gold);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-green);
    color: #ffffff;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(46, 90, 28, 0.35);
}

.vm-card.mission-card {
    background: linear-gradient(145deg, var(--brand-crimson-dark) 0%, var(--brand-crimson) 100%);
    box-shadow: var(--shadow-crimson);
}

.vm-card.mission-card:hover {
    box-shadow: 0 16px 35px rgba(144, 12, 19, 0.4);
}

.vm-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.vm-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold-light);
    flex-shrink: 0;
}

.vm-card-title {
    font-size: 1.35rem;
    color: #ffffff;
    margin: 0;
    font-weight: 900;
}

.vm-card-text {
    font-size: 1.05rem;
    color: #f1f5f9;
    line-height: 1.75;
}

/* CORE VALUES GRID */
.values-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-top: 3.5px solid var(--brand-crimson);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    transition: all var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--brand-green);
}

.value-card-num {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--brand-crimson);
    margin-bottom: 0.5rem;
    display: block;
}

.value-card-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
}

.value-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 5. SERVICES SECTION (CLEAN WHITE CARDS WITH CRIMSON TOP BORDER) */
.services-section {
    background-color: var(--bg-surface-alt);
    position: relative;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-top: 3.5px solid var(--brand-crimson);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-7px);
    border-top-color: var(--brand-green);
    border-color: var(--border-medium);
    box-shadow: var(--shadow-lg);
}

.service-img-wrap {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
}

.service-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.06);
}

.service-badge-num {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--brand-green);
    border: 1.5px solid var(--brand-gold);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.service-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
}

.service-icon {
    width: 32px; height: 32px;
    background: rgba(144, 12, 19, 0.08);
    border: 1px solid var(--border-crimson);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-crimson);
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 800;
}

.service-desc {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.825rem;
    font-weight: 800;
    color: var(--brand-crimson);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: auto;
    transition: color var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--brand-crimson-dark);
}

/* 6. COMPLETE SOLUTIONS WORKFLOW */
.workflow-section {
    background-color: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    position: relative;
}

@media (max-width: 1200px) {
    .workflow-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .workflow-grid {
        grid-template-columns: 1fr;
    }
}

.workflow-step-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.25rem;
    position: relative;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.workflow-step-card:hover {
    border-color: var(--brand-crimson);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.workflow-step-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(144, 12, 19, 0.12);
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    line-height: 1;
}

.workflow-step-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--brand-crimson) 0%, var(--brand-crimson-light) 100%);
    border: 1px solid var(--brand-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-crimson);
}

.workflow-step-card:hover .workflow-step-icon {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
}

.workflow-step-title {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-weight: 800;
}

.workflow-step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 7. INDUSTRIES SECTION */
.industries-section {
    background-color: var(--bg-surface-alt);
}

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

.industry-card {
    position: relative;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
}

.industry-card-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.industry-card:hover .industry-card-bg {
    transform: scale(1.08);
}

.industry-card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.25rem;
    transition: background 0.3s ease;
}

.industry-card:hover .industry-card-overlay {
    background: linear-gradient(to top, rgba(144, 12, 19, 0.92) 0%, rgba(15, 23, 42, 0.6) 70%, transparent 100%);
}

.industry-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.industry-title {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-weight: 900;
}

.industry-desc {
    font-size: 0.925rem;
    color: #f1f5f9;
    line-height: 1.5;
}

/* 8. HYDRAULIC HOSE FEATURE SECTION */
.hose-feature-section {
    background: var(--bg-surface);
    position: relative;
}

.hose-process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 3.5rem 0;
    position: relative;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.hose-flow-step {
    flex: 1;
    min-width: 150px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--brand-crimson);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.hose-flow-step:hover {
    border-top-color: var(--brand-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.hose-flow-step-num {
    width: 32px; height: 32px;
    background: var(--brand-crimson);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.85rem auto;
}

.hose-flow-step-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-transform: uppercase;
}

.hose-flow-arrow {
    color: var(--brand-crimson);
    font-size: 1.5rem;
    flex-shrink: 0;
    font-weight: 900;
}

@media (max-width: 768px) {
    .hose-process-flow {
        flex-direction: column;
    }
    .hose-flow-arrow {
        transform: rotate(90deg);
    }
}

/* 9. HYDRAULIC CYLINDER REPAIR SECTION */
.cylinder-repair-section {
    background-color: var(--bg-surface-alt);
}

.cylinder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .cylinder-grid {
        grid-template-columns: 1fr;
    }
}

.cylinder-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin: 2rem 0;
}

.cylinder-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-left: 3.5px solid var(--brand-green);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.cylinder-step-item:hover {
    border-left-color: var(--brand-crimson);
    transform: translateX(4px);
}

.cylinder-step-icon {
    width: 36px; height: 36px;
    background: rgba(46, 90, 28, 0.1);
    border: 1px solid var(--brand-green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    flex-shrink: 0;
    font-weight: 900;
    font-size: 0.85rem;
}

.cylinder-step-content h5 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.cylinder-step-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* 10. PRODUCT CATALOGUE SECTION (LIGHT, CLEAN, HIGH-CONTRAST) */
.products-section {
    background-color: var(--bg-surface-alt);
}

.catalog-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.catalog-search-wrap {
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: 450px;
}

.catalog-search-wrap input {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem 0.85rem 3rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.catalog-search-wrap input:focus {
    border-color: var(--brand-crimson);
    box-shadow: 0 0 0 3px rgba(144, 12, 19, 0.15);
}

.catalog-search-icon {
    position: absolute;
    top: 50%; left: 1rem;
    transform: translateY(-50%);
    color: var(--brand-crimson);
}

.catalog-categories {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    max-width: 100%;
}

.category-pill {
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    color: var(--text-heading);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.category-pill:hover {
    border-color: var(--brand-crimson);
    color: var(--brand-crimson);
}

.category-pill.active {
    background: linear-gradient(135deg, var(--brand-crimson) 0%, var(--brand-crimson-light) 100%);
    border-color: var(--brand-gold);
    color: #ffffff;
    box-shadow: var(--shadow-crimson);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.product-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-top: 3.5px solid var(--brand-crimson);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    border-top-color: var(--brand-green);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrap {
    height: 180px;
    width: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-brand-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    background: #ffffff;
    border: 1px solid var(--brand-crimson);
    color: var(--brand-crimson);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.04em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-category-tag {
    font-family: var(--font-heading);
    font-size: 0.725rem;
    color: var(--brand-crimson);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.product-name {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    line-height: 1.35;
    font-weight: 800;
}

.product-compliance {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.725rem;
    color: var(--brand-green);
    font-weight: 700;
    margin-bottom: 0.6rem;
    background: rgba(46, 90, 28, 0.08);
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius-sm);
    border-left: 2.5px solid var(--brand-green);
    width: fit-content;
}

.product-spec {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
    margin-top: auto;
}

.product-actions .btn {
    width: 100%;
    padding: 0.65rem 0.35rem;
    font-size: 0.725rem;
    font-weight: 800;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.product-actions .btn-product-view {
    background: #ffffff;
    border: 1.5px solid var(--brand-crimson);
    color: var(--brand-crimson);
}

.product-actions .btn-product-view:hover {
    background: var(--brand-crimson);
    color: #ffffff;
}

/* 11. PRODUCT MODAL STYLES (CRISP WHITE, ULTRA-CLEAR READABILITY) */
.product-modal-box {
    max-width: 680px !important;
    text-align: left !important;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.25rem !important;
    background: #ffffff !important;
    border: 2px solid var(--brand-crimson) !important;
    box-shadow: var(--shadow-lg), 0 0 35px rgba(144, 12, 19, 0.2) !important;
    color: var(--text-body);
}

.product-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1.5px solid var(--border-light);
    padding-bottom: 1rem;
}

.product-modal-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 0.25rem;
    font-weight: 900;
}

.product-modal-preview {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 1.5rem;
    align-items: center;
    background: var(--bg-surface-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .product-modal-preview {
        grid-template-columns: 1fr;
    }
}

.product-modal-img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    background: #ffffff;
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    border: 1px solid var(--border-light);
}

.product-section-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--brand-crimson);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
}

.product-layers-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.product-layer-item {
    background: var(--bg-surface-alt);
    border: 1px solid var(--border-light);
    border-left: 3.5px solid var(--brand-crimson);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-layer-item.layer-inner {
    border-left-color: var(--brand-green);
}

.product-layer-item.layer-reinf {
    border-left-color: #0284c7;
}

.product-layer-item.layer-outer {
    border-left-color: var(--brand-crimson);
}

.product-layer-name {
    font-family: var(--font-heading);
    font-size: 0.775rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.product-layer-desc {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.45;
}

.product-specs-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: var(--bg-surface-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
}

.product-spec-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    border-bottom: 1px dashed var(--border-light);
    padding-bottom: 0.4rem;
}

.product-spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-spec-label {
    color: var(--text-muted);
    font-weight: 600;
}

.product-spec-val {
    color: var(--text-dark);
    font-weight: 800;
    text-align: right;
}

.product-apps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-apps-list li {
    background: var(--bg-surface-alt);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--brand-green);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0.6rem 0.85rem;
    font-size: 0.875rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1.45;
}

.app-bullet {
    color: var(--brand-green);
    font-size: 0.95rem;
    line-height: 1;
    flex-shrink: 0;
}

/* 12. WHY CHOOSE US */
.why-us-section {
    background-color: var(--bg-surface);
}

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

.why-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 4px solid var(--brand-crimson);
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    border-bottom-color: var(--brand-green);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 60px; height: 60px;
    background: rgba(144, 12, 19, 0.08);
    border: 1.5px solid var(--brand-crimson);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    color: var(--brand-crimson);
}

.why-title {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.why-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 13. HIGH IMPACT EMERGENCY BREAKDOWN BANNER (FLYER CRIMSON & GOLD) */
.emergency-banner {
    background: linear-gradient(135deg, #6C050B 0%, var(--brand-crimson) 50%, #800A10 100%);
    border: 2px solid var(--brand-gold);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    margin: 4rem auto;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-crimson);
    color: #ffffff;
}

.emergency-stripe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
    background: repeating-linear-gradient(45deg, var(--brand-gold), var(--brand-gold) 15px, #ffffff 15px, #ffffff 30px);
}

.emergency-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.emergency-text {
    max-width: 650px;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--brand-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.emergency-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-weight: 900;
}

.emergency-sub {
    font-size: 1.15rem;
    color: #fce7e7;
    line-height: 1.6;
}

.emergency-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .emergency-ctas {
        width: 100%;
        flex-direction: column;
    }
    .emergency-ctas .btn {
        width: 100%;
    }
}

/* 14. QUOTATION FORM SECTION */
.quote-section {
    background-color: var(--bg-surface-alt);
}

.quote-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--brand-crimson);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .quote-card {
        padding: 1.75rem;
    }
}

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

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .form-group.full-width {
        grid-column: span 1;
    }
}

.form-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: var(--bg-surface-alt);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--brand-crimson);
    box-shadow: 0 0 0 3px rgba(144, 12, 19, 0.15);
    background: #ffffff;
}

.form-select option {
    background: #ffffff;
    color: var(--text-dark);
}

.file-upload-box {
    border: 2px dashed var(--border-medium);
    border-radius: var(--radius-sm);
    padding: 1.75rem;
    text-align: center;
    background: var(--bg-surface-alt);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.file-upload-box:hover {
    border-color: var(--brand-crimson);
    background: #ffffff;
}

/* 15. CONTACT SECTION */
.contact-section {
    background-color: var(--bg-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--brand-crimson);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-item-icon {
    width: 48px; height: 48px;
    background: rgba(46, 90, 28, 0.1);
    border: 1.5px solid var(--brand-green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    flex-shrink: 0;
}

.contact-item-details h5 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    font-weight: 800;
}

.contact-item-details p, .contact-item-details a {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-item-details a:hover {
    color: var(--brand-crimson);
}

.map-placeholder-box {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    position: relative;
}

.map-placeholder-box iframe {
    width: 100%; height: 100%;
    border: none;
}

/* 16. FOOTER (STRUCTURED SLATE WITH OFFICIAL FLYER BOTTOM GREEN RIBBON) */
.footer {
    background-color: #0f172a;
    border-top: 3px solid var(--brand-gold);
    padding: 4.5rem 0 0 0;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h5 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-weight: 800;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 2.5px;
    background: var(--brand-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 0.3rem;
}

/* OFFICIAL FLYER BOTTOM STRIP (SIGNATURE FOREST GREEN BAR WITH PHONE NUMBERS) */
.footer-flyer-bar {
    background: linear-gradient(90deg, #1E3D12 0%, var(--brand-green) 50%, #1E3D12 100%);
    border-top: 2px solid var(--brand-gold);
    padding: 1.15rem 0;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
}

.footer-flyer-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-flyer-phone-list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-flyer-phone-list a {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.footer-flyer-phone-list a:hover {
    color: var(--brand-gold-light);
}

.footer-bottom {
    background: #090d16;
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.825rem;
    color: #94a3b8;
}

/* 17. GLOBAL MODAL OVERLAY & BOX */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #ffffff;
    border: 2px solid var(--brand-crimson);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    max-width: 560px;
    width: 100%;
    box-shadow: var(--shadow-lg), 0 0 35px rgba(144, 12, 19, 0.2);
    text-align: center;
    transform: scale(0.92);
    transition: transform var(--transition-smooth);
    box-sizing: border-box;
    color: var(--text-body);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-icon-wrap {
    width: 70px; height: 70px;
    background: rgba(46, 90, 28, 0.1);
    border: 2px solid var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--brand-green);
}

.modal-cta-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    margin-top: 1.5rem;
}

.modal-box .btn-full-quote {
    white-space: normal !important;
    text-align: center;
    line-height: 1.35;
    padding: 0.75rem 1.15rem;
    font-size: 0.8rem;
    font-weight: 800;
    flex: 1 1 210px;
    box-sizing: border-box;
}

.modal-box .btn-whatsapp {
    padding: 0.75rem 1.15rem;
    font-size: 0.8rem;
    font-weight: 800;
    flex: 0 0 auto;
    box-sizing: border-box;
}
