/* ==========================================================================
   1. CORE RESET, GLOBAL CONTAINMENT & VARIABLES
   ========================================================================== */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

:root {
    --primary-red: #d31818;       
    --navy-dark: #071625;         
    --navy-tint: #112536;        
    --bg-frost: #f4f7fc;         
    --bg-lite-green: #eef7f2;     
    --border-green: #cbe6df;      
    --bg-subtle-slate: #f8fafc;
    --border-subtle-slate: #e2e8f0;
    --text-primary: #0f172a;    
    --text-secondary: #475569;  
    --text-muted: #94a3b8;
    --border-light: #e2e8f0;
    --radius: 4px;              
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --slide-transition: 0.85s cubic-bezier(0.77, 0, 0.175, 1);
    
    /* UNIVERSAL HEIGHT LAYOUT HEIGHT PARAMETERS */
    --header-height: 125px;
    --logo-height: 95px;
}

html { 
    scroll-behavior: smooth; 
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden; 
}

body { 
    font-family: 'Inter', sans-serif; 
    background: #ffffff; 
    color: var(--text-primary); 
    line-height: 1.65; 
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased; 
}

/* ───────────── CASE-SENSITIVE UTILITIES ───────────── */
p, h1, h2, h3, h4, h5, h6, li, span, input, textarea, button, a, div { text-transform: none !important; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container { 
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px; 
}

.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; color: var(--navy-tint); background: var(--bg-frost); padding: 6px 14px; border-radius: 2px; margin-bottom: 16px; border: 1px solid rgba(17, 37, 54, 0.1); }
.section-tag::before { content: ''; width: 6px; height: 6px; background: var(--primary-red); }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; color: var(--navy-dark); }
.section-title .highlight { color: var(--primary-red); }
.section-sub { font-size: 1.02rem; color: var(--text-secondary); margin-top: 12px; max-width: 650px; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: 4px; font-weight: 700; font-size: 0.92rem; transition: var(--transition); cursor: pointer; border: none; white-space: nowrap; }
.btn-primary-red { background: var(--primary-red); color: #fff; }
.btn-primary-red:hover { background: #b51212; transform: translateY(-1px); }
.btn-outline-navy { border: 1.5px solid var(--navy-dark); color: var(--navy-dark); background: transparent; }
.btn-outline-navy:hover { background: rgba(7, 22, 37, 0.05); transform: translateY(-1px); }

/* ==========================================================================
   2. HEADER NAV BAR & DESKTOP LINK SETUPS
   ========================================================================== */
.header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: var(--header-height);
    z-index: 100010; 
    display: flex;
    align-items: center;
    transition: padding var(--transition), height var(--transition), background var(--transition); 
    background: #ffffff; 
    border-bottom: 1px solid var(--border-light); 
}
.header.scrolled { 
    --header-height: 90px;
    --logo-height: 70px;
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(20px); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.02); 
}
.nav-container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo { display: flex; align-items: center; }
.logo-img { 
    height: var(--logo-height); 
    width: auto; 
    object-fit: contain; 
    transition: height var(--transition); 
}

