@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---------------------------------- */
/* Root Variables & General Reset */
/* ---------------------------------- */
:root {
    /* Premium Talent & Career Hub Palette - Custom Blue Theme */
    --color-primary-dark: #0F1E36;    /* Deep Sapphire Navy - Executive & Trusted */
    --color-accent-teal: #2A408D;     /* Exact Custom Blue from screenshot */
    --color-accent-hover: #1E2F6B;    /* Darker Blue hover */
    --color-bg-warm: #FAF9F6;         /* Warm Alabaster/Ivory - Human & Approachable */
    --color-bg-white: #FFFFFF;        /* Pure White for Premium Cards */
    --color-bg-navy: #0B1528;         /* High-contrast dark sections */
    --color-text-dark: #1E293B;       /* Charcoal Slate for Body text */
    --color-text-light: #FFFFFF;      /* Pure White for text on Navy */
    --color-text-grey: #64748B;       /* Elegant Muted Slate Grey */
    --color-border-subtle: #F1F0EC;   /* Extremely subtle warm ivory border */
    --color-footer-dark: #0B1325;     /* Dark Navy Footer */

    /* Sub-element Colors */
    --color-icon-bg: #E6EEFF;         /* Soft blue background for icons */
    --color-service-bg: #E6EEFF; 
    --color-service-icon: #007bff; 
    --color-checkmark: #28a745;       /* Crisp Green for success checkmarks */
    --color-card-icon-bg: #E6EEFF; 
    --color-icon-email: #007bff; 
    --color-icon-phone: #28a745; 
    --color-icon-visit: #6D28D9;      /* Sophisticated Purple for physical visit */

    /* Custom About Page Colors (Core Values with softer warm/cool pairings) */
    --color-value-bg-1: #EFF6FF; 
    --color-value-icon-1: #2563EB;
    --color-value-bg-2: #F0FDFA; 
    --color-value-icon-2: #0D9488;
    --color-value-bg-3: #FAF5FF; 
    --color-value-icon-3: #7C3AED;
    --color-value-bg-4: #FFFBEB; 
    --color-value-icon-4: #D97706;

    /* Typographic Settings */
    --font-family-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-family-headings: 'Lora', Georgia, serif;

    /* Premium Shadow Depth - High Performance Blur Settings */
    --shadow-soft-sm: 0 1px 3px rgba(15, 30, 54, 0.03);
    --shadow-soft-md: 0 4px 12px rgba(15, 30, 54, 0.04);
    --shadow-soft-lg: 0 8px 24px rgba(15, 30, 54, 0.06);
    --shadow-soft-xl: 0 12px 30px rgba(15, 30, 54, 0.08);
    
    --transition-premium: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px; 
}

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

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

#page-content {
    padding-top: 85px; /* Matches fixed header height perfectly to offset fixed layout */
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

footer {
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

#page-content.page-exit, footer.page-exit {
    opacity: 0 !important;
    transform: translateY(-6px) !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-premium);
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: auto;
}

/* Custom Prestige Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-warm);
}
::-webkit-scrollbar-thumb {
    background: #E2E1DA;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-teal);
}

/* ---------------------------------- */
/* Typography & Titles */
/* ---------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    color: var(--color-primary-dark);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.section-title {
    font-size: 2.6em;
    margin-bottom: 14px;
    font-weight: 600;
}

h4.subtitle {
    font-family: var(--font-family-main);
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-accent-teal);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Elegant visual separators */
hr {
    border: none;
    border-top: 1px solid #EAE8DF;
    max-width: 800px; 
    margin: 70px auto; 
}

/* ---------------------------------- */
/* Luxury Buttons */
/* ---------------------------------- */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px; /* Rounded rectangle matching screenshot */
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-premium);
    font-size: 15px;
    border: 1px solid transparent;
    font-family: var(--font-family-main);
}

.button.primary {
    background-color: var(--color-accent-teal);
    color: var(--color-text-light);
    border-color: var(--color-accent-teal);
    box-shadow: 0 4px 14px rgba(42, 64, 141, 0.2);
}

.button.primary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(42, 64, 141, 0.35);
}

.button.light-outline {
    background-color: var(--color-bg-white);
    color: var(--color-primary-dark);
    border-color: #E2E1DA;
    box-shadow: var(--shadow-soft-sm);
}

.button.light-outline:hover {
    background-color: var(--color-bg-warm);
    border-color: #CBD5E1;
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft-md);
}

.button i {
    margin-left: 8px;
    font-size: 12px;
    transition: var(--transition-premium);
}

.button:hover i {
    transform: translateX(5px);
}

