
/* ==========================================================================
   SHARED.CSS
   ========================================================================== */

:root {
    /* LIGHT THEME (default) */
    --primary: #f89630; /* Molten orange */
    --primary-hover: #e07a1c;
    --dark: #ffffff;      /* Card / surface color */
    --darker: #faf6f0;    /* Base background */
    --light: #1a1a1a;     /* Main text */
    --gray: #666666;      /* Secondary text */
    --glass: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.1);
    --hero-overlay-start: rgba(0,0,0,0.35);
    --hero-overlay-end: rgba(0,0,0,0.7);
    --map-filter: none;
    --input-bg: #f3ede4;
    --input-border: rgba(0, 0, 0, 0.25);
    --input-focus-bg: #ffffff;
    --client-card-bg: #ffffff;
    --client-card-border: rgba(248, 150, 48, 0.32);
    --nav-footer-bg: #ffffff;
    --header-pad-y: 1rem;
    --header-logo-h: 52px;
    --footer-logo-h: 92px;
    --logo-crop-y: 0.18;
    --container-width: 1300px;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

[data-theme="dark"] {
    /* DARK THEME */
    --primary: #f89630;
    --primary-hover: #e07a1c;
    --dark: #0f1115;
    --darker: #08090b;
    --light: #f5f5f7;
    --gray: #86868b;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --hero-overlay-start: rgba(0,0,0,0.5);
    --hero-overlay-end: rgba(0,0,0,0.9);
    --map-filter: none;
    --input-bg: rgba(255, 255, 255, 0.07);
    --input-border: rgba(255, 255, 255, 0.22);
    --input-focus-bg: rgba(255, 255, 255, 0.1);
    --client-card-bg: #1a1d24;
    --client-card-border: rgba(248, 150, 48, 0.35);
    --nav-footer-bg: #0f1115;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(248, 150, 48, 0.2); }
    50% { box-shadow: 0 0 20px rgba(248, 150, 48, 0.5); }
    100% { box-shadow: 0 0 5px rgba(248, 150, 48, 0.2); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

/* Section headings — consistent scale (matches Products: Aluminium Alloy Expertise) */
main h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--light);
}

.bg-dark {
    background-color: var(--dark);
}

.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-large {
    padding: 1.1rem 2.4rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff; /* Always white text on primary button */
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(248, 150, 48, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--glass-border);
    color: var(--light);
}

.btn-outline:hover {
    background-color: var(--glass);
    border-color: var(--light);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--header-pad-y) 0;
    background: var(--nav-footer-bg);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

header.scrolled {
    --header-pad-y: 0.65rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--header-logo-h);
}

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

header .brand-logo {
    display: block;
    height: var(--header-logo-h);
    overflow: hidden;
    line-height: 0;
}

header .brand-logo-img {
    height: calc(var(--header-logo-h) / (1 - 2 * var(--logo-crop-y)));
    width: auto;
    margin-top: calc(var(--header-logo-h) / (1 - 2 * var(--logo-crop-y)) * var(--logo-crop-y) * -1);
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.footer-brand {
    display: block;
    height: var(--footer-logo-h);
    overflow: hidden;
    line-height: 0;
}

.footer-logo-img {
    height: calc(var(--footer-logo-h) / (1 - 2 * var(--logo-crop-y)));
    width: auto;
    margin-top: calc(var(--footer-logo-h) / (1 - 2 * var(--logo-crop-y)) * var(--logo-crop-y) * -1);
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    margin-left: auto;
}

.menu-toggle {
    display: none;
}

.nav-links a:not(.btn) {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
    color: var(--light);
}

.nav-links a:not(.btn).active {
    font-weight: 600;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 2.5rem;
    color: var(--light);
    padding: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--primary);
}

.theme-icon {
    width: 1.35rem;
    height: 1.35rem;
}

:root:not([data-theme="dark"]) .theme-icon-sun {
    display: none;
}

[data-theme="dark"] .theme-icon-moon {
    display: none;
}