.nav-menu-wrapper { margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; font-size: 0.92rem; font-weight: 600; }
.nav-links a { color: var(--text-secondary); transition: var(--transition); }
.nav-links a:hover { color: var(--primary-red); }
.nav-cta { background: var(--navy-dark); color: #fff !important; padding: 8px 18px; border-radius: 4px; }
.nav-cta:hover { background: var(--primary-red); }

.hamburger-premium { 
    display: none; 
    flex-direction: column; 
    justify-content: space-between; 
    width: 28px; 
    height: 18px; 
    background: transparent; 
    border: none; 
    cursor: pointer; 
    padding: 0; 
}
.hamburger-premium span { display: block; height: 2px; background: var(--navy-dark); transition: width 0.3s ease, transform 0.4s ease, background 0.3s ease; border-radius: 2px; }
.hamburger-premium .bar-top { width: 100%; }
.hamburger-premium .bar-mid { width: 75%; align-self: flex-end; }
.hamburger-premium .bar-bot { width: 50%; align-self: flex-end; }

.hamburger-premium.active .bar-top { transform: translateY(8px) rotate(45deg); background: var(--primary-red); }
.hamburger-premium.active .bar-mid { opacity: 0; transform: translateX(10px); }
.hamburger-premium.active .bar-bot { transform: translateY(-8px) rotate(-45deg); width: 100%; background: var(--primary-red); align-self: flex-start; }

/* ==========================================================================
   3. CLEAN WHITE & LITE GREEN HIGH-CONTRAST HERO SLIDER
   ========================================================================== */
.hero-slider { 
    position: relative; 
    height: calc(100vh - var(--header-height)); 
    margin-top: var(--header-height); 
    display: flex; 
    align-items: center; 
    background: #ffffff; 
    overflow: hidden; 
    width: 100%;
    transition: margin-top var(--transition), height var(--transition);
}

.header.scrolled + .hero-slider {
    margin-top: 90px;
    height: calc(100vh - 90px);
}

.hero-background-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-background-carousel .bg-slide-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform var(--slide-transition);
}
.hero-background-carousel .bg-img-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    width: 100%;
}
.hero-background-carousel .bg-img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.12; 
    filter: grayscale(20%);
}

.hero-background-carousel .bg-img-slide.slide-palette-mint { background-color: var(--bg-lite-green); }
.hero-background-carousel .bg-img-slide.slide-palette-slate { background-color: var(--bg-frost); }

.hero-slider .slides-content-container { 
    position: relative; 
    z-index: 3; 
    width: 100%; 
}
.hero-slider .slide-window { width: 100%; overflow: hidden; }
.hero-slider .slides { display: flex; width: 100%; transition: transform var(--slide-transition); }
.hero-slider .slide { flex: 0 0 100%; padding: 40px 0; width: 100%; }
.hero-slider .slide-grid { display: block; max-width: 850px; width: 100%; }

.welcome-text { font-size: 0.95rem; font-weight: 800; color: var(--navy-dark); background: rgba(7, 22, 37, 0.06); display: inline-block; padding: 5px 14px; border-radius: 4px; letter-spacing: 0.02em; margin-bottom: 20px; }
.slide-content h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 900; line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.02em; color: var(--navy-dark); }
.slide-content h1 .accent { color: var(--primary-red); }
.slide-content h1 .light { font-weight: 500; color: var(--text-secondary); }
.slide-content p { font-size: clamp(0.95rem, 1.8vw, 1.1rem); color: var(--text-secondary); margin-bottom: 36px; max-width: 680px; line-height: 1.65; }
.slide-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.slider-controls { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; background: rgba(7, 22, 37, 0.05); padding: 10px 16px; border-radius: 30px; border: 1px solid rgba(7,22,37,0.05); }
.slider-controls .dot-btn { width: 12px; height: 12px; border-radius: 50%; border: none; background: rgba(7,22,37,0.2); cursor: pointer; transition: var(--transition); }
.slider-controls .dot-btn.active { background: var(--navy-dark); width: 28px; border-radius: 30px; }
.slider-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 40px; z-index: 10; pointer-events: none; }
.slider-arrows button { pointer-events: auto; width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--border-light); background: #ffffff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--navy-dark); font-size: 1.1rem; transition: var(--transition); box-shadow: 0 4px 12px rgba(7,22,37,0.05); }
.slider-arrows button:hover { background: var(--primary-red); color: #ffffff; border-color: var(--primary-red); transform: scale(1.05); }

/* ==========================================================================
   4. ABOUT US PROFILE PILLARS
   ========================================================================== */
.about-section { padding: 100px 0; background: #fff; width: 100%; }
.about-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 60px; width: 100%; }
.about-lead { font-size: 1.1rem; color: var(--navy-dark); font-weight: 600; margin: 20px 0 16px; }
.about-body { color: var(--text-secondary); margin-bottom: 36px; }
.core-pillars { display: flex; flex-direction: column; gap: 16px; width: 100%; }
.pillar-card.green-palette-bg { background: var(--bg-lite-green); border: 1px solid var(--border-green); border-left: 4px solid var(--primary-red); padding: 24px; border-radius: var(--radius); display: flex; gap: 16px; width: 100%; }
.pillar-icon { font-size: 1.25rem; color: var(--primary-red); }
.pillar-info h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; color: var(--navy-dark); }
.pillar-info p { font-size: 0.9rem; color: var(--text-secondary); }
.sticky-brochure-card.text-blend-tone.dynamic-shield-profile { background: var(--bg-subtle-slate); border: 1px solid var(--border-subtle-slate); padding: 44px 32px; border-radius: 40px 10px 40px 10px; position: sticky; top: 120px; box-shadow: 0 15px 40px -10px rgba(7, 22, 37, 0.05); width: 100%; }
.sticky-brochure-card h3 { font-size: 1.2rem; margin-bottom: 12px; font-weight: 800; color: var(--navy-dark); }
.sticky-brochure-card p { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 24px; width: 100%; }
.brochure-meta-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 0.88rem; font-weight: 600; }
.brochure-meta-item i { color: var(--primary-red); }

/* ==========================================================================
   5. WHY CHOOSE US CORPORATE GRID
   ========================================================================== */
.features { padding: 120px 0; background: #ffffff; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); width: 100%; }
.features-split-header { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: flex-end; margin-bottom: 80px; border-bottom: 1px solid var(--border-subtle-slate); padding-bottom: 40px; width: 100%; }
.features-split-header .section-sub { margin-top: 0; font-size: 1.05rem; line-height: 1.7; color: var(--text-secondary); }
.premium-value-proposition-grid { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 48px; row-gap: 56px; width: 100%; }
.value-proposition-node { position: relative; background: #ffffff; display: flex; flex-direction: column; align-items: flex-start; transition: transform var(--transition); width: 100%; }
.node-geometric-accent { position: absolute; bottom: -16px; left: 0; width: 32px; height: 2px; background: var(--border-subtle-slate); transition: width var(--transition), background var(--transition); }
.value-proposition-node:hover { transform: translateY(-4px); }
.value-proposition-node:hover .node-geometric-accent { width: 100%; background: var(--primary-red); }
.node-content-profile { width: 100%; text-align: left; }
.node-icon-frame { font-size: 1.4rem; color: var(--navy-dark); margin-bottom: 24px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: flex-start; transition: color var(--transition); }
.features .value-proposition-node:hover .node-icon-frame { color: var(--primary-red); }
.node-content-profile h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 12px; letter-spacing: -0.02em; }
.node-content-profile p { font-size: 0.88rem; line-height: 1.65; color: var(--text-secondary); }

/* ==========================================================================
   6. SERVICES PILL GRID & ANIMATED CONNECTOR STYLING
   ========================================================================== */
.services-section { 
    padding: 120px 0; 
    background: #ffffff; 
    position: relative; 
    width: 100%;
}
.services-header-box { margin-bottom: 60px; text-align: left; width: 100%; }
.services-pill-wrapper { position: relative; margin-top: 40px; width: 100%; }
.services-pill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 5; width: 100%; }

.service-pill-card { 
    position: relative; 
    height: 490px; 
    border-radius: 1000px; 
    padding: 60px 28px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    box-shadow: 0 10px 30px -5px rgba(7, 22, 37, 0.04); 
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition); 
    width: 100%; 
}
.service-pill-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px -10px rgba(7, 22, 37, 0.1); }
.service-pill-card.pill-light-slate { background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%); border: 1px solid #e2e8f0; }
.service-pill-card.pill-light-blue { background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%); border: 1px solid #bae6fd; }
.pill-card-body { display: flex; flex-direction: column; align-items: center; width: 100%; }
.pill-card-body h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 24px; letter-spacing: -0.01em; }