/* ---------------------------------- */
/* Header & Navigation (Scroll-Responsive) */
/* ---------------------------------- */
header {
    background: transparent; /* Airy and transparent at the very top */
    padding: 24px 0; /* Slightly taller default padding */
    position: fixed; /* 100% FIXED ANCHOR TO VIEWPORT */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background: var(--color-primary-dark); /* Turns into luxurious footer dark navy on scroll! */
    padding: 14px 0; /* Elegant space-saving shrink */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid #1A263B; /* Navy-toned border boundary */
}

/* Transition link colors to white on scrolled dark navy background */
header.scrolled .nav-menu li a:not(.button) {
    color: var(--color-text-light);
}

header.scrolled .nav-menu li a:not(.button):hover {
    color: #38BDF8; /* Soft blue highlight hover on dark navy */
}

header.scrolled .nav-menu li a:not(.button)::after {
    background-color: #38BDF8; /* Underline matches soft blue highlight */
}

/* Transition logo text to white on scrolled dark navy background */
header.scrolled .logo-text {
    color: var(--color-text-light);
}

/* Transition hamburger menu to white on scrolled dark navy background */
header.scrolled .menu-toggle span {
    background-color: var(--color-text-light);
}

/* Transition header button to high-contrast white on scrolled dark navy background */
header.scrolled nav .button {
    background: var(--color-text-light);
    color: var(--color-primary-dark);
    border-color: var(--color-text-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

header.scrolled nav .button:hover {
    background: var(--color-bg-warm);
    border-color: var(--color-bg-warm);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

/* Logo Brand Styling */
.logo-container {
    display: flex;
    align-items: center;
    line-height: 1; 
}

.logo-box {
    background-color: var(--color-accent-teal); /* Brand Blue Box background */
    color: var(--color-text-light);
    font-size: 1.05em;
    font-weight: 700; 
    padding: 7px 11px;
    border-radius: 8px; 
    margin-right: 12px; 
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.5px;
    font-family: var(--font-family-main);
}

.logo-text {
    color: var(--color-accent-teal); /* Brand Blue Text color */
    font-size: 1.2em; 
    font-weight: 700; 
    font-family: var(--font-family-headings);
    letter-spacing: -0.5px;
}

/* Navigation Menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    color: var(--color-text-dark);
    font-weight: 500;
    padding: 8px 0;
    font-size: 0.95em;
    font-family: var(--font-family-main);
    position: relative;
}

.nav-menu li a:not(.button)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-teal);
    transition: var(--transition-premium);
    transform: translateX(-50%);
}

.nav-menu li a:not(.button):hover {
    color: var(--color-accent-teal);
}

.nav-menu li a:not(.button):hover::after {
    width: 100%;
}

.nav-menu li a.active:not(.button) {
    color: var(--color-accent-teal);
    font-weight: 600;
}

.nav-menu li a.active:not(.button)::after {
    width: 100%;
    box-shadow: 0 0 8px var(--color-accent-teal); /* Glowing active state */
}

/* Card hover springy scale adjustments */
.card:hover, .value-card:hover, .contact-card:hover, .hours-card:hover, .service-block:hover, .feature-item:hover {
    transform: translateY(-4px) scale(1.015) !important; /* Subtle, safe lift and scale to completely prevent any text overlaps */
}

/* Navigation "Get Started" Custom Pill Button */
nav .button {
    padding: 12px 34px; /* Increased padding to expand the width */
    min-width: 150px;   /* Safe minimum width to prevent text squishing */
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px; /* Rounded rectangle matching screenshot */
    background: var(--color-accent-teal);
    border-color: var(--color-accent-teal);
    color: var(--color-text-light);
    box-shadow: 0 4px 12px rgba(42, 64, 141, 0.15);
    letter-spacing: 0.3px; /* Sophisticated spacing */
    transition: var(--transition-premium);
}

nav .button:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2.5px);
    box-shadow: 0 8px 22px rgba(42, 64, 141, 0.3);
}

/* Mobile Hamburger Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary-dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition-premium);
}

/* Hamburger active menu drawer state */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------------------------------- */
/* Home Page Layouts */
/* ---------------------------------- */

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 90px 0 110px;
}

.hero-text {
    flex: 1 1 50%;
    max-width: 50%;
}

.hero-text .tagline {
    font-family: var(--font-family-main);
    color: var(--color-accent-teal);
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 3.6em; 
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.15; 
    color: var(--color-primary-dark);
}

.hero p {
    font-size: 1.1em;
    margin-bottom: 40px; 
    color: var(--color-text-grey);
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Hero Graphic (Premium Card Cluster look) */
.hero-graphic {
    flex: 1 1 42%;
    min-width: 320px;
    background-color: var(--color-bg-white);
    border-radius: 24px;
    box-shadow: var(--shadow-soft-xl); 
    min-height: 400px; 
    border: 1px solid var(--color-border-subtle);
    padding: 40px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-premium);
}

