@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    color-scheme: light;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Brand-Tailored Light Theme Palette (Sampled from Logo) */
    --bg-light: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: #ffffff;
    
    --accent-red: #d81e06; /* Logo Red */
    --accent-red-glow: rgba(216, 30, 6, 0.08);
    --accent-gold: #f9c80e; /* Logo Crown Gold */
    --accent-gold-glow: rgba(249, 200, 14, 0.12);
    
    --text-dark: #0f172a; /* Slate 900 for headings */
    --text-slate: #334155; /* Slate 700 for body */
    --text-muted: #64748b; /* Slate 500 for captions */
    
    --border-color: rgba(216, 30, 6, 0.06);
    --border-glow: rgba(216, 30, 6, 0.2);
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-light);
    color: var(--text-slate);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 15%, rgba(249, 200, 14, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(216, 30, 6, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(249, 200, 14, 0.03) 0%, transparent 50%);
}

/* Custom Styled Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 99px;
    border: 2px solid #f1f5f9;
    transition: var(--transition-smooth);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-slate);
    font-weight: 400;
}

/* Premium Light Sticky Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.35rem 4%;
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    padding: 0.95rem 4%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border-bottom-color: rgba(216, 30, 6, 0.12);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.brand-logo-img:hover {
    transform: scale(1.08) rotate(3deg);
}

.brand-logo-txt {
    font-size: 1.45rem;
    font-weight: 850;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-dark) 20%, var(--accent-red) 70%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.brand-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-red);
    background: var(--accent-red-glow);
    border: 1px solid rgba(216, 30, 6, 0.15);
    padding: 0.15rem 0.5rem;
    border-radius: 99px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav a {
    color: var(--text-slate);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -6px;
    left: 0;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
    border-radius: 99px;
    transition: var(--transition-smooth);
}

.site-nav a:hover {
    color: var(--accent-red);
}

.site-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* Container & Shell */
.page-shell {
    position: relative;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections Global */
section {
    padding: 7.5rem 0;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #0f172a;
}

.hero-banner-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.42), rgba(15, 23, 42, 0.72)),
      url('/banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: saturate(1.05) contrast(1.05) brightness(0.95);
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: all;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0.55));
    z-index: 3;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    pointer-events: none;
    width: 100%;
}

.hero-copy {
    max-width: 660px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 2rem;
    padding: 3rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    pointer-events: auto;
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-red-glow);
    border: 1px solid rgba(216, 30, 6, 0.18);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
    animation: pulse 1.5s infinite;
}

.hero-copy h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 40%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-copy p {
    font-size: 1.15rem;
    color: var(--text-slate);
    margin-bottom: 2.2rem;
    max-width: 580px;
}

.btn-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.95rem 1.85rem;
    border-radius: 99px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, #b31402 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 12px 30px rgba(216, 30, 6, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 36px rgba(216, 30, 6, 0.35);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.btn-secondary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    border-color: rgba(15, 23, 42, 0.15);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    pointer-events: auto;
}

.mouse-wheel {
    width: 20px;
    height: 35px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 7px;
    background-color: var(--accent-red);
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    border-radius: 2px;
    animation: scrollDown 1.8s infinite;
}

/* Sections Global Headers */
.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 4.5rem;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 750;
    color: var(--accent-red);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
    background: var(--accent-red-glow);
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    border: 1px solid rgba(216, 30, 6, 0.1);
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-slate);
}

/* Leadership / About Section */
.director-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.director-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 2.5rem;
    padding: 3.5rem;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: grid;
    grid-template-columns: 1.15fr 1.85fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
}

.director-img-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 0.85;
    border: 4px solid #ffffff;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.director-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.4) 0%, transparent 60%);
}

.director-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-smooth);
}

.director-img-wrapper:hover .director-photo {
    transform: scale(1.06);
}

.director-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2;
}

.director-name {
    font-size: 1.45rem;
    font-weight: 750;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.director-title {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.director-message {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.director-quote-badge {
    font-size: 4rem;
    line-height: 1;
    color: var(--accent-red);
    font-family: serif;
    height: 2rem;
    margin-bottom: -1rem;
    opacity: 0.35;
}

.director-message h3 {
    font-size: 1.85rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.director-message blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-slate);
    line-height: 1.75;
    position: relative;
    border-left: 3px solid var(--accent-red);
    padding-left: 1.5rem;
}

.director-signature {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sig-name {
    font-weight: 800;
    color: var(--text-dark);
}

.sig-comp {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sig-stamp {
    opacity: 0.85;
}

/* Products Section */
.products-section {
    background: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.25rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 2.25rem;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 30, 6, 0.25);
    background: var(--bg-card-hover);
    box-shadow: 0 25px 50px rgba(216, 30, 6, 0.05), 0 10px 20px rgba(15, 23, 42, 0.04);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.45;
    overflow: hidden;
    background: #f1f5f9;
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
}

.product-badge {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    z-index: 5;
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--accent-red);
    padding: 0.25rem 0.65rem;
    border-radius: 99px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(216, 30, 6, 0.25);
}

.product-info {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.product-info p {
    font-size: 0.95rem;
    color: var(--text-slate);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    padding-top: 1.25rem;
}

.product-features-list li {
    font-size: 0.85rem;
    color: var(--text-slate);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-red);
    box-shadow: 0 0 4px var(--accent-red);
}

/* Staggering highlight card */
.products-grid .product-card:nth-child(7) {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
}

.products-grid .product-card:nth-child(7) .product-img-wrapper {
    aspect-ratio: auto;
    height: 100%;
    border-bottom: none;
    border-right: 1px solid rgba(15, 23, 42, 0.03);
}

/* Strengths Section */
.strengths-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

.strengths-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.strength-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 2.25rem;
    padding: 3rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.strength-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2.25rem;
    background: linear-gradient(135deg, var(--accent-red-glow), transparent 40%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.strength-card:hover {
    border-color: rgba(216, 30, 6, 0.2);
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
}

.strength-card:hover::before {
    opacity: 1;
}

.strength-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 1.25rem;
    background: var(--accent-red-glow);
    border: 1px solid rgba(216, 30, 6, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--accent-red);
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(216, 30, 6, 0.05);
}

.strength-card:nth-child(2) .strength-icon-box {
    background: var(--accent-gold-glow);
    border-color: rgba(249, 200, 14, 0.2);
    color: #e2a000;
}

.strength-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.strength-card p {
    font-size: 0.95rem;
    color: var(--text-slate);
    position: relative;
    z-index: 1;
}

.strength-bullets {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    position: relative;
    z-index: 1;
}

.strength-bullets li {
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-slate);
}

.strength-bullets li svg {
    color: var(--accent-red);
    flex-shrink: 0;
}

.strength-card:nth-child(2) .strength-bullets li svg {
    color: #d09400;
}

/* Industries Served */
.industries-section {
    background: transparent;
}

.industries-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 2.5rem;
    padding: 4rem;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.03);
}

.industries-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: center;
}

.industries-content h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.industries-content p {
    font-size: 1.05rem;
    color: var(--text-slate);
    margin-bottom: 2rem;
}

.industries-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.industry-pill {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 1.25rem;
    border-radius: 1.25rem;
    font-weight: 650;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.industry-pill:hover {
    background: var(--accent-red-glow);
    border-color: rgba(216, 30, 6, 0.25);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(216, 30, 6, 0.04);
}

.industry-pill svg {
    color: var(--accent-red);
    font-size: 1.2rem;
}

/* Contact Section & Form */
.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 2.5rem;
    padding: 3.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-header h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.05rem;
    color: var(--text-slate);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.detail-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.detail-icon {
    width: 45px;
    height: 45px;
    border-radius: 0.75rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.detail-txt strong {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.detail-txt p, .detail-txt a {
    font-size: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.detail-txt a:hover {
    color: var(--accent-red);
}

.contact-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-slate);
    transition: var(--transition-smooth);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.social-link:hover {
    background: var(--accent-red);
    color: #ffffff;
    border-color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(216, 30, 6, 0.2);
}

/* Inquiry Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

textarea.form-input {
    resize: none;
    min-height: 140px;
}

.form-label {
    position: absolute;
    left: 1.5rem;
    top: 1.1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    pointer-events: none;
    background: transparent;
}

/* Floating Label Logic */
.form-input:focus, .form-input:not(:placeholder-shown) {
    border-color: var(--accent-red);
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(216, 30, 6, 0.05);
}

.form-input:focus ~ .form-label, .form-input:not(:placeholder-shown) ~ .form-label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-red);
    background: #ffffff;
    padding: 0 0.5rem;
    border-radius: 4px;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.01);
}

.form-alert {
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
}

.form-alert.success {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.form-alert.error {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

/* Footer styling */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    background: #ffffff;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-brand-txt {
    font-size: 1.15rem;
    font-weight: 850;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    text-transform: uppercase;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-red);
}

/* --- ANIMATION TOKENS (Intersection Observer Reveal System) --- */

/* Only hide elements if JavaScript is active and has initialized successfully */
.js-reveal-active .reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal-active .reveal-item.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Delays for staggered grid animations */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Base Keyframe animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(216, 30, 6, 0.4);
    }
    70% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 8px rgba(216, 30, 6, 0);
    }
    100% {
        transform: scale(1);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(216, 30, 6, 0);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        top: 6px;
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 22px;
    }
}

/* Responsive Rules */
@media (max-width: 1024px) {
    section {
        padding: 5.5rem 0;
    }

    .director-card {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }

    .director-img-wrapper {
        max-width: 380px;
        margin: 0 auto;
        aspect-ratio: 1;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-grid .product-card:nth-child(7) {
        grid-column: span 2;
    }

    .strengths-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .strength-card:nth-child(3) {
        grid-column: span 2;
    }

    .industries-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 4%;
    }
    
    .site-nav {
        display: none;
    }
    
    .hero-copy {
        padding: 2rem;
        margin: 0 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-grid .product-card:nth-child(7) {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .products-grid .product-card:nth-child(7) .product-img-wrapper {
        border-right: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.03);
    }

    .strengths-container {
        grid-template-columns: 1fr;
    }

    .strength-card:nth-child(3) {
        grid-column: span 1;
    }

    .industries-container {
        padding: 2rem;
    }

    .industries-pills {
        grid-template-columns: 1fr;
    }

    .footer-layout {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}