/* Footer */
.site-footer {
    background: var(--nav-footer-bg);
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

.site-footer .footer-main {
    padding: 4.5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.25fr);
    gap: 3rem;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand-col .footer-brand {
    text-decoration: none;
    align-self: flex-start;
}

.footer-brand-col .footer-logo-img {
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.75rem 0 0.5rem;
    line-height: 1.4;
}

.footer-about {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0 0 1.25rem;
    max-width: 300px;
}

.footer-heading {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(248, 150, 48, 0.35);
    display: inline-block;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-nav a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-nav a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    flex-shrink: 0;
}

.footer-nav a:hover {
    color: var(--primary);
    padding-left: 0.25rem;
}

.footer-nav a:hover::before {
    width: 10px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.55;
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(248, 150, 48, 0.1);
    color: var(--primary);
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
}

.footer-contact a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 0.15rem;
}

.footer-cta {
    margin-top: 1.25rem;
    padding: 0.65rem 1.25rem !important;
    font-size: 0.88rem !important;
    align-self: flex-start;
}

.social-links {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--gray);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 1.25rem 0;
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .footer-bottom {
    background: rgba(255, 255, 255, 0.02);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--gray);
    font-size: 0.82rem;
}

.footer-meta {
    font-size: 0.78rem !important;
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .site-footer .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-about {
        max-width: none;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.reveal-left,
.reveal-right,
.fade-up {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up { transform: translateY(30px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.fade-up.active {
    opacity: 1;
    transform: none;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1s; }

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.stagger-children.active > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger-children.active > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.stagger-children.active > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.stagger-children.active > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.stagger-children.active > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
.stagger-children.active > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.55s; }
.stagger-children.active > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.65s; }
.stagger-children.active > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 0.75s; }
.stagger-children.active > *:nth-child(9) { opacity: 1; transform: none; transition-delay: 0.85s; }
.stagger-children.active > *:nth-child(10) { opacity: 1; transform: none; transition-delay: 0.95s; }
.stagger-children.active > *:nth-child(11) { opacity: 1; transform: none; transition-delay: 1.05s; }

.heading-accent {
    display: block;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
    margin-top: 1.25rem;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.6s ease, transform 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}

.heading-accent.active {
    opacity: 1;
    transform: scaleX(1);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(248, 150, 48, 0.25); }
    50% { box-shadow: 0 0 24px 4px rgba(248, 150, 48, 0.12); }
}

@keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 968px) {
    .grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-title { font-size: 3.5rem; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: var(--nav-footer-bg);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: var(--light);
    }

    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .form-group { grid-template-columns: 1fr; }
    main h2 { font-size: 1.85rem; }
}

/* Common Layout Components */
.eyebrow {
    display: block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
}

/* ==========================================================================
   HOME.CSS
   ========================================================================== */

/* Specific styles for Home Page */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('assets/hero1.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.42) 0%,
        rgba(0, 0, 0, 0.35) 40%,
        rgba(0, 0, 0, 0.68) 100%
    );
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.52) 0%,
        rgba(0, 0, 0, 0.42) 40%,
        rgba(0, 0, 0, 0.78) 100%
    );
}

:root:not([data-theme="dark"]) .hero p {
    color: rgba(255, 255, 255, 0.82);
}

:root:not([data-theme="dark"]) .hero .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
}

:root:not([data-theme="dark"]) .hero .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

:root:not([data-theme="dark"]) .hero .mouse {
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-title-brand {
    color: #ffffff;
}

.hero-title-tagline {
    color: #e8d5c4;
    font-weight: 400;
    font-size: 0.62em;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    margin-top: 0.15em;
}

.hero-title-metal {
    color: var(--primary);
    font-size: 1em;
    line-height: 1;
    margin-top: 0.05em;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--gray);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* Who We Are */
.who-we-are-section {
    padding: 180px 0 100px;
}

.who-we-are-section h2 {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.who-we-are-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.who-we-are-content p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Core Expertise */
.expertise-section {
    padding: 100px 0;
    background: var(--darker);
}

.expertise-section > .container > [style*="margin:0 auto"],
.why-choose-section > .container > [style*="margin:0 auto"],
.clients-section .container > [style*="margin:0 auto"] {
    transform-origin: center;
}

.expertise-carousel {
    position: relative;
    margin-top: 2.5rem;
}

.expertise-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.expertise-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    padding: 1.75rem 1.5rem 1.65rem;
    border-radius: 18px;
    background: var(--dark);
    border: 1px solid rgba(248, 150, 48, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(248, 150, 48, 0.06);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(248, 150, 48, 0.35));
    opacity: 0.85;
    transition: opacity 0.35s ease;
}

.expertise-card::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 150, 48, 0.08) 0%, transparent 70%);
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
    border-color: rgba(248, 150, 48, 0.45);
    box-shadow: 0 16px 40px rgba(248, 150, 48, 0.12), 0 6px 16px rgba(0, 0, 0, 0.06);
}

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

.expertise-card:hover::after {
    transform: scale(1.15);
    opacity: 1;
}

.expertise-card-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(248, 150, 48, 0.12);
    border: 1px solid rgba(248, 150, 48, 0.2);
    transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.expertise-card-icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

.expertise-card:hover .expertise-card-icon {
    background: rgba(248, 150, 48, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(248, 150, 48, 0.15);
}

.expertise-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.expertise-card-num {
    display: block;
    margin-bottom: 0.65rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--primary);
    opacity: 0.85;
}

.expertise-card-title {
    margin: 0 0 0.85rem;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--light);
}

.expertise-card-title--long {
    line-height: 1.3;
}

.expertise-card-text {
    margin: 0;
    margin-top: auto;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--gray);
}

[data-theme="dark"] .expertise-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(248, 150, 48, 0.22);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .expertise-card:hover {
    border-color: rgba(248, 150, 48, 0.5);
    box-shadow: 0 16px 40px rgba(248, 150, 48, 0.1), 0 8px 24px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1100px) {
    .expertise-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.35rem;
        scrollbar-width: none;
    }

    .expertise-cards::-webkit-scrollbar {
        display: none;
    }

    .expertise-card {
        flex: 0 0 min(78vw, 300px);
        scroll-snap-align: start;
    }
}

@media (max-width: 600px) {
    .expertise-card {
        min-height: 300px;
        flex-basis: min(88vw, 300px);
    }
}

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

    .who-we-are-section,
    .expertise-section,
    .why-choose-section {
        padding: 70px 0;
    }
}

/* Why Choose Us — interactive showcase */
.why-choose-section {
    padding: 180px 0 100px;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 150, 48, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why-showcase {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 0;
    margin-top: 3rem;
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.why-showcase-nav {
    display: flex;
    flex-direction: column;
    background: var(--dark);
    border-right: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.why-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    cursor: pointer;
    text-align: left;
    color: var(--gray);
    font-family: inherit;
    transition: all 0.35s ease;
    position: relative;
}

.why-nav-item:hover {
    color: var(--light);
    background: rgba(248, 150, 48, 0.05);
}

.why-nav-item.active {
    color: var(--light);
    border-left-color: var(--primary);
    background: linear-gradient(90deg, rgba(248, 150, 48, 0.1), transparent);
}

.why-nav-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.6;
    min-width: 1.5rem;
}

.why-nav-item.active .why-nav-num {
    opacity: 1;
}

.why-nav-label {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.why-showcase-stage {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, rgba(248, 150, 48, 0.04) 100%);
    padding: 3rem 3.5rem 4rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.why-stage-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 150, 48, 0.15) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
}

.why-stage-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px dashed rgba(248, 150, 48, 0.2);
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    animation: spin-slow 20s linear infinite;
    pointer-events: none;
}

@keyframes spin-slow {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.why-panel {
    position: absolute;
    inset: 3rem 3.5rem 4rem;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    max-width: 520px;
}

.why-panel.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.why-panel-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(248, 150, 48, 0.12);
    color: var(--primary);
    margin-bottom: 1.75rem;
    animation: float-soft 3s ease-in-out infinite;
}

.why-panel-icon svg {
    width: 36px;
    height: 36px;
}

.why-panel-num {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(248, 150, 48, 0.12);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.why-panel h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.why-panel p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.75;
}

.why-progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--glass-border);
}

.why-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    transition: width 0.1s linear;
}

.why-progress-fill.animating {
    animation: why-progress 5s linear forwards;
}

@keyframes why-progress {
    from { width: 0%; }
    to { width: 100%; }
}

@media (max-width: 900px) {
    .why-showcase {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .why-showcase-nav {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 0.5rem;
        gap: 0.25rem;
        scrollbar-width: none;
    }

    .why-showcase-nav::-webkit-scrollbar { display: none; }

    .why-nav-item {
        flex-shrink: 0;
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.75rem 1rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        min-width: 120px;
        text-align: center;
    }

    .why-nav-item.active {
        border-left-color: transparent;
        border-bottom-color: var(--primary);
    }

    .why-nav-label { font-size: 0.75rem; }

    .why-showcase-stage {
        min-height: 340px;
        padding: 2rem 1.5rem 3rem;
    }

    .why-panel {
        inset: 2rem 1.5rem 3rem;
    }

    .why-stage-ring,
    .why-stage-glow { display: none; }
}

/* Clients Section */
.clients-section {
    background: var(--darker);
    padding: 180px 0 120px;
    position: relative;
    overflow-x: clip;
}

.clients-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(248, 150, 48, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.clients-marquee {
    overflow: hidden;
    width: 100%;
    margin-top: 4rem;
    padding: 2.5rem 0;
    border-radius: 12px;
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    animation: clients-scroll 40s linear infinite;
}

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

@keyframes clients-scroll {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.client-logo-card {
    flex-shrink: 0;
    width: 260px;
    height: 130px;
    background: var(--client-card-bg);
    border: 1px solid var(--client-card-border);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(248, 150, 48, 0.08);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.client-logo-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(248, 150, 48, 0.14), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.client-logo-img {
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ==========================================================================
   ABOUT.CSS
   ========================================================================== */

/* Specific styles for About Page */
.about-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
}

.about-hero h1 {
    font-size: 3.5rem;
    max-width: 820px;
    line-height: 1.15;
}

.about-hero .highlight {
    color: var(--primary);
}

.about-story-section {
    padding: 80px 0 100px;
    background: var(--dark);
}

.about-story-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.about-story-content p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Vision & Mission — editorial layout */
.vision-mission-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--glass-border) 15%, var(--glass-border) 85%, transparent);
    transform: translateX(-50%);
    pointer-events: none;
}

.vm-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 3rem;
    margin-top: 3.5rem;
    align-items: start;
}

.vm-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.vm-quote {
    margin: 0;
    padding: 0;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 600;
    line-height: 1.55;
    color: var(--light);
    position: relative;
}

.vm-quote-line {
    height: 3px;
    margin-top: 2rem;
    background: linear-gradient(90deg, var(--primary), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

.vm-vision.active .vm-quote-line {
    transform: scaleX(1);
}

.vm-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2.5rem;
    width: 24px;
}

.vm-connector-line {
    width: 2px;
    flex: 1;
    min-height: 120px;
    background: linear-gradient(to bottom, var(--primary), rgba(248, 150, 48, 0.2));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1s ease 0.5s;
}

.vm-connector-node {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(248, 150, 48, 0.15);
    animation: pulse-glow 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.6s ease 0.8s;
}

.vm-editorial.active .vm-connector-line,
.vision-mission-section:has(.vm-vision.active) .vm-connector-line {
    transform: scaleY(1);
}

.vm-editorial.active .vm-connector-node,
.vision-mission-section:has(.vm-vision.active) .vm-connector-node {
    opacity: 1;
}

.mission-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: mission;
}

.mission-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.4s ease, padding-left 0.4s ease;
}

.mission-steps li:last-child {
    border-bottom: none;
}

.mission-steps li:hover {
    padding-left: 0.5rem;
}

.step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: rgba(248, 150, 48, 0.25);
    line-height: 1;
    flex-shrink: 0;
    min-width: 2rem;
    transition: color 0.4s ease;
}

.mission-steps li:hover .step-num {
    color: var(--primary);
}

.step-text {
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.65;
    padding-top: 0.2rem;
}