.hero-graphic:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 70px -15px rgba(15, 30, 54, 0.12);
    border-color: rgba(42, 64, 141, 0.15);
}

.graphic-item {
    display: flex;
    align-items: center; 
    padding: 22px 0; 
    transition: var(--transition-premium);
}

.graphic-item:not(:last-child) {
     border-bottom: 1px solid var(--color-border-subtle);
}

.graphic-item:hover {
    transform: translateX(10px);
}

.graphic-icon {
    background-color: var(--color-icon-bg); 
    width: 50px; 
    height: 50px;
    border-radius: 14px; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 22px;
    flex-shrink: 0;
    transition: var(--transition-premium);
}

.graphic-item:hover .graphic-icon {
    background-color: var(--color-accent-teal);
}

.graphic-item:hover .graphic-icon svg {
    stroke: var(--color-text-light);
}

.graphic-icon svg {
    width: 24px; 
    height: 24px;
    fill: none; 
    stroke: var(--color-accent-teal); 
    stroke-width: 2; 
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition-premium);
}

.graphic-text h5 {
    font-size: 1.1em; 
    margin-bottom: 4px; 
    color: var(--color-primary-dark);
    font-weight: 600;
}

.graphic-text p {
    font-size: 0.9em;
    color: var(--color-text-grey);
    margin-bottom: 0; 
    line-height: 1.4;
}

/* Home Services Overview */
.services-overview {
    padding: 110px 0;
    background-color: var(--color-bg-white);
    text-align: center;
    border-top: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
}

.services-overview > p {
    max-width: 650px;
    margin: 0 auto 85px; /* Increased bottom margin from 55px to 85px to guarantee complete clearance during card hover translations */
    font-size: 1.1em;
    color: var(--color-text-grey);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 55px;
}

/* Card Overhaul */
.card {
    background: var(--color-bg-warm);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: left;
    border: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-soft-md);
    transition: var(--transition-premium);
}

.card i {
    font-size: 2.3em;
    color: var(--color-accent-teal);
    margin-bottom: 24px;
    display: inline-block;
    transition: var(--transition-premium);
}

.card h4 {
    font-size: 1.4em;
    margin-bottom: 14px;
    color: var(--color-primary-dark);
    font-weight: 600;
}

.card p {
    color: var(--color-text-grey);
    font-size: 0.95em;
    line-height: 1.7;
}

.card:hover {
    transform: translateY(-10px);
    background-color: var(--color-bg-warm); /* Retains ivory background so card boundaries pop against white sections */
    border-color: rgba(42, 64, 141, 0.2);
    box-shadow: var(--shadow-soft-xl);
}

.card:hover i {
    transform: scale(1.1) rotate(3deg);
    color: var(--color-accent-teal);
}

/* Why Choose Us features */
.why-choose-us {
    padding: 110px 0;
    text-align: center;
    background-color: var(--color-bg-warm);
}

.why-choose-us h4.subtitle {
    margin-bottom: 50px;
}

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.feature-item {
    flex: 1 1 240px;
    max-width: 270px;
    background: var(--color-bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft-md);
    border: 1px solid var(--color-border-subtle);
    transition: var(--transition-premium);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft-lg);
    border-color: rgba(42, 64, 141, 0.15);
}

.feature-item .number-circle {
    background-color: var(--color-icon-bg);
    color: var(--color-accent-teal);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px;
    font-size: 1.25em;
    font-weight: 700;
    font-family: var(--font-family-main);
    border: 1px solid rgba(42, 64, 141, 0.15);
    transition: var(--transition-premium);
}

.feature-item:hover .number-circle {
    transform: scale(1.1);
    background-color: var(--color-accent-teal);
    color: var(--color-text-light);
    box-shadow: 0 6px 15px rgba(42, 64, 141, 0.25);
}

.feature-item h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--color-primary-dark);
    font-weight: 600;
}

.feature-item p {
    color: var(--color-text-grey);
    font-size: 0.9em;
    margin-top: 5px;
    line-height: 1.6;
}

/* Call to Action (CTA) Redesign (High Contrast Premium Navy) */
.cta {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #081121 100%);
    padding: 90px 0;
    text-align: center;
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.cta h3 {
    font-size: 2.6em;
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--color-text-light) !important;
}

.cta p {
    font-size: 1.15em;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .button {
    background-color: var(--color-bg-white);
    color: var(--color-primary-dark);
    border: none;
    padding: 15px 36px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta .button:hover {
    background-color: var(--color-bg-warm);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* ---------------------------------- */
/* About Page Overhauls */
/* ---------------------------------- */

/* About Hero */
.about-hero {
    text-align: center;
    padding: 90px 0; 
    background-color: var(--color-bg-warm); 
    border-bottom: 1px solid var(--color-border-subtle);
}

.about-hero h1 {
    font-size: 3.2em;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-top: 14px;
}

.about-hero p {
    font-size: 1.2em;
    color: var(--color-text-grey);
    margin-top: 10px;
}

/* Story section */
.our-story {
    text-align: center;
    padding: 90px 0 70px;
    background-color: var(--color-bg-white);
}

.story-content {
    max-width: 780px;
    margin: 0 auto;
}

.story-content p {
    color: var(--color-text-dark); 
    font-size: 1.15em;
    margin-bottom: 28px;
    line-height: 1.85; 
}

/* Core Values Section */
.core-values {
    text-align: center;
    padding: 95px 0;
    background-color: var(--color-bg-warm);
    border-top: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
}

.core-values p {
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 55px;
}

.value-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border-subtle);
    border-radius: 20px;
    padding: 45px 30px;
    max-width: 270px;
    flex: 1 1 230px;
    text-align: center;
    box-shadow: var(--shadow-soft-md);
    transition: var(--transition-premium);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft-xl);
    border-color: rgba(42, 64, 141, 0.15);
}

.value-icon-container {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 28px;
    transition: var(--transition-premium);
}

.value-card:hover .value-icon-container {
    transform: scale(1.1) rotate(6deg);
}

.value-icon-container svg {
    width: 28px;
    height: 28px;
    fill: none; 
    stroke: currentColor;
    stroke-width: 2;
}

.value-card h5 {
    font-size: 1.3em;
    color: var(--color-primary-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.92em;
    color: var(--color-text-grey);
    line-height: 1.6;
}

/* Core Values Specific styling matches colors exactly */
.value-card:nth-child(1) .value-icon-container {
    background-color: var(--color-value-bg-1);
    color: var(--color-value-icon-1); 
}

.value-card:nth-child(2) .value-icon-container {
    background-color: var(--color-value-bg-2);
    color: var(--color-value-icon-2); 
}

.value-card:nth-child(3) .value-icon-container {
    background-color: var(--color-value-bg-3);
    color: var(--color-value-icon-3); 
}
.value-card:nth-child(3) .value-icon-container svg path:first-child { 
    fill: currentColor;
    stroke: none;
}

.value-card:nth-child(4) .value-icon-container {
    background-color: var(--color-value-bg-4);
    color: var(--color-value-icon-4); 
}

/* Stat Counters */
.stat-counters {
    padding: 90px 0; 
    text-align: center;
    background-color: var(--color-bg-white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 15px 30px;
    flex: 1 1 200px;
}

.stat-item h3 {
    font-size: 3.4em;
    color: var(--color-accent-teal);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -1.5px;
}

.stat-item p {
    font-family: var(--font-family-main);
    font-size: 0.9em;
    color: var(--color-text-grey);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Partnership CTA */
.partnership-cta {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #091323 100%);
    padding: 100px 0;
    color: var(--color-text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partnership-cta h2 {
    font-size: 2.8em;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-text-light) !important;
}

.partnership-cta .cta-content {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.15em;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
}

.partnership-cta .button {
    background-color: var(--color-accent-teal);
    border-color: var(--color-accent-teal);
    color: var(--color-text-light);
    font-size: 16px;
    padding: 15px 36px;
    box-shadow: 0 4px 15px rgba(42, 64, 141, 0.3);
}

.partnership-cta .button:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(42, 64, 141, 0.5);
}

/* ---------------------------------- */
/* Services Page Layouts */
/* ---------------------------------- */

/* Services Hero */
.services-hero {
    background-color: var(--color-bg-warm);
    padding: 90px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-border-subtle);
}

.services-hero h1 {
    font-size: 3.2em;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 14px;
}

.services-hero p {
    font-size: 1.2em;
    color: var(--color-text-grey);
    max-width: 750px;
    margin: 0 auto;
}

/* Details Section */
.service-details-section {
    padding: 90px 0;
    background-color: var(--color-bg-white);
}

.service-block {
    background-color: var(--color-bg-warm);
    border: 1px solid var(--color-border-subtle);
    border-radius: 24px;
    padding: 55px;
    margin-bottom: 45px; 
    box-shadow: var(--shadow-soft-lg);
    max-width: 900px; 
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition-premium);
}

.service-block:hover {
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-soft-xl);
    border-color: rgba(42, 64, 141, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.service-header .icon-container {
    width: 66px;
    height: 66px;
    background-color: var(--color-service-bg);
    border-radius: 16px; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 26px;
    flex-shrink: 0;
    transition: var(--transition-premium);
}

.service-block:hover .icon-container {
    background-color: var(--color-accent-teal);
}

.service-block:hover .icon-container svg {
    color: var(--color-text-light);
}

.service-header .icon-container svg {
    color: var(--color-service-icon); 
    width: 32px; 
    height: 32px; 
    transition: var(--transition-premium);
}

/* Bullseye custom SVG target colorings */
.service-block:nth-child(1) .icon-container svg circle {
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}
.service-block:nth-child(1) .icon-container svg circle:nth-child(1) { opacity: 0.4; }
.service-block:nth-child(1) .icon-container svg circle:nth-child(2) { opacity: 0.8; }
.service-block:nth-child(1) .icon-container svg circle:nth-child(3) {
    fill: currentColor;
    stroke: none;
}

.service-header h2 {
    font-size: 2.1em;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.service-block > p {
    font-size: 1.1em;
    color: var(--color-text-grey);
    margin-bottom: 30px;
    line-height: 1.75;
}

.key-features {
    border-top: 1px solid var(--color-border-subtle);
    padding-top: 35px;
}

.key-features strong {
    font-family: var(--font-family-main);
    display: block;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 18px 35px;
}

.feature-list li {
    font-size: 0.98em;
    color: var(--color-text-grey);
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    transition: var(--transition-premium);
}

.feature-list li:hover {
    color: var(--color-text-dark);
    transform: translateX(5px);
}

.feature-list li .custom-checkmark { 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; 
    height: 22px; 
    margin-right: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--color-checkmark);
}

.feature-list li .custom-checkmark svg {
    width: 100%;
    height: 100%;
}

.feature-list li .custom-checkmark svg circle {
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.feature-list li .custom-checkmark svg path {
    fill: none; 
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Process section (styled as elegant modern sequence) */
.process-section {
    padding: 110px 0;
    text-align: center;
    background-color: var(--color-bg-warm); 
    border-top: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
}

.process-section .section-title {
    margin-bottom: 14px;
}

/* CTA Footer Services Page */
.cta-footer {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #091323 100%);
    padding: 100px 0;
    color: var(--color-text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-footer h2 {
    font-size: 2.8em;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--color-text-light) !important;
}

.cta-footer p {
    max-width: 700px;
    margin: 0 auto 38px;
    font-size: 1.15em;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.cta-footer .button {
    background-color: var(--color-bg-white);
    border-color: var(--color-bg-white);
    color: var(--color-primary-dark);
    font-size: 16px;
    padding: 15px 36px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-footer .button:hover {
    background-color: var(--color-bg-warm);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* ---------------------------------- */
/* Contact Page Styling */
/* ---------------------------------- */

/* Hero Contact */
.contact-hero {
    background-color: var(--color-bg-warm);
    padding: 90px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-border-subtle);
}

.contact-hero h1 {
    font-size: 3.2em;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 14px;
}

.contact-hero p {
    font-size: 1.2em;
    color: var(--color-text-grey);
    max-width: 650px;
    margin: 0 auto;
}

/* Contact cards (styled premium in case uncommented) */
.contact-details {
    padding: 90px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.contact-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border-subtle);
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: var(--shadow-soft-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-premium);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft-xl);
    border-color: rgba(42, 64, 141, 0.2);
}

.contact-card .icon-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background-color: var(--color-card-icon-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 26px;
    transition: var(--transition-premium);
}

.contact-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--color-accent-teal);
}

.contact-card:hover .icon-box i {
    color: var(--color-text-light);
}

.contact-card .icon-box i {
    font-size: 20px;
    transition: var(--transition-premium);
}

.contact-card h3 {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-primary-dark);
}

.contact-card p {
    color: var(--color-text-grey);
    font-size: 0.95em;
    line-height: 1.7;
}

.contact-card p a {
    color: var(--color-accent-teal);
    font-weight: 600;
}

.contact-card p a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

.card-email .icon-box i { color: var(--color-icon-email); }
.card-phone .icon-box i { color: var(--color-icon-phone); }
.card-visit .icon-box i { color: var(--color-icon-visit); }

/* Hours card */
.business-hours-section {
    padding: 70px 0 95px;
    background-color: var(--color-bg-white);
}

.hours-card {
    max-width: 550px;
    margin: 0 auto;
    border: 1px solid var(--color-border-subtle);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-soft-lg);
    text-align: center;
    background-color: var(--color-bg-white);
    transition: var(--transition-premium);
}

.hours-card:hover {
    box-shadow: var(--shadow-soft-xl);
    transform: translateY(-5px);
    border-color: rgba(42, 64, 141, 0.15);
}

.hours-card .icon-box {
    color: var(--color-accent-teal);
    margin-bottom: 24px;
    transition: var(--transition-premium);
}

.hours-card .icon-box i {
    font-size: 2.6rem;
}

.hours-card:hover .icon-box {
    transform: scale(1.1);
}

.hours-card h3 {
    font-size: 1.9em;
    font-weight: 600;
    margin-bottom: 26px;
}

.hours-list {
    list-style: none;
    text-align: left;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border-subtle);
    font-size: 1.02em;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li strong {
    font-family: var(--font-family-headings);
    font-weight: 600;
    color: var(--color-primary-dark);
}

.hours-list li span {
    color: var(--color-text-grey);
}

.hours-list li span.closed {
    color: #DC2626; 
    font-weight: 600;
}

/* Map placeholder */
.map-view-section {
    padding-bottom: 90px;
    background-color: var(--color-bg-white);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--color-bg-warm);
    border: 1px solid var(--color-border-subtle);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-text-grey);
    font-size: 1.15em;
    box-shadow: var(--shadow-soft-md);
    transition: var(--transition-premium);
}

