/* CSS Variables */
:root {
    --navy: #0B2545;
    --navy-hover: #07172B;
    --navy-light: #1E3D6B;
    --gold: #C9962F;
    --gold-hover: #B08123;
    --gold-light: #E4C078;
    --gold-gradient: linear-gradient(135deg, #C9962F, #E5A93B);
    --bg-page: #FAFAFA;
    --bg-white: #FFFFFF;
    --bg-offwhite: #F8F9FB;
    --text-dark: #111827;
    --text-gray: #6B7280;
    --border-color: #E5E7EB;
    --success: #16A34A;
    --error: #DC2626;
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --container-max: 1320px;
    --radius-card: 22px;
    --radius-btn: 16px;
    --radius-img: 20px;
    --shadow-soft: 0 10px 40px rgba(11, 37, 69, 0.04);
    --shadow-hover: 0 20px 50px rgba(11, 37, 69, 0.08);
    --shadow-btn: 0 8px 24px rgba(201, 150, 47, 0.15);
}

/* Base Resets & Typography Scale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* High Contrast Focus States for Accessibility (WCAG 2.2) */
a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
textarea:focus-visible, 
select:focus-visible {
    outline: 3px solid var(--gold) !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 4px rgba(201, 150, 47, 0.2) !important;
}

/* Typography Hierarchy Classes */
.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
}

.body-large {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
}

.body-small {
    font-size: 16px;
    line-height: 1.65;
}

.caption-text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

/* Layout Utilities */
.container {
    max-width: var(--container-max);
    width: 94%; /* Expanded for a wider, more premium layout */
    margin: 0 auto;
}

.section {
    padding: 85px 0; /* Premium tighter spacing */
}

@media (max-width: 768px) {
    .section {
        padding: 55px 0; /* Premium tighter mobile spacing */
    }
}

.section-alt {
    background-color: var(--bg-offwhite);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Accent Titles */
.accent-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--gold);
    margin: 16px auto 0;
    border-radius: 2px;
}

.accent-title-left::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background-color: var(--gold);
    margin: 12px 0 0;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-effect 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-primary {
    background-color: var(--navy);
    color: var(--bg-white);
    border: 2px solid var(--navy);
}

.btn-primary:hover {
    border-color: var(--gold);
    background-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(11, 37, 69, 0.15);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 150, 47, 0.08);
}

.btn-ghost {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--navy);
}

.btn-ghost:hover {
    background-color: rgba(201, 150, 47, 0.06);
    transform: translateY(-3px);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-text i {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-text:hover i {
    transform: translateX(6px);
}

.btn-text:hover {
    color: var(--gold);
}

/* Top Utility Bar */
.top-bar {
    background-color: var(--navy);
    color: rgba(255, 255, 255, 0.9);
    height: 44px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    z-index: 1001;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-left a, .top-bar-left span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-left a:hover {
    color: var(--gold);
}

.icon-gold {
    color: var(--gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right .social-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar-right .social-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-bar-right .social-links a:hover {
    color: var(--gold);
    transform: scale(1.15);
}

.top-bar-right .top-bar-ctas {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right .top-bar-ctas a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.top-bar-right .top-bar-ctas a:hover {
    color: var(--gold);
}

.social-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    user-select: none;
}

/* Header & Navbar */
.header {
    background-color: var(--bg-white);
    position: fixed;
    top: 44px; /* Sits below top-bar */
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 80px;
    display: flex;
    align-items: center;
}

.header.scrolled {
    top: 0;
    height: 68px;
    box-shadow: var(--shadow-soft);
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    padding-left: 20px; /* Shift logo slightly right for a balanced, premium spacing */
}

.logo img {
    height: 48px !important;
    width: auto !important;
    object-fit: contain;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled .logo img {
    height: 38px !important;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

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

.nav-links a.active::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--gold);
}

.nav-ctas {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header .btn-outline-gold {
    border: 2px solid var(--navy);
    border-radius: var(--radius-btn);
    padding: 10px 20px;
    font-size: 13px;
    background-color: transparent;
    color: var(--navy);
}

.header .btn-outline-gold:hover {
    border-color: var(--gold);
    color: var(--gold);
    background-color: transparent;
}

.header .btn-primary {
    background-color: var(--navy);
    color: var(--bg-white);
    border: 2px solid var(--navy);
    border-radius: var(--radius-btn);
    padding: 10px 20px;
    font-size: 13px;
    box-shadow: none;
}

.header .btn-primary:hover {
    border-color: var(--gold);
    background-color: var(--navy);
    box-shadow: 0 4px 15px rgba(11, 37, 69, 0.15);
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gold);
    z-index: 10;
    transition: width 0.1s ease;
}

/* Mobile Nav Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--navy);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--gold);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--gold);
}

/* Mobile Drawer Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 37, 69, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -10px 0 40px rgba(11, 37, 69, 0.1);
    padding: 80px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.2s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu .nav-ctas {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    gap: 15px;
}

.mobile-menu .nav-ctas a {
    width: 100%;
    text-align: center;
    border-bottom: none;
}

/* Hero Section */
.hero {
    min-height: 95vh;
    padding-top: 180px; /* Accounts for header + topbar */
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
    background-image: radial-gradient(rgba(11, 37, 69, 0.03) 2px, transparent 2px), radial-gradient(rgba(201, 150, 47, 0.03) 2px, transparent 2px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: rgba(201, 150, 47, 0.1);
    border: 1px solid rgba(201, 150, 47, 0.25);
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 900;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.hero-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-top: 10px;
}

.hero-checklist span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.hero-checklist span i {
    font-size: 14px;
}

.text-gold {
    color: var(--gold);
}

.hero-taglines {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    opacity: 0.6;
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-photo-wrapper {
    position: relative;
    padding: 10px;
    border: 1px solid rgba(201, 150, 47, 0.3);
    border-radius: 20px;
    background-color: var(--bg-white);
    box-shadow: 0 20px 40px rgba(11, 37, 69, 0.1);
}

.hero-photo-wrapper::before {
    content: "";
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    border-top: 4px solid var(--gold);
    border-right: 4px solid var(--gold);
    border-radius: 0 20px 0 0;
    pointer-events: none;
}

.hero-photo-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Choice Cards (Job Seeker / Employer) */
.choices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.choice-card {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.choice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(11, 37, 69, 0.08);
    border-color: var(--gold);
}

.choice-card-icon {
    font-size: 28px;
    color: var(--gold);
}

.choice-card h3 {
    font-size: 22px;
    font-weight: 800;
}

.choice-card p {
    color: var(--text-dark);
    font-size: 14px;
}

.choice-card a {
    align-self: flex-start;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 5px;
}

.choice-card a:hover {
    color: var(--gold-hover);
}

/* Services Section */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 36px;
    font-weight: 800;
}

.services-header p {
    color: var(--text-dark);
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(11, 37, 69, 0.08);
    border-color: var(--gold);
}

.service-icon-badge {
    width: 55px;
    height: 55px;
    background-color: rgba(201, 150, 47, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-badge {
    background-color: var(--navy);
    color: var(--bg-white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
}

.service-card p {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Value Props Section */
.value-props-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.value-card-navy {
    background-color: var(--navy);
    color: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card-navy h3 {
    color: var(--gold);
    font-size: 26px;
    font-weight: 800;
}

.value-card-navy p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.free-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    background-color: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    line-height: 1.1;
    transform: rotate(12deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.value-card-gold {
    background-color: var(--bg-white);
    border: 2px solid var(--gold);
    padding: 50px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card-gold h3 {
    color: var(--navy);
    font-size: 26px;
    font-weight: 800;
}

.value-card-gold p {
    color: var(--text-dark);
    font-size: 15px;
}

.value-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(201, 150, 47, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Core Objective Band */
.objective-band {
    background-color: var(--navy);
    color: var(--bg-white);
    text-align: center;
    padding: 60px 0;
}

.objective-band-content {
    max-w: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.objective-icon {
    font-size: 32px;
    color: var(--gold);
}

.objective-band h2 {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.objective-band p {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Social Commitment Card */
.social-card-wrapper {
    max-w: 700px;
    margin: 0 auto;
}

.social-card {
    background-color: var(--bg-white);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(201, 150, 47, 0.05);
    display: flex;
    align-items: center;
    gap: 30px;
}

.social-card-icon {
    font-size: 40px;
    color: var(--gold);
    background-color: rgba(201, 150, 47, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-card-content h3 {
    font-size: 20px;
    font-weight: 800;
}

.social-card-content p {
    color: var(--text-dark);
    font-size: 15px;
}

.bold-gold {
    color: var(--gold);
    font-weight: 800;
}

/* ============================================================
   Luxury UI Reusable Components
   ============================================================ */

/* 1. Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
}

.badge-gold {
    background-color: rgba(201, 150, 47, 0.08);
    border: 1px solid rgba(201, 150, 47, 0.25);
    color: var(--gold);
}

.badge-navy {
    background-color: rgba(11, 37, 69, 0.08);
    border: 1px solid rgba(11, 37, 69, 0.15);
    color: var(--navy);
}

/* 2. Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 45px; /* Tighter padding to content */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.section-header-left {
    text-align: left;
    align-items: flex-start;
}

.section-header .badge {
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 650px;
    line-height: 1.6;
}

/* 3. Global Cards */
.feature-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-offwhite);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-card-icon {
    background-color: var(--navy);
    color: var(--bg-white);
    transform: rotate(15deg) scale(1.05);
}

/* Statistic Card */
.stat-card-premium {
    background-color: var(--bg-white);
    padding: 45px 30px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.stat-card-premium .number {
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    font-family: var(--font-heading);
}

/* CTA Card */
.cta-card-luxury {
    background: var(--navy);
    color: var(--bg-white);
    padding: 80px 60px;
    border-radius: var(--radius-card);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 50px rgba(11, 37, 69, 0.15);
}

.cta-card-luxury h2 {
    color: var(--bg-white);
    font-size: 38px;
    font-weight: 800;
}

.cta-card-luxury p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* Timeline Card */
.timeline-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    padding: 35px;
    display: flex;
    gap: 25px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

/* Testimonial Card */
.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author h5 {
    font-weight: 700;
    font-size: 16px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-gray);
}

/* 4. FAQ Accordions */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.accordion-item {
    background-color: var(--bg-white);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-trigger {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
}

.accordion-trigger i {
    transition: transform 0.3s ease;
    color: var(--gold);
}

.accordion-item.active .accordion-trigger i {
    transform: rotate(180deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content {
    padding: 0 24px 24px;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* 5. Modern Forms */
.modern-form .form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modern-form label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--navy);
}

.modern-form .form-control {
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--radius-btn);
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-page);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-form .form-control:focus {
    border-color: var(--gold);
    background-color: var(--bg-white);
    outline: 3px solid rgba(201, 150, 47, 0.15);
}

/* 6. Premium Tables */
.premium-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    background-color: var(--bg-white);
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.premium-table th {
    background-color: var(--navy);
    color: var(--bg-white);
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.premium-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-dark);
}

.premium-table tr:last-child td {
    border-bottom: none;
}

.premium-table tbody tr {
    transition: background-color 0.2s ease;
}

.premium-table tbody tr:hover {
    background-color: var(--bg-offwhite);
}

/* 7. Pagination */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.pagination-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-item:hover, .pagination-item.active {
    background-color: var(--navy);
    color: var(--bg-white);
    border-color: var(--navy);
}

/* 8. Filter Chips & Search Bars */
.search-bar-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.search-bar-wrapper input {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border-radius: 30px;
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-bar-wrapper input:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 4px 15px rgba(201, 150, 47, 0.05);
}

.search-bar-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 14px;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip:hover, .filter-chip.active {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* 9. Visual States */
.empty-state {
    text-align: center;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.empty-state-icon {
    font-size: 48px;
    color: var(--text-gray);
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
}

.empty-state p {
    color: var(--text-gray);
    font-size: 14px;
    max-width: 320px;
}

.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-pulse 1.5s infinite;
    border-radius: 8px;
    height: 20px;
    width: 100%;
}

@keyframes loading-pulse {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Public Forms (apply.php / hire.php) */
.form-page-wrapper {
    min-height: 90vh;
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: var(--bg-offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    width: 100%;
    overflow: hidden;
}

.form-card-header {
    background-color: var(--navy);
    color: var(--bg-white);
    padding: 30px 40px;
    text-align: center;
    border-top: 4px solid var(--gold);
}

.form-card-header span {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.form-card-header h2 {
    color: var(--bg-white);
    font-size: 24px;
    font-weight: 800;
}

.form-card-header p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.form-body {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--gold);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    background-color: var(--bg-offwhite);
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: var(--bg-white);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(201, 150, 47, 0.05);
}

textarea.form-control {
    resize: none;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    background-color: var(--bg-offwhite);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-wrapper:hover {
    border-color: var(--gold);
    background-color: var(--bg-white);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 10px;
}

.file-upload-content p {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.file-upload-content span {
    font-size: 10px;
    color: rgba(11, 37, 69, 0.5);
    margin-top: 5px;
    display: block;
}

.error-feedback {
    color: #DC2626;
    font-size: 11px;
    font-weight: 700;
}

.form-footer-notes {
    font-size: 10px;
    color: rgba(11, 37, 69, 0.5);
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}

/* Success Animations */
.success-wrapper {
    text-align: center;
    padding: 40px 0;
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    background-color: rgba(11, 37, 69, 0.05);
    color: var(--navy);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
}

.success-wrapper h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
}

.success-wrapper p {
    font-size: 14px;
    color: var(--text-dark);
    max-width: 320px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

/* Contact Info & Map Grid */
.contact-section-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-badge {
    width: 40px;
    height: 40px;
    background-color: rgba(201, 150, 47, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}

.contact-card-content p, .contact-card-content a {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-card-content a:hover {
    color: var(--gold);
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 350px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Footer Section */
.footer {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 60px 0 35px;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -10px 40px rgba(11, 37, 69, 0.02);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr 1.8fr;
    gap: 30px;
    padding-bottom: 35px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 60px !important;
    width: auto !important;
    object-fit: contain;
    align-self: flex-start;
}

.footer-brand p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-slogan {
    font-size: 12px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.footer-socials a {
    color: var(--navy);
    font-size: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-socials a:hover {
    background-color: var(--gold);
    color: var(--bg-white);
    border-color: var(--gold);
    transform: translateY(-3px) rotate(15deg);
}

.footer-col h4 {
    color: var(--navy);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
    margin-top: 8px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-gray);
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 4px;
}

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

.footer-bottom-strip {
    background-color: var(--bg-page);
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-gray);
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ============================================================
   Admin Portal Styles (login, dashboard, lists)
   ============================================================ */

/* Admin Login Page */
.admin-login-wrapper {
    background-color: var(--navy);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.admin-login-wrapper::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background-color: rgba(201, 150, 47, 0.03);
    border-radius: 50%;
    filter: blur(80px);
}

.admin-login-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.admin-login-header {
    background-color: var(--navy);
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.admin-login-header img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.admin-login-header h2 {
    color: var(--bg-white);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.admin-login-body {
    padding: 35px;
}

/* Admin Dashboard General Layout */
.admin-body {
    background-color: var(--bg-offwhite);
    color: var(--navy);
}

.admin-header {
    background-color: var(--navy);
    color: var(--bg-white);
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.admin-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-brand img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
}

.admin-brand h1 {
    color: var(--bg-white);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.admin-nav-links a {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-nav-links a:hover, .admin-nav-links li.active a {
    color: var(--gold);
}

.admin-logout-btn {
    padding: 8px 16px;
    background-color: rgba(255,255,255,0.08);
    font-size: 12px;
    font-weight: 700;
    color: var(--bg-white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.admin-logout-btn:hover {
    background-color: rgba(255,255,255,0.15);
    color: var(--gold);
}

/* Metrics Cards (Admin Panel) */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.metric-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-info h3 {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(11, 37, 69, 0.4);
    margin-bottom: 5px;
}

.metric-info .number {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
}

.metric-info .sub-text {
    font-size: 10px;
    font-weight: 600;
    color: rgba(11, 37, 69, 0.5);
    margin-top: 5px;
    display: block;
}

.metric-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--navy);
}

.metric-card:nth-child(2) .metric-icon-badge {
    color: var(--gold);
    background-color: rgba(201, 150, 47, 0.08);
}

.metric-card:nth-child(3) .metric-icon-badge {
    color: #3B82F6;
    background-color: rgba(59, 130, 246, 0.08);
}

.metric-card:nth-child(4) .metric-icon-badge {
    color: #10B981;
    background-color: rgba(16, 185, 129, 0.08);
}

/* Admin Dashboard Table Panels */
.admin-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    margin-bottom: 40px;
}

.admin-card-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-card-header h2 {
    font-size: 18px;
    font-weight: 800;
}

.admin-card-header h2 span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(11, 37, 69, 0.5);
    margin-left: 6px;
}

.admin-header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 11px;
    border-radius: 4px;
}

/* Filters & Search Toolbar */
.toolbar-filters {
    padding: 15px 30px;
    background-color: rgba(11, 37, 69, 0.01);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.toolbar-filters form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    max-width: 250px;
    width: 100%;
}

.search-input-wrapper i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: rgba(11, 37, 69, 0.4);
}

.search-input-wrapper input {
    width: 100%;
    padding: 8px 12px 8px 32px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    background-color: var(--bg-white);
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    background-color: var(--bg-white);
}

.btn-filter-submit {
    background-color: var(--navy);
    color: var(--bg-white);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn-filter-clear {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--navy);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
}

.btn-filter-clear:hover {
    background-color: var(--bg-offwhite);
}

/* Data Tables */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    background-color: var(--bg-offwhite);
    padding: 16px 24px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(11, 37, 69, 0.5);
    border-bottom: 1px solid var(--border-color);
}

.admin-table td {
    padding: 16px 24px;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid var(--bg-offwhite);
}

.admin-table tr:hover td {
    background-color: rgba(11, 37, 69, 0.01);
}

.table-title {
    font-weight: 800;
    font-size: 13px;
    color: var(--navy);
}

.table-sub {
    font-size: 10px;
    color: rgba(11, 37, 69, 0.4);
    font-weight: 500;
    margin-top: 2px;
}

.status-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

/* Statuses */
.status-new {
    background-color: #FEF3C7;
    color: #D97706;
    border-color: #FDE68A;
}

.status-contacted {
    background-color: #DBEAFE;
    color: #2563EB;
    border-color: #BFDBFE;
}

.status-shortlisted, .status-inprogress {
    background-color: #EEF2F6;
    color: var(--navy);
    border-color: var(--border-color);
}

.status-placed {
    background-color: #D1FAE5;
    color: #059669;
    border-color: #A7F3D0;
}

.status-closed {
    background-color: #F3F4F6;
    color: #4B5563;
    border-color: #E5E7EB;
}

/* Table select status */
.table-status-select {
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    font-size: 10px;
    font-weight: 800;
    background-color: var(--bg-white);
    color: var(--navy);
    cursor: pointer;
}

/* Action buttons */
.table-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.btn-action {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--navy);
    cursor: pointer;
    font-size: 11px;
    transition: all 0.2s ease;
}

.btn-action-view:hover {
    background-color: var(--navy);
    color: var(--bg-white);
    border-color: var(--navy);
}

.btn-action-delete {
    color: #DC2626;
    border-color: #FCA5A5;
}

.btn-action-delete:hover {
    background-color: #DC2626;
    color: var(--bg-white);
    border-color: #DC2626;
}

/* Details Modal (Vanilla CSS + JS) */
.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(11, 37, 69, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-modal.open {
    display: flex;
}

.admin-modal-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    animation: scaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.admin-modal-header {
    background-color: var(--navy);
    color: var(--bg-white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 4px solid var(--gold);
}

.admin-modal-header h3 {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 800;
}

.btn-modal-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    cursor: pointer;
}

.btn-modal-close:hover {
    color: var(--bg-white);
}

.admin-modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modal-detail-item {
    background-color: var(--bg-offwhite);
    padding: 12px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.02);
}

.modal-detail-item span {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(11, 37, 69, 0.4);
    display: block;
    margin-bottom: 2px;
}

.modal-detail-item .val {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
}

.modal-detail-item .val a {
    color: var(--gold);
}

.modal-detail-item .val a:hover {
    text-decoration: underline;
}

.modal-detail-block {
    grid-column: span 2;
}

.modal-notes-area {
    padding: 15px;
    background-color: var(--bg-offwhite);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    white-space: pre-wrap;
    border: 1px solid rgba(0,0,0,0.02);
}

.admin-modal-footer {
    padding: 15px 30px;
    background-color: var(--bg-offwhite);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

/* Pagination */
.pagination-wrapper {
    padding: 15px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination-info {
    font-size: 11px;
    font-weight: 700;
    color: rgba(11, 37, 69, 0.4);
}

.pagination-links {
    display: flex;
    gap: 8px;
}

.pagination-link {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    background-color: var(--bg-white);
    color: var(--navy);
}

.pagination-link:hover, .pagination-link.active {
    background-color: var(--navy);
    color: var(--bg-white);
    border-color: var(--navy);
}

/* Recruitment Process Timeline Grid */
.apply-split-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: flex-start;
    max-width: 1150px;
    width: 92%;
    margin: 0 auto;
}

.process-timeline-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    padding: 40px;
}

.process-timeline-header {
    margin-bottom: 30px;
}

.process-timeline-header span {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.process-timeline-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.timeline-steps::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 20px;
    bottom: 15px;
    width: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.timeline-step-item {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.step-number-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--navy);
    color: var(--bg-white);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-step-item:hover .step-number-badge {
    background-color: var(--gold);
    color: var(--bg-white);
    transform: scale(1.1);
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-details h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
}

.step-details p {
    font-size: 12px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Stats Counter Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    background-color: var(--bg-white);
    padding: 40px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(11, 37, 69, 0.08);
    border-color: var(--gold);
}

.stat-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    color: var(--navy);
    transform: scale(1.15);
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(11, 37, 69, 0.5);
}

/* Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.zoom-in.revealed {
    opacity: 1;
    transform: scale(1);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation Delays */
.reveal-up.stagger-1, .reveal-left.stagger-1, .reveal-right.stagger-1, .zoom-in.stagger-1, .scale-in.stagger-1 { transition-delay: 0.1s; }
.reveal-up.stagger-2, .reveal-left.stagger-2, .reveal-right.stagger-2, .zoom-in.stagger-2, .scale-in.stagger-2 { transition-delay: 0.2s; }
.reveal-up.stagger-3, .reveal-left.stagger-3, .reveal-right.stagger-3, .zoom-in.stagger-3, .scale-in.stagger-3 { transition-delay: 0.3s; }
.reveal-up.stagger-4, .reveal-left.stagger-4, .reveal-right.stagger-4, .zoom-in.stagger-4, .scale-in.stagger-4 { transition-delay: 0.4s; }

/* Back To Top Button */
.back-to-top {
    position: fixed;
    bottom: 105px; /* Positioned above AI Chatbot */
    right: 25px; /* Shifted closer to the right border */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--navy);
    color: var(--bg-white);
    border: 2px solid var(--navy);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10005; /* Pinned above chatbot wrapper */
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--bg-white);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Floating Contacts Widgets */
.floating-contact-widgets {
    position: fixed;
    bottom: 30px;
    left: 20px; /* Shifted closer to the left border */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 997;
}

.widget-whatsapp, .widget-call {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bg-white);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.widget-whatsapp {
    background-color: #25D366;
}

.widget-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.widget-call {
    background-color: var(--navy);
    border: 2px solid var(--navy);
}

.widget-call:hover {
    background-color: var(--bg-white);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-5px) scale(1.05);
}

/* ============================================================
   Media Queries & Responsiveness
   ============================================================ */

@media (max-width: 1024px) {
    .apply-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 40px;
    }

    .hero-badge, .hero-ctas, .hero-taglines, .hero-checklist {
        justify-content: center;
        align-self: center;
    }
    
    .hero-photo-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }

    .choices-grid {
        margin-top: 20px;
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .nav-links, .nav-ctas {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .value-props-grid, .contact-section-grid {
        grid-template-columns: 1fr;
    }
    
    .social-card {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Homepage Section Layouts
   ============================================================ */

/* 1. Logo Carousel */
.logo-carousel {
    overflow: hidden;
    padding: 40px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.logo-carousel-title {
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.logo-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll-logos 30s linear infinite;
    gap: 50px;
}

.logo-slide {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.logo-slide:hover {
    opacity: 0.95;
}

.logo-slide span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); }
}

/* 2. Custom Gold Framed Image */
.image-frame-gold {
    position: relative;
    padding: 12px;
    border-radius: var(--radius-img);
    border: 1px solid rgba(201, 150, 47, 0.2);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-soft);
    width: 100%;
}

.image-frame-gold img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-img) - 8px);
    display: block;
    object-fit: cover;
}

.image-frame-gold::before {
    content: "";
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    border-top: 4px solid var(--gold);
    border-right: 4px solid var(--gold);
    border-radius: 0 var(--radius-img) 0 0;
    pointer-events: none;
}

/* 3. Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

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

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-item-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.value-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.value-item-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.value-item-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.value-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(201, 150, 47, 0.08);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* 4. Recruitment Process Timeline */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 60px;
    gap: 20px;
}

.process-flow::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.process-node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 15px;
}

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.process-node:hover .process-icon {
    border-color: var(--gold);
    background-color: var(--navy);
    color: var(--bg-white);
    transform: scale(1.1);
}

.process-node h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

.process-node p {
    font-size: 13px;
    color: var(--text-gray);
    max-width: 160px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .process-flow::before {
        display: none;
    }
    .process-node {
        width: 100%;
    }
}

/* 5. Gateways */
.portal-gateways {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .portal-gateways {
        grid-template-columns: 1fr;
    }
}

.gateway-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    padding: 50px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gateway-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.gateway-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
}

.gateway-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.gateway-benefits li {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 6. Goals Timeline */
.goals-timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding-left: 30px;
}

.goals-timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
}

.goal-item {
    position: relative;
    padding-bottom: 40px;
}

.goal-item::before {
    content: "";
    position: absolute;
    left: -27px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gold);
    border: 3px solid var(--bg-page);
    box-shadow: 0 0 0 2px var(--gold);
    transition: all 0.3s ease;
}

.goal-item:hover::before {
    background-color: var(--navy);
    transform: scale(1.2);
}

.goal-year {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
}

.goal-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.goal-text p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* 7. Social Responsibility */
.social-pledge-card {
    background-color: var(--bg-white);
    border: 2px solid var(--gold);
    border-radius: var(--radius-card);
    padding: 60px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.social-pledge-card::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-color: rgba(201, 150, 47, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.social-pledge-card p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 700px;
}

/* 8. Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Candidate Job Application Layouts
   ============================================================ */

.breadcrumb-nav {
    padding: 18px 0;
    background-color: var(--bg-page);
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-nav a {
    color: var(--navy);
    transition: color 0.3s ease;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: var(--gold);
}

.breadcrumb-nav span {
    margin: 0 10px;
    color: var(--text-gray);
    font-size: 11px;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.form-progress::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--border-color);
    z-index: 1;
}

.form-progress-bar {
    position: absolute;
    top: 15px;
    left: 0;
    height: 3px;
    background-color: var(--gold);
    z-index: 2;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 0%;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-gray);
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.progress-step.active {
    border-color: var(--gold);
    background-color: var(--navy);
    color: var(--bg-white);
    box-shadow: 0 0 0 5px rgba(201, 150, 47, 0.15);
}

.progress-step.completed {
    border-color: var(--gold);
    background-color: var(--gold);
    color: var(--bg-white);
}

.form-step-panel {
    display: none;
    animation: fadeInStep 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.form-step-panel.active {
    display: block;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.skills-tags-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 480px) {
    .skills-tags-grid {
        grid-template-columns: 1fr;
    }
}

.skill-tag-item {
    position: relative;
}

.skill-tag-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.skill-tag-label {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-page);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    user-select: none;
}

.skill-tag-label::after {
    content: "\f055";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    color: var(--text-gray);
    font-size: 14px;
    transition: all 0.3s ease;
}

.skill-tag-item input:checked + .skill-tag-label {
    border-color: var(--gold);
    background-color: rgba(201, 150, 47, 0.08);
    color: var(--navy);
}

.skill-tag-item input:checked + .skill-tag-label::after {
    content: "\f058";
    color: var(--gold);
}

.drag-drop-zone {
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    background-color: var(--bg-page);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}

.drag-drop-zone.dragover {
    border-color: var(--gold);
    background-color: rgba(201, 150, 47, 0.05);
    box-shadow: 0 0 0 5px rgba(201, 150, 47, 0.1);
}

.drag-drop-zone i {
    font-size: 36px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.drag-drop-zone:hover i, .drag-drop-zone.dragover i {
    color: var(--gold);
    transform: translateY(-3px);
}

.drag-drop-zone span {
    font-size: 12px;
    color: var(--text-gray);
}

.drag-drop-zone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.upload-success-state.active {
    display: flex;
}

.upload-success-state i {
    font-size: 32px;
    color: var(--success);
}

/* ============================================================
   1313HR Solutions — Premium UX & Microinteractions System
   ============================================================ */

/* 1. Page Fade Transitions */
body.page-fade-transition {
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
body.page-fade-transition.page-loaded {
    opacity: 1;
}

/* 2. Branded Minimalist Preloader Screen */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.preloader-overlay.preloader-fade-out {
    opacity: 0;
    visibility: hidden;
}
.preloader-spinner-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
}
.preloader-logo-wrapper {
    position: absolute;
    width: 70px;
    height: 70px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: preloaderLogoPulse 1.8s ease-in-out infinite;
}
.preloader-logo-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.preloader-circle {
    width: 96px;
    height: 96px;
    border: 3px solid rgba(201, 150, 47, 0.08);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: preloaderCircleSpin 0.85s linear infinite;
}

@keyframes preloaderCircleSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes preloaderLogoPulse {
    0%, 100% { transform: scale(0.94); opacity: 0.85; }
    50% { transform: scale(1.04); opacity: 1; }
}

/* 3. Floating Contact Widgets Pulse Waves */
.floating-contact-widgets a {
    position: relative;
}
.floating-contact-widgets a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: pulseWhatsAppFab 2s infinite;
    pointer-events: none;
}
.floating-contact-widgets .widget-call::after {
    box-shadow: 0 0 0 0 rgba(201, 150, 47, 0.5);
    animation: pulseCallFab 2s infinite;
}

@keyframes pulseWhatsAppFab {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes pulseCallFab {
    0% { box-shadow: 0 0 0 0 rgba(201, 150, 47, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(201, 150, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 150, 47, 0); }
}

/* 4. Keyboard Visible Focus States */
a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
select:focus-visible, 
textarea:focus-visible {
    outline: 3px solid var(--gold) !important;
    outline-offset: 2px !important;
}

/* 5. Disabled Button Styling */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* 6. Form validation error shakes */
.shake-error {
    animation: errorShakeKeyframe 0.4s ease-in-out;
}
@keyframes errorShakeKeyframe {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

/* 7. Accessibility Prefers-Reduced-Motion Defaults */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
        transform: none !important;
    }
    .reveal-up, .reveal-left, .reveal-right, .zoom-in, .scale-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .preloader-overlay, .preloader-circle, .preloader-logo-wrapper {
        animation: none !important;
    }
}
/* ============================================================
   1313HR Solutions — Floating AI Assistant (1313HR Assistant)
   ============================================================ */

.ai-assistant-wrapper {
    position: fixed;
    bottom: 30px;
    right: 20px; /* Shifted closer to right border */
    z-index: 9999;
    font-family: var(--font-sans);
}

/* Floating Bubble */
.ai-assistant-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    outline: none;
    color: var(--bg-white);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(201, 150, 47, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.ai-assistant-bubble:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 35px rgba(201, 150, 47, 0.45);
}
.ai-bubble-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--navy);
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 10px;
    border: 1px solid var(--gold);
}

/* Chat Window Container */
.ai-chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 380px;
    height: 520px;
    background-color: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 50px rgba(11, 37, 69, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.3s,
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ai-chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Header Section */
.ai-chat-header {
    background-color: var(--navy);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(201, 150, 47, 0.2);
}
.ai-chat-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ai-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(201, 150, 47, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid var(--gold);
}
.ai-chat-branding h4 {
    font-family: var(--font-heading);
    color: var(--bg-white);
    font-size: 15px;
    font-weight: 600;
}
.ai-status {
    color: var(--gold-light);
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}
.status-dot {
    width: 6px;
    height: 6px;
    background-color: #16A34A;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #16A34A;
}
.ai-close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}
.ai-close-btn:hover {
    color: var(--gold);
}

/* Messages Stream Area */
.ai-chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--bg-offwhite);
}

/* Message Styles */
.ai-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
    box-shadow: 0 2px 8px rgba(11, 37, 69, 0.02);
}
.ai-message.bot {
    background-color: var(--bg-white);
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid var(--border-color);
}
.ai-message.user {
    background-color: var(--navy);
    color: var(--bg-white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Suggestions Tags */
.ai-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
    align-self: flex-start;
}
.suggestion-tag {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--navy);
    font-size: 12px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(11, 37, 69, 0.02);
}
.suggestion-tag:hover {
    border-color: var(--gold);
    color: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(201, 150, 47, 0.1);
}

/* Input Form Area */
.ai-chat-input-area {
    padding: 15px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
    align-items: center;
}
.ai-chat-input-area input {
    flex: 1;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 0 15px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.ai-chat-input-area input:focus {
    border-color: var(--gold);
}
.ai-chat-input-area button {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--gold-gradient);
    border: none;
    outline: none;
    color: var(--bg-white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.ai-chat-input-area button:hover {
    transform: translateY(-1px);
}

/* Typing loading indicator */
.ai-typing-loader {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    align-self: flex-start;
}
.ai-typing-loader span {
    width: 6px;
    height: 6px;
    background-color: var(--text-gray);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}
.ai-typing-loader span:nth-child(1) { animation-delay: -0.32s; }
.ai-typing-loader span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Responsive adjustment for small mobile */
@media (max-width: 480px) {
    .ai-assistant-wrapper {
        bottom: 20px;
        right: 20px;
    }
    .ai-chat-window {
        width: 320px;
        height: 460px;
        bottom: 70px;
    }
    .back-to-top {
        bottom: 95px !important;
        right: 25px !important;
    }
}

/* ============================================================
   1313HR Solutions — Responsive Header Navigation Layouts
   ============================================================ */
@media (max-width: 991px) {
    .top-bar {
        display: none !important;
    }
    .header {
        top: 0 !important;
        height: 70px !important;
    }
    .nav-links {
        display: none !important;
    }
    .nav-ctas {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
    }
    .hero {
        padding-top: 110px !important; /* Adjust hero offset since topbar is hidden */
    }
}

/* ============================================================
   1313HR Solutions — Mobile Premium UI & Typography Compacting
   ============================================================ */
@media (max-width: 768px) {
    /* Tighten Headings for Premium Look */
    .hero h1, .hero-title {
        font-size: 32px !important;
        line-height: 1.25 !important;
    }
    .section-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }
    .card-title {
        font-size: 20px !important;
    }
    .body-large {
        font-size: 15px !important;
    }
    .body-small {
        font-size: 14px !important;
    }
    
    /* Make Cards Compact to Prevent Text Squashing */
    .feature-card, 
    .value-item-card, 
    .service-card, 
    .choice-card,
    .stat-card-premium,
    .timeline-card,
    .testimonial-card,
    .social-card {
        padding: 24px 20px !important;
        border-radius: 16px !important;
        gap: 12px !important;
    }
    
    .gateway-card {
        padding: 28px 20px !important;
        border-radius: 16px !important;
        gap: 15px !important;
    }
    
    /* Tighten Footer Padding */
    .footer {
        padding: 45px 0 25px !important;
    }
    .footer-grid {
        gap: 25px !important;
        padding-bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    /* Extra Compact for Tiny Phone Screens */
    .hero h1, .hero-title {
        font-size: 28px !important;
    }
    .section-title {
        font-size: 22px !important;
    }
    .hero-taglines {
        font-size: 10px !important;
        flex-direction: column;
        gap: 5px !important;
        text-align: center;
    }
    .social-separator {
        display: none !important;
    }
}

/* ============================================================
   1313HR Solutions — Infinite Job Openings Marquee Ticker
   ============================================================ */
.job-ticker-container {
    background-color: var(--navy);
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    user-select: none;
    height: 48px;
    position: relative;
    z-index: 100;
}

.job-ticker-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.job-ticker-title {
    background: var(--gold-gradient);
    color: var(--navy);
    padding: 0 20px;
    height: 100%;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.job-ticker-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

.job-ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScrollAnimation 32s linear infinite;
}

.job-ticker-group {
    display: flex;
    gap: 60px;
    padding-right: 60px;
}

.job-ticker-group span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.job-ticker-container:hover .job-ticker-track {
    animation-play-state: paused;
}

@keyframes tickerScrollAnimation {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .job-ticker-title {
        padding: 0 12px;
        font-size: 10px;
    }
    .job-ticker-group span {
        font-size: 12px;
    }
}

/* ============================================================
   1313HR Solutions — Advanced Responsive Layout Engine
   ============================================================ */

/* Global Overflow Protection & Gutters */
html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}

img, video, iframe {
    max-width: 100% !important;
    height: auto !important;
}

/* Fluid Container widths */
@media (min-width: 1200px) {
    .container {
        max-width: 1280px !important;
        width: 92% !important;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1520px !important;
        width: 90% !important;
    }
}

/* Intermediate screens & laptops (992px to 1200px) */
@media (max-width: 1200px) {
    .hero-photo-wrapper {
        max-width: 480px;
    }
    .contact-section-grid {
        gap: 30px !important;
    }
}

/* Tablet Screens (up to 991px) */
@media (max-width: 991px) {
    .container {
        width: 94% !important;
    }
    
    /* Layout grid overrides */
    #about .container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .contact-section-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .portal-gateways {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .timeline-card {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .process-flow {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    
    .hero-photo-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-badge-strip {
        justify-content: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
}

/* Mobile Portrait & Landscape (up to 768px) */
@media (max-width: 768px) {
    /* Safe section margins */
    .section {
        padding: 40px 0 !important;
    }
    
    .section-header {
        margin-bottom: 20px !important;
    }
    
    /* Clean up empty vertical space in hero */
    .hero {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }
    
    /* Keep Hero CTAs side-by-side & centered like laptop */
    .hero-content {
        align-items: center !important;
        text-align: center !important;
    }
    
    .hero-ctas {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
    }
    
    .hero-ctas .btn {
        width: auto !important;
        justify-content: center !important;
    }
    
    .hero-checklist {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        margin-top: 15px !important;
    }
    
    .hero-taglines {
        flex-direction: column !important;
        gap: 8px !important;
        text-align: center !important;
        margin-top: 15px !important;
    }
    
    .social-separator {
        display: none !important;
    }
    
    /* Stacking process grids to single column */
    .process-flow {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    section[aria-label="Fee Comparison"] .container {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    section[aria-label="Mission and Vision"] .container {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    /* Stack contact cards on mobile to avoid squishing long phone/email strings */
    #contact div[style*="grid-template-columns: 1fr 1fr"],
    .reveal-left > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    #contact .contact-section-grid,
    #applicationFormBlock .contact-section-grid,
    #hiringFormBlock .contact-section-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Center Gateway cards and buttons on mobile */
    .gateway-card {
        align-items: center !important;
        text-align: center !important;
    }
    
    .gateway-card .btn {
        align-self: center !important;
        margin: 0 auto !important;
    }
    
    /* Keep 2-column portal benefits checklist like laptop */
    .gateway-benefits {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 20px !important;
        text-align: left !important;
        margin: 0 auto 25px !important;
        max-width: 500px;
        width: 100%;
    }
    
    /* Stacking form inputs */
    .form-row {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .form-group {
        width: 100% !important;
    }
    
    /* Testimonials compact */
    .testimonial-card {
        padding: 25px !important;
    }
    
    .accordion-trigger {
        padding: 16px 20px !important;
        font-size: 16px !important;
    }
    
    /* Floating widgets scale & safe offsets */
    .floating-contact-widgets {
        bottom: 20px !important;
        left: 15px !important;
        gap: 10px !important;
    }
    
    .ai-assistant-wrapper {
        bottom: 20px !important;
        right: 15px !important;
    }
    
    .back-to-top {
        bottom: 85px !important;
        right: 15px !important;
    }
    
    .widget-whatsapp, .widget-call, .back-to-top {
        width: 44px !important;
        height: 44px !important;
        font-size: 16px !important;
    }
}

/* Extra Small screen breakpoints (up to 480px) */
@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .contact-section-grid form {
        padding: 20px !important;
    }
}

/* Ultra-Wide Displays (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1680px !important;
        width: 85% !important;
    }
    .hero h1, .hero-title {
        font-size: 58px !important;
    }
    .section-title {
        font-size: 42px !important;
    }
}


