/* =====================================================
   PROMPT MANPOWER SERVICES — PREMIUM CSS (Bootstrap 5)
   Dark Navy Blue + Orange Corporate Design
   ===================================================== */

/* ---- VARIABLES ---- */
:root {
    --navy: #0d1b3e;
    --navy-mid: #122155;
    --navy-light: #1a2d6d;
    --orange: #f47c2b;
    --orange-dark: #d96a1a;
    --orange-light: #ff9441;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --light-grey: #f0f4fa;
    --text-dark: #1a1a2e;
    --text-mid: #444e6a;
    --text-light: #8a95b0;
    --border: #e0e6f0;
    --shadow-sm: 0 2px 15px rgba(13,27,62,0.07);
    --shadow-md: 0 8px 30px rgba(13,27,62,0.12);
    --shadow-lg: 0 20px 60px rgba(13,27,62,0.18);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ---- UTILITY CLASSES ---- */
.text-orange { color: var(--orange) !important; }
.text-navy { color: var(--navy) !important; }
.text-white-75 { color: rgba(255,255,255,0.75) !important; }

.bg-light-grey { background-color: var(--light-grey) !important; }
.bg-navy-dark { background-color: var(--navy) !important; }

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ---- BUTTONS ---- */
.btn-navy {
    background: var(--navy);
    color: #fff;
    border: 2px solid var(--navy);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.btn-navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13,27,62,0.25);
}
.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}
.btn-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff !important;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(244,124,43,0.3);
}
.btn-orange:hover {
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244,124,43,0.45);
    color: #fff !important;
}
.btn-outline-white {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff !important;
    transform: translateY(-2px);
}
.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #2de374, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.45);
    color: #fff !important;
}

/* ---- SECTION TYPOGRAPHY ---- */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(244,124,43,0.12), rgba(244,124,43,0.05));
    color: var(--orange);
    border: 1.5px solid rgba(244,124,43,0.25);
    border-radius: 50px;
    padding: 5px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-label.light {
    background: rgba(244,124,43,0.15);
    border-color: rgba(244,124,43,0.4);
    color: var(--orange-light);
}
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.section-subtitle {
    color: var(--text-mid);
    font-size: 1.05rem;
    max-width: 640px;
    line-height: 1.75;
}
.section-body {
    color: var(--text-mid);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* =============================================
   NAVBAR
   ============================================= */
/* ---- LOGO + BRAND TEXT COMBO ---- */
.navbar-logo {
    height: 54px;
    width: 54px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: #fff;
    padding: 3px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.navbar-logo:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 20px rgba(244, 124, 43, 0.45);
}

/* Navbar brand text beside logo */
.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.nbt-main {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.18rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.nbt-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.6rem;
    color: var(--orange);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Footer logo */
.footer-logo {
    height: 58px;
    width: 58px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: #fff;
    padding: 3px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

/* Footer brand text beside logo */
.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.fbt-main {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.fbt-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.58rem;
    color: var(--orange);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pms-navbar {
    background: rgba(13, 27, 62, 0.97) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 0;
    transition: var(--transition);
    z-index: 1050;
}
.pms-navbar.scrolled {
    padding: 10px 0;
    background: rgba(13, 27, 62, 1) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(244,124,43,0.4);
}
.brand-icon.small-brand {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-main {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1px;
}
.brand-sub {
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--orange);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.pms-navbar .nav-link {
    color: rgba(255,255,255,0.82) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.2px;
}
.pms-navbar .nav-link:hover,
.pms-navbar .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(13,27,62,0.93) 0%, rgba(26,45,109,0.88) 50%, rgba(13,27,62,0.92) 100%),
        url('hero_bg.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 70% 50%, rgba(244,124,43,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(255,255,255,0.06), transparent);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(244,124,43,0.2);
    border: 1px solid rgba(244,124,43,0.5);
    color: var(--orange-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: fadeInDown 0.8s ease;
}
.hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-subtext {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 560px;
    animation: fadeInUp 0.9s ease 0.35s both;
}
.hero-stats {
    animation: fadeInUp 0.9s ease 0.5s both;
}
.stat-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    text-align: center;
    backdrop-filter: blur(8px);
}
.stat-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--orange);
    line-height: 1;
}
.stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}
.hero-btns { animation: fadeInUp 0.9s ease 0.65s both; }
.hero-card-stack {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    white-space: nowrap;
}
.hero-float-card i { font-size: 1.4rem; }
.hero-float-card.card-1 { top: 20%; left: -10%; animation: floatCard 4s ease-in-out infinite; }
.hero-float-card.card-2 { top: 48%; right: -5%; animation: floatCard 4.5s ease-in-out infinite 0.8s; }
.hero-float-card.card-3 { bottom: 15%; left: 5%; animation: floatCard 5s ease-in-out infinite 1.5s; }
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll-hint a {
    color: rgba(255,255,255,0.5);
    font-size: 1.3rem;
    display: block;
    animation: bounce 2s infinite;
    transition: color 0.3s;
    text-decoration: none;
}
.hero-scroll-hint a:hover { color: var(--orange); }

/* =============================================
   TICKER BAR
   ============================================= */
.ticker-bar {
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ticker-item {
    color: rgba(255,255,255,0.82);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}
.ticker-sep { color: rgba(255,255,255,0.25); font-size: 1.2rem; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.6s ease;
}
.about-img-wrap:hover .about-img { transform: scale(1.03); }
.about-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--orange);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(244,124,43,0.4);
}
.feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}
.feature-pill:hover {
    border-color: var(--orange);
    background: rgba(244,124,43,0.04);
}