.pill-icon-sphere { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(7, 22, 37, 0.06); background: #ffffff; }
.icon-color-blue i { color: #2563eb; }
.icon-color-purple i { color: #7c3aed; }
.icon-color-white i { color: #0284c7; }

.pill-spec-checklist { list-style: none !important; margin: 0 !important; padding: 0 !important; display: flex; flex-direction: column; gap: 12px; width: 100%; text-align: left; max-width: 240px; }
.pill-spec-checklist li { font-size: 0.8rem; font-weight: 500; line-height: 1.45; color: var(--text-secondary); position: relative; padding-left: 14px; }
.pill-spec-checklist li::before { content: ''; position: absolute; left: 0; top: 6px; width: 5px; height: 5px; border-radius: 50%; background: var(--primary-red); }
.pill-spec-checklist li strong { font-weight: 700; color: var(--navy-dark); }

.services-svg-connector { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; display: block; }
.services-svg-connector path { stroke: rgba(15, 23, 42, 0.04); stroke-width: 4px; }
.services-svg-connector .services-animated-snake { stroke: var(--primary-red); stroke-width: 4px; stroke-linecap: round; stroke-dasharray: 2000; stroke-dashoffset: 2000; animation: snakeFlowServiceLoop 9s linear infinite; opacity: 0.7; }
@keyframes snakeFlowServiceLoop { to { stroke-dashoffset: 0; } }

/* ==========================================================================
   6B. APPROACH WORKFLOW FLUID GRID (01 - 06 STADIUM STAGES)
   ========================================================================== */
.approach-section { padding: 120px 0; background: #ffffff; position: relative; width: 100%; }
.approach-header { margin-bottom: 60px; text-align: left; width: 100%; }
.pill-workflow-wrapper { position: relative; width: 100%; }
.pill-workflow-grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; position: relative; z-index: 5; width: 100%; }

.workflow-pill-card-6 { position: relative; height: 450px; border-radius: 1000px; padding: 40px 20px; background: var(--bg-subtle-slate); border: 1px solid var(--border-light); display: flex; flex-direction: column; justify-content: flex-start; align-items: center; text-align: center; transition: transform var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition); width: 100%; }
.workflow-pill-card-6:hover { transform: translateY(-6px); background: #ffffff; border-color: rgba(211, 24, 255, 0.25); box-shadow: 0 15px 35px rgba(7, 22, 37, 0.05); }

.pill-badge-6 { width: 44px; height: 44px; border-radius: 50%; background: #ffffff; border: 1px solid #cbd5e1; color: var(--navy-dark); font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: var(--transition); z-index: 2; }
.workflow-pill-card-6:hover .pill-badge-6 { background: var(--primary-red); border-color: var(--primary-red); color: #ffffff; box-shadow: 0 0 12px rgba(211, 24, 24, 0.3); }
.pill-card-inner h4 { font-size: 0.95rem; font-weight: 800; letter-spacing: 0.02em; color: var(--navy-dark); margin-bottom: 12px; }
.pill-icon-box { font-size: 1.5rem; color: var(--text-muted); margin-bottom: 16px; transition: color var(--transition); }
.workflow-pill-card-6:hover .pill-icon-box { color: var(--primary-red); }
.pill-card-inner p { font-size: 0.82rem; line-height: 1.6; color: var(--text-secondary); }

.card-flow-indicator { position: absolute; inset: -1px; border-radius: 1000px; pointer-events: none; border: 2px solid transparent; z-index: 1; mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0); -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0); -webkit-mask-composite: destination-out; mask-composite: exclude; opacity: 0; transition: opacity var(--transition); }
.workflow-pill-card-6:hover .card-flow-indicator { opacity: 1; }
.workflow-pill-card-6.active-flow-node .card-flow-indicator { background: linear-gradient(to bottom, var(--primary-red), transparent 70%) border-box; animation: pillBorderSpin 4s linear infinite; }
@keyframes pillBorderSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.workflow-pill-card-6:nth-child(even).active-flow-node .card-flow-indicator { background: linear-gradient(to bottom, #1d4ed8, transparent 70%) border-box; }
.workflow-pill-card-6:nth-child(even):hover .pill-badge-6 { background: #1d4ed8; border-color: #1d4ed8; color: #ffffff; box-shadow: 0 0 12px rgba(29, 78, 216, 0.3); }
.workflow-pill-card-6:nth-child(even):hover .pill-icon-box { color: #1d4ed8; }

/* ==========================================================================
   7. CONTACT INTAKE FORM MODULE & CORPORATE FOOTER
   ========================================================================== */
.cta-section { padding: 100px 0; background: var(--bg-frost); border-top: 1px solid var(--border-light); width: 100%; }
.contact-details-wrapper { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; width: 100%; }
.contact-info-column { width: 100%; }
.contact-info-column h2 { font-size: 2rem; margin-bottom: 10px; font-weight: 800; color: var(--navy-dark); }
.contact-info-column p { color: var(--text-secondary); margin-bottom: 36px; }
.contact-card-item { display: flex; gap: 16px; margin-bottom: 28px; width: 100%; }
.contact-card-item i { font-size: 1.15rem; color: var(--navy-tint); margin-top: 4px; }
.contact-card-item h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; color: var(--navy-dark); }
.contact-card-item p { font-size: 0.88rem; color: var(--text-secondary); }

.reference-style-form-card { background: #ffffff; border: 1px solid var(--border-light); border-radius: 16px; padding: 48px 40px; box-shadow: 0 20px 50px -10px rgba(7, 22, 37, 0.04); text-align: center; width: 100%; }
.form-card-title { font-size: 1.65rem; font-weight: 800; color: #1e1b4b; margin-bottom: 6px; }
.form-card-subtitle { font-size: 0.95rem; font-weight: 500; color: #4f46e5; margin-bottom: 32px; }
.ui-modern-light-form { width: 100%; }
.ui-modern-light-form .input-field-group { margin-bottom: 16px; width: 100%; }

.ui-modern-light-form input[type="text"], .ui-modern-light-form input[type="tel"], .ui-modern-light-form textarea { width: 100%; max-width: 100%; padding: 14px 20px; font-size: 1rem; font-family: inherit; border: 1px solid #cbd5e1; border-radius: 10px; transition: var(--transition); }
.ui-modern-light-form input:focus, .ui-modern-light-form textarea:focus { outline: none; border-color: #4f46e5; box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1); }

.phone-input-container { display: flex; align-items: center; border: 1px solid #cbd5e1; border-radius: 10px; background: #ffffff; overflow: hidden; width: 100%; }
.phone-input-container:focus-within { border-color: #4f46e5; box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1); }
.phone-input-container input { border: none !important; border-radius: 0 !important; padding-left: 12px !important; }
.flag-prefix-box { display: flex; align-items: center; gap: 8px; background: #f1f5f9; padding: 14px 16px; border-right: 1px solid #cbd5e1; color: #475569; font-size: 0.95rem; font-weight: 600; }
.inline-flag-img { width: 22px; height: auto; }
.drop-arrow-icon { font-size: 0.75rem; color: #94a3b8; }

.btn-start-construction { width: 100%; background: #eb5a28; color: #ffffff; font-size: 1.1rem; font-weight: 700; padding: 16px; border-radius: 10px; justify-content: center; box-shadow: 0 4px 14px rgba(235, 90, 40, 0.25); border: none; cursor: pointer; transition: var(--transition); }
.btn-start-construction:hover { background: #d44113; transform: translateY(-1px); }
.form-card-legal-notice { font-size: 0.8rem; color: #475569; line-height: 1.5; margin-top: 20px; text-align: left; }
.form-card-legal-notice a { color: #eb5a28; font-weight: 600; }

/* ───────────── FOOTER SPECS ───────────── */
.premium-footer { background: #091322; color: #ffffff; padding: 80px 0 0 0; border-top: 4px solid var(--primary-red); width: 100%; }
.premium-footer-upper { display: grid; grid-template-columns: 1.3fr 0.8fr 0.9fr; gap: 60px; padding-bottom: 60px; width: 100%; }
.footer-column h4 { font-size: 1.1rem; font-weight: 800; text-transform: none; color: #ffffff; margin-bottom: 24px; position: relative; padding-bottom: 10px; }
.footer-column h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary-red); }
.logo-brand-block { display: flex; align-items: center; justify-content: flex-start; width: 100%; }
.footer-logo-img { height: 52px; width: auto; filter: brightness(0) invert(1); display: block; }
.brand-desc { color: #94a3b8; font-size: 0.9rem; line-height: 1.7; margin: 20px 0 24px; max-width: 400px; }
.brand-product-tagline { font-size: 0.85rem; font-weight: 600; color: var(--primary-red); letter-spacing: 0.03em; }
.footer-services-links { list-style: none; width: 100%; }
.footer-services-links li { margin-bottom: 14px; }
.footer-services-links a { color: #94a3b8; font-size: 0.92rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.footer-services-links a:hover { color: #ffffff; transform: translateX(4px); }
.footer-hours-list { list-style: none; width: 100%; }
.footer-hours-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.9rem; color: #cbd5e1; }
.text-highlight-red { color: #ef4444 !important; font-weight: 600; }

.premium-footer-lower { background: #050b16; padding: 26px 0; border-top: 1px solid rgba(255, 255, 255, 0.04); width: 100%; }
.lower-split-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.82rem; color: #64748b; width: 100%; }
.copyright-meta { display: flex; flex-direction: column; gap: 4px; }
.tech-partner-attribution .partner-name { color: #ffffff; font-weight: 700; }
.partner-link-anchor:hover .partner-name { color: var(--primary-red) !important; }
.legal-links-list { display: flex; gap: 24px; list-style: none; }

/* ==========================================================================
   8. ENFORCED CROSS-BROWSER RESPONSIVENESS CRITERIA (Overflow Disallowed)
   ========================================================================== */
@media (max-width: 1024px) {
    :root { 
        --header-height: 100px; 
    }
    
    .header {
        height: 100px !important;
        padding: 10px 0 !important;
    }
    
    .logo-img {
        height: 60px !important;
        width: auto !important;
    }
    
    /* ADAPTIVE MULTI-LAYER HEIGHT CALCULATOR */
    .hero-slider { 
        height: calc(100vh - 100px) !important; 
        margin-top: 100px !important; 
        min-height: 580px;
        width: 100%;
        max-width: 100vw;
    }
    
    .header.scrolled + .hero-slider {
        margin-top: 80px !important;
        height: calc(100vh - 80px) !important;
    }
    
    .hero-slider .slide {
        padding: 15px 0 !important;
    }
    
    .slide-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
        margin-bottom: 16px !important;
    }
    
    .slide-content p {
        font-size: 0.92rem !important;
        line-height: 1.55 !important;
        margin-bottom: 28px !important;
    }
    
    .contact-details-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 48px !important;
        width: 100% !important;
    }

    .contact-info-column, .contact-form-column {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .reference-style-form-card {
        padding: 32px 20px !important;
    }

    .form-card-title { font-size: 1.35rem !important; }

    .about-grid, .features-split-header { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        width: 100%;
    }
    
    .premium-value-proposition-grid { 
        grid-template-columns: repeat(2, 1fr); 
        width: 100%;
    }
    
    .services-svg-connector { display: none !important; }
    
    .services-pill-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 24px; 
        width: 100%;
    }
    
    .service-pill-card { 
        height: auto !important; 
        border-radius: 40px !important; 
        padding: 40px 24px !important; 
        width: 100%;
    }
    
    .pill-workflow-grid-6 { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 20px; 
        width: 100%;
    }
    
    .workflow-pill-card-6 { 
        height: auto !important; 
        border-radius: 40px !important; 
        padding: 40px 24px !important; 
        width: 100%;
    }
    
    .premium-footer-upper { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        width: 100%;
    }
    
    .slider-arrows { display: none !important; }
}

@media (max-width: 768px) {
    .header { height: 125px !important; }
    .logo-img { height: 85px !important; }
    
    .hero-slider {
        height: calc(100vh - 95px) !important;
        margin-top: 95px !important;
    }

    .hamburger-premium { 
        display: flex; 
        margin-left: auto;
        position: relative;
        z-index: 100015 !important; 
    }
    
    .nav-menu-wrapper { 
        display: block; 
        position: static; 
        width: auto; 
        height: auto; 
    }
    
    .nav-links { 
        display: flex; 
        position: fixed; 
        top: 0; 
        right: -100%; 
        width: 100vw; 
        height: 100vh; 
        background: #ffffff !important; 
        flex-direction: column; 
        justify-content: center; 
        align-items: flex-start; 
        padding: 120px 40px 40px 40px; 
        transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.35s ease; 
        opacity: 0; 
        z-index: 100000 !important; 
        pointer-events: none;
    }
    
    .nav-links.open { 
        right: 0; 
        opacity: 1; 
        pointer-events: auto !important; 
    }
    
    .nav-links li { 
        width: 100%; 
        opacity: 0; 
        transform: translateX(20px); 
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease; 
    }
    .nav-links.open li { opacity: 1; transform: translateX(0); }
    
    .nav-links.open li:nth-child(1) { transition-delay: 0.08s; }
    .nav-links.open li:nth-child(2) { transition-delay: 0.12s; }
    .nav-links.open li:nth-child(3) { transition-delay: 0.16s; }
    .nav-links.open li:nth-child(4) { transition-delay: 0.20s; }
    .nav-links.open li:nth-child(5) { transition-delay: 0.24s; }
    .nav-links.open li:nth-child(6) { transition-delay: 0.28s; }
    
    .nav-links a { 
        color: var(--navy-dark) !important; 
        font-size: 1.3rem !important; 
        font-weight: 800 !important; 
        letter-spacing: -0.02em !important; 
        display: block !important; 
        width: 100%; 
        padding: 14px 0; 
        position: relative;
        cursor: pointer !important;
        pointer-events: auto !important;
    }
    
    .nav-links li:not(.cta-wrapper-node) a::after { 
        content: ''; 
        position: absolute; 
        bottom: 0; 
        left: 0; 
        width: 30px; 
        height: 1px; 
        background: var(--border-subtle-slate); 
    }
    
    .nav-links li.cta-wrapper-node { 
        margin-top: 24px; 
        width: 100%;
        max-width: 260px; 
    }
    
    .nav-links li.cta-wrapper-node a { 
        background: var(--navy-dark); 
        color: #ffffff !important; 
        text-align: center; 
        font-size: 0.95rem !important; 
        font-weight: 700 !important; 
        border-radius: 4px; 
        padding: 14px 20px; 
        display: block; 
        box-shadow: 0 8px 20px rgba(7, 22, 37, 0.1); 
    }
    
    .premium-value-proposition-grid, .pill-workflow-grid-6, .services-pill-grid { 
        grid-template-columns: 1fr !important; 
        gap: 20px; 
        width: 100% !important;
    }
    
    .service-pill-card, .workflow-pill-card-6 { 
        max-width: 100% !important; 
        border-radius: 24px !important; 
        padding: 36px 20px !important; 
        height: auto !important;
    }
    
    .pill-spec-checklist { max-width: 100%; }
    .logo-brand-block { justify-content: center; }
    .lower-split-container { flex-direction: column; text-align: center; gap: 12px; }
}