.map-placeholder:hover {
    box-shadow: var(--shadow-soft-lg);
    border-color: rgba(42, 64, 141, 0.15);
}

.map-placeholder i {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--color-accent-teal);
    transition: var(--transition-premium);
}

.map-placeholder:hover i {
    transform: translateY(-5px);
}

/* ---------------------------------- */
/* Footer Redesign (Prestige Deep Navy) */
/* ---------------------------------- */
footer {
    background: var(--color-footer-dark); 
    color: var(--color-text-light);
    padding: 90px 0 35px;
    font-size: 0.95em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 45px;
    border-bottom: 1px solid #1A263B;
}

footer .logo-text {
    color: var(--color-text-light);
}

.footer-logo-section {
    flex: 1 1 300px;
}

.footer-logo-section .logo-box {
    background-color: var(--color-accent-teal);
}

.footer-logo-section p {
    color: #94A3B8;
    font-size: 0.95em;
    max-width: 320px;
    margin-top: 22px;
    line-height: 1.7;
}

.footer-links {
    flex: 1 1 150px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.15em;
    margin-bottom: 22px;
    color: var(--color-text-light);
    font-weight: 600;
    font-family: var(--font-family-headings);
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: #94A3B8;
    transition: var(--transition-premium);
}

.footer-links ul li a:hover {
    color: var(--color-text-light);
    transform: translateX(5px);
    display: inline-block;
}

.footer-contact {
    flex: 1 1 200px;
}

.footer-contact p {
    margin-bottom: 14px;
}

.footer-contact p a {
    color: #94A3B8;
    font-weight: 500;
}

.footer-contact p a:hover {
    color: var(--color-text-light);
}

.copyright-container {
    text-align: center;
    padding-top: 35px;
}

.copyright {
    color: #475569;
    font-size: 0.9em;
}

/* ---------------------------------- */
/* Smooth Entrance Animations */
/* ---------------------------------- */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* GPU Hardware Acceleration layer for entrance elements */
/* High-Performance Instantly Rendered Classes (Keyframe Animations Disabled) */
.animate-fade-in {
    opacity: 1 !important;
}

.animate-slide-up {
    opacity: 1 !important;
    transform: none !important;
}

.animate-scale-up {
    opacity: 1 !important;
    transform: none !important;
}

/* Precise Animation Stagger Delays */
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }
.delay-5 { animation-delay: 0.6s; }

/* ---------------------------------- */
/* Responsiveness Breakpoints */
/* ---------------------------------- */