/* =============================================
   INDUSTRY CARDS
   ============================================= */
.industry-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.industry-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.industry-card:hover::before { transform: scaleX(1); }
.industry-card:hover {
    border-color: rgba(244,124,43,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.industry-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(13,27,62,0.08), rgba(26,45,109,0.06));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--navy);
    margin-bottom: 18px;
    transition: var(--transition);
}
.industry-card:hover .industry-icon-wrap {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}
.industry-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.industry-desc {
    color: var(--text-mid);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 14px;
}
.industry-tag {
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 600;
    background: rgba(244,124,43,0.08);
    border: 1px solid rgba(244,124,43,0.2);
    border-radius: 50px;
    padding: 4px 12px;
    display: inline-block;
}

/* =============================================
   RECRUITMENT PROCESS SECTION
   ============================================= */
.process-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.process-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(244,124,43,0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.process-card-highlight {
    background: linear-gradient(135deg, rgba(244,124,43,0.12), rgba(244,124,43,0.05)) !important;
    border-color: rgba(244,124,43,0.4) !important;
}
.process-step-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: rgba(244,124,43,0.18);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.process-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(244,124,43,0.35);
}
.process-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 14px;
}
.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.process-list li {
    color: rgba(255,255,255,0.72);
    font-size: 0.83rem;
    line-height: 1.5;
    padding: 5px 0 5px 20px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.process-list li:last-child { border-bottom: none; }
.process-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
}
.why-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 auto 18px;
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    transform: rotate(-5deg) scale(1.1);
}
.why-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.why-card p {
    color: var(--text-mid);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(244,124,43,0.12), transparent 70%);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-info-box {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 36px 28px;
    height: 100%;
    color: #fff;
}
.contact-info-title { color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:last-of-type { border-bottom: none; }
.ci-icon {
    width: 42px;
    height: 42px;
    background: rgba(244,124,43,0.15);
    border: 1px solid rgba(244,124,43,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.ci-text strong {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}
.ci-text p, .ci-text a {
    color: rgba(255,255,255,0.65);
    font-size: 0.87rem;
    margin: 0;
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.2s;
}
.ci-text a:hover { color: var(--orange); }

.contact-form-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
}
.pms-input {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.93rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
}
.pms-input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(13,27,62,0.1);
    background: var(--white);
    outline: none;
}
.pms-input::placeholder { color: var(--text-light); }

/* =============================================
   FOOTER
   ============================================= */
.pms-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
}
.footer-desc {
    font-size: 0.87rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
}
.footer-heading {
    color: rgba(255,255,255,0.9);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--orange);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.87rem;
    text-decoration: none;
    transition: color 0.25s;
    display: flex;
    align-items: center;
    gap: 0;
}
.footer-links a:hover { color: var(--orange); }
.footer-links a i { font-size: 0.65rem; margin-right: 5px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.85rem;
}
.footer-contact-item i { margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.25s;
    display: block;
    line-height: 1.7;
}
.footer-contact-item a:hover { color: var(--orange); }
.footer-contact-item span { color: rgba(255,255,255,0.6); }