@media (max-width: 900px) {
    .vm-editorial {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vm-connector {
        flex-direction: row;
        width: 100%;
        padding: 0;
    }

    .vm-connector-line {
        min-height: unset;
        width: 100%;
        height: 2px;
        transform: scaleX(0);
        transform-origin: left;
    }

    .vision-mission-section:has(.vm-vision.active) .vm-connector-line {
        transform: scaleX(1);
    }

    .vision-mission-section::before {
        display: none;
    }
}

.journey-section {
    padding: 100px 0;
    position: relative;
}

.journey-section h2 {
    margin-bottom: 1rem;
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--glass-border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--primary);
    border: 4px solid var(--darker);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left { left: 0; text-align: right; }
.right { left: 50%; }

.right::after { left: -10px; }

.timeline-content {
    padding: 2rem;
    background: var(--dark);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.team-section {
    padding: 100px 0;
    background: var(--dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-card {
    text-align: center;
}

.member-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    margin: 0 auto 1.75rem;
    overflow: hidden;
    border: none;
    transition: var(--transition);
}

.team-card:hover .member-image {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(248, 150, 48, 0.2);
}

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

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-info span {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-story-section,
    .vision-mission-section {
        padding: 60px 0 80px;
    }

    .member-image {
        width: 220px;
        height: 220px;
    }

    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left; }
    .timeline-item::after { left: 21px; }
    .right { left: 0; }
}

/* ==========================================================================
   PRODUCTS.CSS
   ========================================================================== */

/* Products Page */
.products-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
}

.products-hero h1 {
    font-size: 3.5rem;
    max-width: 720px;
    line-height: 1.15;
}

.products-hero .highlight {
    color: var(--primary);
}

.products-intro {
    max-width: 780px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-top: 2rem;
    padding-left: 1.25rem;
    border-left: 3px solid var(--primary);
}

.section-lead {
    max-width: 780px;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Process sections */
.process-section {
    padding: 80px 0;
}

.pdc-section {
    background: var(--dark);
}

.gdc-section {
    background: var(--darker);
}

.process-header {
    margin-bottom: 2.5rem;
}

.process-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    background: rgba(248, 150, 48, 0.12);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}


/* Product families */
.product-family {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.75rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--darker);
    transition: var(--transition);
}

.pdc-section .product-family {
    background: var(--darker);
}

.gdc-section .product-family {
    background: var(--dark);
}

.product-family:hover {
    border-color: rgba(248, 150, 48, 0.35);
    box-shadow: 0 6px 24px rgba(248, 150, 48, 0.08);
}

.product-family:last-child {
    margin-bottom: 0;
}

.product-family--reverse {
    flex-direction: row-reverse;
}

.product-family-visual {
    flex: 0 0 150px;
    width: 150px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem;
    transition: var(--transition);
}

.product-family-visual [data-theme="dark"] {
    background: #22262e;
}

.product-family:hover .product-family-visual {
    border-color: var(--primary);
}

.product-family-visual img {
    display: block;
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 110px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-family:hover .product-family-visual img {
    transform: scale(1.05);
}

.product-family-visual img.product-img-zoom {
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.55);
    transform-origin: center center;
}

.product-family:hover .product-family-visual img.product-img-zoom {
    transform: scale(1.65);
}

.product-family-body {
    flex: 1;
    min-width: 0;
}

/* Product content */
.product-title-row {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.product-index {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.45;
    line-height: 1;
    flex-shrink: 0;
}

.product-family-body h3 {
    font-size: 1.35rem;
    color: var(--light);
    line-height: 1.3;
}

.product-desc-block {
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: 10px;
    background: rgba(248, 150, 48, 0.05);
    border-left: 3px solid var(--primary);
}

.gdc-section .product-desc-block {
    background: rgba(248, 150, 48, 0.06);
}

.product-desc-block p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.product-apps h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.app-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1.25rem;
}

.app-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--light);
    line-height: 1.45;
}

.app-list li::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(248, 150, 48, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f89630' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Alloy expertise */
.alloy-section {
    padding: 80px 0;
    background: var(--darker);
}

.alloy-showcase {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    margin-top: 0.5rem;
}

.alloy-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    margin-bottom: 0.5rem;
}

.alloy-marquee-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: alloy-marquee 45s linear infinite;
}

.alloy-marquee-track span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--light);
    opacity: 0.12;
    white-space: nowrap;
}

@keyframes alloy-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.alloy-category-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.alloy-category-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(248, 150, 48, 0.45), transparent);
}

.alloy-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.alloy-list li {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--light);
    cursor: default;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.alloy-list li:hover {
    color: var(--primary);
    transform: translateY(-3px) scale(1.04);
    text-shadow: 0 8px 24px rgba(248, 150, 48, 0.2);
}

.alloy-list.stagger-children.active > *:nth-child(n+12) {
    opacity: 1;
    transform: none;
    transition-delay: 1.15s;
}

/* Industries */
.industries-section {
    padding: 100px 0 40px;
    background: var(--darker);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.industry-item {
    padding: 2rem 1.75rem;
    border-radius: 18px;
    background: var(--dark);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.industry-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(248, 150, 48, 0.1);
}

.industry-item:hover::before {
    transform: scaleX(1);
}

.industry-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(248, 150, 48, 0.12);
    color: var(--primary);
    margin-bottom: 1rem;
}

.industry-icon svg {
    width: 24px;
    height: 24px;
}

.industry-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.industry-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Capability snapshot */
.capability-snapshot {
    padding: 0 0 80px;
    background: var(--darker);
}

.snapshot-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem 2rem;
    width: 100%;
    padding: 2rem 2.5rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .snapshot-banner {
    background: var(--dark);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.snapshot-banner::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 150, 48, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.snapshot-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(248, 150, 48, 0.12);
    color: var(--primary);
    flex-shrink: 0;
}

.snapshot-icon svg {
    width: 28px;
    height: 28px;
}

.snapshot-text {
    flex: 1 1 260px;
    min-width: 0;
}

.snapshot-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.snapshot-text p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: none;
}

.snapshot-text strong {
    color: var(--primary);
}

.snapshot-capacities {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.4rem;
    flex: 0 0 auto;
    align-items: stretch;
}

.snapshot-capacities span {
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    background: var(--darker);
    border: 1px solid var(--glass-border);
    color: var(--light);
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.snapshot-banner:hover .snapshot-capacities span {
    border-color: rgba(248, 150, 48, 0.3);
}

@media (max-width: 900px) {
    .snapshot-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .snapshot-capacities {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .alloy-marquee-track span {
        font-size: 1.35rem;
    }

    .alloy-list li {
        font-size: 1rem;
    }

    .product-family,
    .product-family--reverse {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }

    .product-family-visual {
        flex: 0 0 110px;
        width: 110px;
        height: 105px;
        padding: 0.5rem;
    }

    .product-family-visual img {
        max-width: 90px;
        max-height: 85px;
    }

    .product-family-body h3 {
        font-size: 1.1rem;
    }

    .product-index {
        font-size: 1.2rem;
    }

    .app-list {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .snapshot-banner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .snapshot-capacities {
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 150px 0 60px;
    }

    .products-hero h1 {
        font-size: 2.5rem;
    }

    .process-section,
    .alloy-section,
    .industries-section {
        padding: 70px 0 32px;
    }

    .capability-snapshot {
        padding-bottom: 60px;
    }

    .snapshot-banner {
        padding: 1.75rem 1.25rem;
    }
}

/* ==========================================================================
   CONTACT.CSS
   ========================================================================== */

/* Specific styles for Contact Page */
.contact-hero {
    padding: 180px 0 60px;
    background: var(--darker);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    margin-top: 3rem;
    margin-bottom: 100px;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: var(--map-filter);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--dark);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.info-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .contact-layout { grid-template-columns: 1fr; }
    .map-container { order: 2; height: 300px; }
    .form-row { grid-template-columns: 1fr; }
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--dark);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.form-field {
    margin: 0;
}

.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.4rem;
}

.required-mark {
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
}

.field-error {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: #e53935;
    line-height: 1.3;
}

.field-error:empty {
    display: none;
}

.contact-form input.input-error,
.contact-form textarea.input-error {
    border-color: #e53935;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04), 0 0 0 3px rgba(229, 57, 53, 0.12);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    display: block;
    background: var(--input-bg);
    border: 1.5px solid var(--input-border);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    color: var(--light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
    opacity: 0.75;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--input-focus-bg);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04), 0 0 0 3px rgba(248, 150, 48, 0.18);
}

.contact-form button[type="submit"] {
    margin-top: 0.25rem;
}

/* Head office photo */
.head-office-section {
    padding: 80px 0 100px;
    background: var(--darker);
}

.head-office-section h2 {
    margin-bottom: 0;
}

.head-office-intro {
    color: var(--gray);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 640px;
    margin: 1.25rem 0 2.5rem;
}

.head-office-photo {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--dark);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.head-office-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: 520px;
    object-fit: cover;
}

.head-office-photo figcaption {
    padding: 1rem 1.25rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    border-top: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
    .head-office-section {
        padding-bottom: 70px;
    }

    .head-office-photo img {
        aspect-ratio: 4 / 3;
        max-height: none;
    }
}