@media (max-width: 992px) {
    .hero {
        padding: 70px 0 90px;
    }
    .hero-text {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }
    .hero h1 {
        font-size: 3.1em;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-graphic {
        flex: 1 1 100%;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    /* Responsive Mobile Typography - Prevents long words from cutting off or overlapping */
    .section-title {
        font-size: 2.0em;
    }
    .hero h1 {
        font-size: 2.2em;
    }
    .services-hero h1, .contact-hero h1 {
        font-size: 1.8em !important; /* Perfect fit for long words like 'Comprehensive' on narrow portrait viewports like Samsung S23 */
    }
    .about-hero h1 {
        font-size: 1.85em !important;
    }
    .partnership-cta h2, .cta-footer h2, .cta h3 {
        font-size: 1.9em !important;
    }
    .services-hero p, .about-hero p, .contact-hero p {
        font-size: 1.0em !important;
        line-height: 1.5;
    }
    
    /* Hamburger Active Mobile Drawer Layout */
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background-color: var(--color-bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 80px 30px;
        box-shadow: -10px 0 50px rgba(15, 30, 54, 0.15);
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        gap: 30px;
        border-left: 1px solid var(--color-border-subtle);
    }

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

    .nav-menu li a {
        font-size: 1.15em;
        font-weight: 600;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .service-block {
        padding: 35px 25px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .service-header .icon-container {
        margin-right: 0;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .values-grid, .stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .value-card {
        max-width: 100%;
        width: 100%;
    }

    footer {
        padding: 50px 0 35px; /* Elegant, balanced vertical padding on mobile */
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px; /* High compression vertical gap between stacked sections on mobile */
    }

    .footer-logo-section, .footer-links, .footer-contact {
        flex: none !important; /* Stop vertical stretching */
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .footer-logo-section .logo-container {
        justify-content: center; /* PERFECTLY CENTER THE LOGO BOX AND BRAND TEXT ON MOBILE */
    }

    .footer-logo-section p {
        margin-top: 8px; /* Tighter logo text spacing on mobile */
        line-height: 1.4;
        max-width: 290px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links h4, .footer-contact h4 {
        margin-top: 10px; /* Space above stacked headings on mobile */
        margin-bottom: 8px; /* Compressed heading margin on mobile */
        font-size: 1.1em;
    }

    .footer-links ul {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
    }

    .footer-links ul li {
        margin-bottom: 4px; /* Ultra-compact vertical spacing for link list on mobile */
        line-height: 1.3;
    }

    .footer-contact p {
        margin-bottom: 4px; /* Ultra-compact vertical spacing for contact lines on mobile */
        line-height: 1.3;
    }

    .footer-logo-section p, .footer-links ul li a {
        margin-left: auto;
        margin-right: auto;
    }

    /* Mobile Drawer Menu Link Contrast & Element Cleanup */
    .nav-menu li a:not(.button)::after {
        display: none !important; /* Hide floating underlines on mobile */
    }

    .nav-menu li a.active:not(.button) {
        color: var(--color-accent-teal) !important; /* Blue active link color on mobile at top */
    }

    /* Synchronized Scroll Transition: Mobile Menu Drawer turns Dark Navy on scroll */
    header.scrolled .nav-menu {
        background-color: var(--color-primary-dark) !important; /* Matches scrolled header/footer dark navy */
        border-left: 1px solid #1A263B !important;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3) !important;
    }

    header.scrolled .nav-menu li a:not(.button) {
        color: var(--color-text-light) !important; /* Crisp white links on dark navy drawer background */
    }

    header.scrolled .nav-menu li a:not(.button):hover {
        color: #38BDF8 !important; /* Soft blue highlight hover */
    }

    header.scrolled .nav-menu li a.active:not(.button) {
        color: #38BDF8 !important; /* Soft blue active state on scrolled mobile menu */
    }

    header.scrolled .nav-menu li a.button.primary {
        background-color: var(--color-text-light) !important; /* High-contrast white button on scrolled navy background */
        color: var(--color-primary-dark) !important;
        border-color: var(--color-text-light) !important;
    }
}

/* ---------------------------------- */
/* Premium Enhancements: All 5 Features */
/* ---------------------------------- */

/* Feature 3: Ambient Background Gradient Orbs (Stripe-Style Lights) */
section, .services-overview, .core-values, .service-details-section, .business-hours-section {
    position: relative; /* Essential for containing absolute blobs */
    overflow: hidden; /* Stops horizontal scroll breaking */
}

.ambient-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(42, 64, 141, 0.05) 0%, rgba(42, 64, 141, 0) 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    transition: var(--transition-premium);
}

.blob-left {
    left: -150px;
    top: 15%;
}

.blob-right {
    right: -150px;
    bottom: 15%;
}

/* Feature 4: Interactive Top-Border Hover Accents */
.card, .value-card, .service-block {
    position: relative;
    overflow: hidden;
}

.card::before, .value-card::before, .service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--color-accent-teal);
    transition: var(--transition-premium);
    z-index: 2;
}

.card:hover::before, .value-card:hover::before, .service-block:hover::before {
    width: 100%;
}

/* Feature 2: Thin Connector Process Timelines (Dashed Journeys) */
@media (min-width: 993px) {
    .features-grid {
        position: relative;
    }
    
    .features-grid::before {
        content: '';
        position: absolute;
        top: 45%;
        left: 8%;
        right: 8%;
        height: 2px;
        background-image: linear-gradient(to right, rgba(42, 64, 141, 0.15) 50%, transparent 50%);
        background-size: 14px 1px;
        background-repeat: repeat-x;
        z-index: 0;
    }
    
    .feature-item {
        position: relative;
        z-index: 1;
    }
}

/* Feature 1: Dual-Audience Split Action Cards in the Hero & Feature 5: SVG Network Nodes */
.split-dashboard {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px !important;
    min-height: auto !important;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.split-card {
    background-color: var(--color-bg-white);
    background-image: radial-gradient(rgba(42, 64, 141, 0.05) 1.5px, transparent 1.5px); /* Premium SaaS Grid Dot Texture */
    background-size: 16px 16px;
    border: 1px solid var(--color-border-subtle);
    border-radius: 16px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-premium);
    box-shadow: var(--shadow-soft-md);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.employer-card {
    animation: gentleFloat 6s ease-in-out infinite; /* Continuous gentle floating */
}

.candidate-card {
    animation: gentleFloat 6s ease-in-out infinite;
    animation-delay: 3s; /* Staggered floating delay for natural parallax */
}

.split-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--color-accent-teal);
    transition: var(--transition-premium);
}

.split-card:hover::before {
    width: 100%;
}

.split-card:hover {
    transform: translateY(-12px) scale(1.02) !important; /* Springy hover scaling */
    box-shadow: var(--shadow-soft-xl);
    border-color: rgba(42, 64, 141, 0.25);
    background-image: radial-gradient(rgba(42, 64, 141, 0.09) 1.5px, transparent 1.5px); /* Highlight grid on hover */
}

.card-badge {
    align-self: flex-start;
    background-color: rgba(42, 64, 141, 0.08);
    color: var(--color-accent-teal);
    font-size: 0.75em;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-family: var(--font-family-main);
}

.card-badge.teal-badge {
    background-color: rgba(13, 148, 136, 0.08);
    color: #0D9488;
}

.split-card h4 {
    font-family: var(--font-family-headings);
    font-size: 1.35em;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.85em;
    color: var(--color-text-grey);
    margin-bottom: 20px;
    line-height: 1.5;
}

.graphic-item.mini {
    padding: 10px 0;
    border: none !important;
}

.graphic-icon.mini-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-right: 12px;
}

.graphic-icon.mini-icon svg {
    width: 20px;
    height: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9em;
    color: var(--color-accent-teal);
    margin-top: 20px;
    transition: var(--transition-premium);
}

.card-link i {
    margin-left: 6px;
    font-size: 10px;
    transition: var(--transition-premium);
}

.card-link:hover {
    color: var(--color-accent-hover);
}

.card-link:hover i {
    transform: translateX(4px);
}

.card-link.light {
    color: #0D9488;
}

.card-link.light:hover {
    color: #0F766E;
}

@media (max-width: 992px) {
    .split-dashboard {
        grid-template-columns: 1fr;
        gap: 25px !important;
    }
}

/* ---------------------------------- */
/* Interactive Services CTA Button */
/* ---------------------------------- */
.view-services-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.interactive-services-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-family-main);
    font-weight: 600;
    font-size: 1.1em;
    color: var(--color-accent-teal);
    position: relative;
    padding: 10px 0;
    transition: var(--transition-premium);
    cursor: pointer;
}