.footer-social {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    color: #fff;
}
.footer-social.whatsapp { background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.3); color: #25d366; }
.footer-social.whatsapp:hover { background: #25d366; color: #fff; }
.footer-social.email { background: rgba(244,124,43,0.15); border: 1px solid rgba(244,124,43,0.3); color: var(--orange); }
.footer-social.email:hover { background: var(--orange); color: #fff; }
.footer-social.phone { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); }
.footer-social.phone:hover { background: rgba(255,255,255,0.2); }
.footer-social.linkedin { background: rgba(10,102,194,0.2); border: 1px solid rgba(10,102,194,0.3); color: #0a66c2; }
.footer-social.linkedin:hover { background: #0a66c2; color: #fff; }

.footer-bottom { border-color: rgba(255,255,255,0.08) !important; }
.footer-bottom small { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* =============================================
   FLOATING WHATSAPP FAB
   ============================================= */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 28px;
    z-index: 9999;
    width: 58px; height: 58px;
    background: linear-gradient(135deg, #25d366, #1da851);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: pulse 2.5s infinite;
}
.whatsapp-fab:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 10px 35px rgba(37,211,102,0.6);
    color: #fff;
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
}
.whatsapp-fab:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 95px;
    right: 28px;
    z-index: 9998;
    width: 44px; height: 44px;
    background: var(--navy);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.back-to-top:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-3px);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =============================================
   RESPONSIVE OVERRIDES
   ============================================= */
@media (max-width: 991.98px) {
    .hero-section { min-height: auto; padding: 100px 0 60px; }
    .hero-headline { font-size: clamp(1.7rem, 5vw, 2.4rem); }
    .section-pad { padding: 65px 0; }
    .contact-form-box { padding: 24px 20px; }
    .contact-info-box { padding: 28px 20px; }
    .navbar-logo { height: 42px; width: 42px; }
    .nbt-main { font-size: 0.95rem; }
    .nbt-sub { font-size: 0.52rem; letter-spacing: 1.5px; }
    .pms-navbar .navbar-collapse {
        background: rgba(13,27,62,0.98);
        padding: 16px;
        border-radius: 0 0 var(--radius) var(--radius);
        margin-top: 8px;
        border: 1px solid rgba(255,255,255,0.08);
    }
}
@media (max-width: 767.98px) {
    .section-title { font-size: 1.65rem; }
    .hero-headline { font-size: 1.8rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { text-align: center; }
    .process-card { margin-bottom: 4px; }
    .cta-band .col-lg-4 { text-align: center !important; margin-top: 0; }
    .about-img { height: 280px; }
    .whatsapp-fab { bottom: 20px; right: 18px; }
    .back-to-top { bottom: 85px; right: 18px; }
}
@media (max-width: 575.98px) {
    .ticker-bar .d-flex { gap: 8px !important; }
    .brand-main { font-size: 0.92rem; }
    .hero-stats .stat-num { font-size: 1rem; }
    .contact-form-box { padding: 18px 14px; }
}

/* =============================================
   SCROLLBAR CUSTOM
   ============================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f0f4fa; }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }
