/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
    --color-navy: #0A2540;
    --color-navy-light: #1A365D;
    --color-green: #2ECC71;
    --color-green-glow: rgba(46, 204, 113, 0.4);
    --color-warm-accent: #F39C12;
    --color-white: #FFFFFF;
    --color-slate-100: #F8FAFC;
    --color-slate-200: #E2E8F0;
    --color-slate-400: #94A3B8;
    --color-slate-700: #334155;
    --color-slate-800: #1E293B;
    --color-glass-dark: rgba(10, 37, 64, 0.85);
    --color-glass-light: rgba(255, 255, 255, 0.85);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px -10px rgba(10, 37, 64, 0.1);
    --shadow-glow: 0 0 20px rgba(46, 204, 113, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* --- BASE RESET & SETUP --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-slate-100);
    color: var(--color-slate-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-navy);
}
::-webkit-scrollbar-thumb {
    background: var(--color-green);
    border-radius: var(--radius-sm);
}

/* --- STRUCTURAL LAYOUT --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* Helper layout classes for interior sub-pages (prevents header overlapping) */
.page-interior {
    padding-top: 140px;
}

/* Section Title Utilities */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-badge {
    background: rgba(46, 204, 113, 0.1);
    color: var(--color-green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 16px;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--color-slate-700);
    font-size: 1.1rem;
}

/* BUTTONS WITH MOTION PHYSICS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-green), #27ae60);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2ecc71, var(--color-warm-accent));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
}

.btn-secondary {
    background: var(--color-navy);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

/* --- GLOBAL HEADER (GLASSMORPHISM) --- */
.global-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-glass-dark);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.header-top {
    background: rgba(5, 15, 26, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
}

.header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-info-pills {
    display: flex;
    gap: 16px;
}

.info-pill {
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.info-pill:hover {
    border-color: var(--color-green);
    background: rgba(46, 204, 113, 0.1);
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: var(--shadow-glow);
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.header-main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

.brand-logo-container:hover .brand-logo-img {
    transform: scale(1.03);
}

.brand-text-block {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 12px;
}

.brand-main-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.brand-sub-title {
    font-size: 0.7rem;
    color: var(--color-green);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.nav-bar {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 6px 0;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-green);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO CANVAS SECTION --- */
.hero-canvas-section {
    position: relative;
    min-height: 80vh;
    background: radial-gradient(circle at 50% 50%, var(--color-navy-light), var(--color-navy));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 140px;
}

#interactive-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: all;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.kinetic-headline {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.kinetic-headline span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: revealCharacter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes revealCharacter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 0 auto 40px auto;
    line-height: 1.5;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.floating-wireframe-cube {
    position: absolute;
    border: 2px dashed rgba(46, 204, 113, 0.2);
    border-radius: var(--radius-sm);
    animation: float-slow 12s infinite linear;
    pointer-events: none;
}

.cube-1 { width: 120px; height: 120px; top: 15%; left: 8%; }
.cube-2 { width: 80px; height: 80px; bottom: 20%; right: 10%; }

@keyframes float-slow {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* --- ABOUT SECTION & COUNTERS --- */
.about-section {
    background: var(--color-white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-story h3 {
    font-size: 2rem;
    color: var(--color-navy);
    font-weight: 700;
}

.animated-counters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.counter-card {
    background: var(--color-slate-100);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-slate-200);
    transition: var(--transition-smooth);
    text-align: center;
}

.counter-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-green);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-green);
    margin-bottom: 8px;
}

.counter-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-slate-700);
}

.value-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.value-pillar {
    background: var(--color-slate-100);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-navy);
    transition: var(--transition-smooth);
}