.interactive-services-link .link-text {
    position: relative;
    padding-bottom: 4px;
}

.interactive-services-link .link-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--color-accent-teal);
    transition: var(--transition-premium);
}

.interactive-services-link:hover .link-text::after {
    width: 100%;
}

.interactive-services-link .arrow-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--color-icon-bg);
    color: var(--color-accent-teal);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(42, 64, 141, 0.15);
    box-shadow: var(--shadow-soft-sm);
    transition: var(--transition-premium);
}

.interactive-services-link:hover .arrow-circle {
    background-color: var(--color-accent-teal);
    color: var(--color-text-light);
    transform: scale(1.1) translateX(6px);
    box-shadow: 0 8px 20px rgba(42, 64, 141, 0.25);
}

.interactive-services-link .arrow-circle i {
    font-size: 14px;
    transition: var(--transition-premium);
}

/* ---------------------------------- */
/* Premium Brand Preloader Overlay */
/* ---------------------------------- */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-warm); /* Matches our warm neutral background */
    z-index: 9999; /* Higher than sticky header drawer menu */
    display: flex;
    justify-content: center;
    align-items: center;
    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.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-sticker {
    width: 96px;
    height: 96px;
    margin-bottom: 22px;
}

.preloader-svg {
    width: 100%;
    height: 100%;
}

@keyframes svgPulse {
    0%, 100% { transform: scale(1); opacity: 0.95; }
    50% { transform: scale(1.06); opacity: 1; filter: drop-shadow(0 0 12px rgba(42, 64, 141, 0.2)); }
}

.preloader-sticker svg {
    animation: svgPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0% { r: 6px; opacity: 0.4; stroke-width: 1.5; }
    50% { r: 12px; opacity: 1; stroke-width: 3; }
    100% { r: 18px; opacity: 0; stroke-width: 1; }
}

.pulse-ring {
    animation: ringPulse 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    transform-origin: 50px 55px; /* Centers pulse on magnifying lens */
}

.preloader-title {
    font-family: var(--font-family-headings);
    color: var(--color-accent-teal); /* Exact Custom Blue #2A408D */
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.preloader-tagline {
    font-family: var(--font-family-main);
    color: var(--color-text-grey);
    font-size: 0.85em;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 26px;
}

/* Loading Progress Bar */
.loader-bar {
    width: 150px;
    height: 3px;
    background-color: #EAE8DF;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-progress {
    width: 100%;
    height: 100%;
    background-color: var(--color-accent-teal); /* Exact Custom Blue #2A408D */
    position: absolute;
    left: -100%;
    border-radius: 10px;
    animation: progressShift 1.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes progressShift {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}