.value-pillar:hover {
    transform: scale(1.03);
    border-left-color: var(--color-green);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.value-pillar h4 {
    font-size: 1.15rem;
    color: var(--color-navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.value-pillar p {
    font-size: 0.9rem;
    color: var(--color-slate-700);
}

.cultural-banner {
    background: linear-gradient(135deg, var(--color-navy-light), var(--color-navy));
    color: var(--color-white);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.cultural-banner-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    font-size: 15rem;
    font-family: var(--font-accent);
    line-height: 1;
    pointer-events: none;
}

.cultural-quote {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.4;
    font-style: italic;
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
}

.cultural-author {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-green);
    position: relative;
    z-index: 2;
}

/* --- RECRUITMENT & STAFFING MATRIX --- */
.skilling-matrix-section {
    background: var(--color-slate-100);
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.tilt-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    transform-style: preserve-3d;
    border: 1px solid rgba(10, 37, 64, 0.05);
    cursor: pointer;
    position: relative;
}

.tilt-card:hover {
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.12);
}

.tilt-card-content {
    transform: translateZ(30px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-green);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.tilt-card:hover .card-icon {
    background: var(--color-green);
    color: var(--color-white);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.card-desc {
    color: var(--color-slate-700);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--color-slate-100);
    color: var(--color-slate-700);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* --- MULTI-SECTOR RECRUITMENT --- */
.industry-section {
    background: var(--color-navy);
    color: var(--color-white);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--color-green);
    transform: scaleY(0);
    transition: var(--transition-smooth);
    transform-origin: bottom;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    border-color: rgba(46, 204, 113, 0.4);
}

.industry-card:hover::before {
    transform: scaleY(1);
}

.industry-card-icon {
    font-size: 2rem;
    color: var(--color-green);
    margin-bottom: 16px;
}

.industry-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.industry-stats {
    background: rgba(46, 204, 113, 0.1);
    color: var(--color-green);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.industry-detail {
    font-size: 0.85rem;
    color: var(--color-slate-400);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.industry-card:hover .industry-detail {
    opacity: 1;
    transform: translateY(0);
}

/* --- DUAL-LOCATION INTERACTIVE HUB --- */
.hub-section {
    background: var(--color-slate-100);
}

.hub-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-hub {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.hub-switch-tabs {
    display: flex;
    background: var(--color-slate-100);
    padding: 6px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.hub-tab {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--color-slate-700);
}

.hub-tab.active {
    background: var(--color-navy);
    color: var(--color-white);
}

.location-view-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.location-view-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.location-card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-map-mock {
    width: 100%;
    height: 250px;
    background: #E2E8F0;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-slate-200);
}

.mock-map-visual {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    filter: grayscale(20%) contrast(110%);
}

.map-pin-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-navy);
    color: var(--color-white);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.3);
    border: 2px solid var(--color-green);
}

.location-details-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.meta-item {
    background: var(--color-slate-100);
    padding: 16px;
    border-radius: var(--radius-sm);
}

.meta-item h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-slate-700);
    margin-bottom: 4px;
}

.meta-item p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-navy);
}

/* Dynamic Sourcing Forms */
.lead-form-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(10, 37, 64, 0.05);
}

.lead-form-card h3 {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 24px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-slate-700);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-slate-200);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    background: var(--color-slate-100);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-green);
    background: var(--color-white);
    box-shadow: 0 0 0 4px var(--color-green-glow);
}

/* --- FOOTER SECTION --- */
.footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--color-slate-400);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-col h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background: var(--color-green);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-slate-400);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-green);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--color-slate-400);
}

/* --- PERSISTENT ACTIONS --- */
.floating-action-dock {
    position: fixed;
    right: 24px;
    bottom: 40px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-action-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    position: relative;
}

.floating-whatsapp {
    background: #25D366;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.floating-call {
    background: var(--color-navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-call:hover {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: var(--shadow-soft);
}

/* Sliding Quick Inquiry Action */
.quick-inquiry-trigger {
    background: var(--color-warm-accent);
    color: var(--color-white);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 16px 8px;
    font-weight: 700;
    border-radius: 8px 0 0 8px;
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 998;
    cursor: pointer;
    box-shadow: -4px 0 15px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.quick-inquiry-trigger:hover {
    padding-right: 12px;
}

.quick-inquiry-panel {
    position: fixed;
    right: -420px;
    top: 0;
    width: 420px;
    height: 100vh;
    background: var(--color-white);
    z-index: 1001;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.quick-inquiry-panel.active {
    right: 0;
}

.panel-close {
    align-self: flex-end;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-slate-700);
    transition: var(--transition-smooth);
}

.panel-close:hover {
    color: var(--color-green);
}

.social-dock {
    position: fixed;
    left: 24px;
    bottom: 40px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-dock-icon {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-navy);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-slate-200);
}

.social-dock-icon:hover {
    background: var(--color-green);
    color: var(--color-white);
    transform: translateY(-4px);
}

/* Lightbox overlays */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 600px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-slate-700);
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--color-green);
}

/* --- MOBILE BOTTOM NAVIGATION BAR --- */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-glass-dark);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    grid-template-columns: repeat(4, 1fr);
    padding: 8px 0;
}

.mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
}

.mobile-bottom-item i {
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: var(--color-green);
}

/* --- RESPONSIVE WORKFLOWS --- */
@media (max-width: 1050px) {
    .nav-bar {
        gap: 16px;
    }
    .brand-main-title {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .about-grid, .hub-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-bar {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .header-top {
        display: none;
    }

    .mobile-bottom-nav {
        display: grid;
    }

    .floating-action-dock {
        bottom: 80px;
        right: 16px;
    }

    .social-dock {
        display: none;
    }

    .quick-inquiry-trigger {
        top: 50%;
    }

    .quick-inquiry-panel {
        width: 100%;
        right: -100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .animated-counters-grid, .value-pillars-grid {
        grid-template-columns: 1fr;
    }
}