/* ==========================================================================
   LeadOpex Solutions LLP — Brand Theme (Logo Blue & Orange)
   Production-ready stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Logo-aligned brand palette */
    --royal-purple: #1B5A9E;
    --elegant-violet: #2E86C1;
    --luxury-gold: #F07820;
    --accent-yellow: #F5B82E;
    --deep-purple: #0A1628;
    --soft-white: #F8FAFC;
    --dark-indigo: #0F2847;
    --slate-gray: #64748B;
    --border-light: #E2E8F0;
    --white: #FFFFFF;
    --black: #000000;

    --gradient-purple: linear-gradient(135deg, #1B5A9E 0%, #2E86C1 100%);
    --gradient-hero: linear-gradient(135deg, #0A1628 0%, #0F2847 50%, #1B5A9E 100%);
    --gradient-gold: linear-gradient(135deg, #F07820 0%, #F5B82E 50%, #F07820 100%);
    --gradient-dark: linear-gradient(180deg, var(--deep-purple) 0%, var(--dark-indigo) 100%);

    --font-heading: 'Poppins', 'Playfair Display', serif;
    --font-body: 'Inter', 'Open Sans', sans-serif;

    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 8px 30px rgba(27, 90, 158, 0.12);
    --shadow-lg: 0 20px 60px rgba(27, 90, 158, 0.18);
    --shadow-glow: 0 0 40px rgba(46, 134, 193, 0.25);
    --shadow-gold: 0 0 30px rgba(240, 120, 32, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-height: 88px;
}

/* --------------------------------------------------------------------------
   Base & Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-gray);
    background-color: var(--soft-white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

main {
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-indigo);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    padding-left: 0;
}

::selection {
    background: var(--elegant-violet);
    color: var(--white);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

.text-gradient {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold { color: var(--luxury-gold); }
.text-purple { color: var(--royal-purple); }
.text-white { color: var(--white); }

.text-gold-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-purple-gradient {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-soft-white { background-color: var(--soft-white); }
.bg-deep-purple { background-color: var(--deep-purple); }
.bg-soft { background-color: #F1F5F9; }
.bg-dark-purple {
    background: linear-gradient(180deg, #0A1628 0%, #0F2847 45%, #0A1628 100%);
}

.text-white { color: var(--white) !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.7) !important; }

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(46, 134, 193, 0.1);
    color: var(--elegant-violet);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-badge-light {
    background: rgba(240, 120, 32, 0.12);
    color: var(--luxury-gold);
    border: 1px solid rgba(240, 120, 32, 0.3);
}

.section-lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    max-width: 620px;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 70px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--elegant-violet);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--gradient-purple);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--dark-indigo);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--slate-gray);
    max-width: 640px;
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-primary-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    background: var(--gradient-purple);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: -1;
}

.btn-primary-premium:hover {
    color: var(--deep-purple);
    border-color: var(--luxury-gold);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-gold);
}

.btn-primary-premium:hover::before {
    opacity: 1;
}

.btn-secondary-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.btn-secondary-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--luxury-gold);
    color: var(--luxury-gold);
    transform: translateY(-2px);
}

.btn-outline-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--royal-purple);
    background: transparent;
    border: 2px solid var(--royal-purple);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.btn-outline-premium:hover {
    background: var(--gradient-purple);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-link-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--royal-purple);
    transition: all var(--transition-fast);
}

.btn-link-premium i {
    transition: transform var(--transition-fast);
}

.btn-link-premium:hover {
    color: var(--elegant-violet);
}

.btn-link-premium:hover i {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.navbar-premium {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.navbar-premium.navbar-scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 68px;
}

.navbar-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.navbar-brand-premium {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 1;
    min-width: 0;
    max-width: calc(100% - 60px);
}

.brand-logo {
    height: 68px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    transition: opacity var(--transition-fast);
}

.navbar-brand-premium:hover .brand-logo {
    opacity: 0.92;
}

.brand-logo-footer {
    height: 72px;
    max-width: 260px;
    background: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.navbar-brand-premium .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand-premium .brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition-fast);
}

.navbar-brand-premium .brand-sub {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.navbar-scrolled .navbar-brand-premium .brand-name {
    color: var(--dark-indigo);
}

.navbar-scrolled .navbar-brand-premium .brand-sub {
    color: var(--slate-gray);
}

.navbar-scrolled .navbar-brand-premium .brand-icon {
    box-shadow: var(--shadow-sm);
}

.nav-desktop {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0 12px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    flex: 0 0 auto;
}

.navbar-premium .nav-link-premium {
    color: var(--dark-indigo);
}

.navbar-premium .nav-link-premium:hover {
    color: var(--royal-purple);
}

.navbar-premium .nav-link-premium.active {
    color: var(--luxury-gold);
}

.nav-link-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 8px 10px;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.2;
    height: 44px;
    color: var(--dark-indigo);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-cta-wrap {
    flex-shrink: 0;
}

.nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--luxury-gold);
    border-radius: var(--radius-full);
    transition: transform var(--transition-fast);
}

.nav-link-premium:hover {
    color: var(--royal-purple);
}

.nav-link-premium.active {
    color: var(--luxury-gold);
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-scrolled .nav-link-premium {
    color: var(--dark-indigo);
}

.navbar-scrolled .nav-link-premium:hover {
    color: var(--royal-purple);
}

.navbar-scrolled .nav-link-premium.active {
    color: var(--luxury-gold);
}

.btn-cta-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    background: var(--gradient-purple);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    transition: all var(--transition-smooth);
    white-space: nowrap;
    line-height: 1.2;
    height: 44px;
}

.btn-cta-nav:hover {
    border-color: var(--luxury-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--white);
}

.navbar-scrolled .btn-cta-nav {
    box-shadow: var(--shadow-sm);
}

/* Hamburger */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: rgba(27, 90, 158, 0.08);
    border: 1px solid rgba(27, 90, 158, 0.15);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--royal-purple);
    border-radius: var(--radius-full);
    transition: all var(--transition-smooth);
}

.navbar-scrolled .hamburger-btn {
    background: rgba(27, 90, 158, 0.08);
    border-color: rgba(27, 90, 158, 0.15);
}

.navbar-scrolled .hamburger-line {
    background: var(--royal-purple);
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1060;
    background: var(--gradient-hero);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    position: relative;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-header {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-nav-list {
    flex: 1;
    padding: 32px 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-link {
    display: block;
    padding: 18px 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--luxury-gold);
    padding-left: 12px;
}

.mobile-menu-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-info p {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

body.menu-open {
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: calc(var(--navbar-height) + 32px) 0 64px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 85% 40%, rgba(46, 134, 193, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(240, 120, 32, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: var(--white);
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: floatShape 15s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 30%;
    animation: floatShape 12s ease-in-out infinite 2s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 120, 32, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--luxury-gold);
    margin-bottom: 20px;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero-title,
.hero-section h1.hero-title {
    font-size: clamp(1.75rem, 3.8vw, 2.75rem);
    font-weight: 700;
    color: var(--white) !important;
    line-height: 1.2;
    margin-bottom: 18px;
    max-width: 560px;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 500px;
    margin-bottom: 28px;
    line-height: 1.75;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.hero-trust-item i {
    color: var(--luxury-gold);
    font-size: 1rem;
}

.hero-cta-group .btn-primary-premium,
.hero-cta-group .btn-secondary-premium {
    padding: 12px 24px;
    font-size: 0.875rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.hero-stat-item {
    position: relative;
    padding-left: 16px;
}

.hero-stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--luxury-gold);
    border-radius: var(--radius-full);
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10, 22, 40, 0.35) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-image-wrapper img,
.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-float-card {
    position: absolute;
    z-index: 2;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: floatCard 5s ease-in-out infinite;
}

.hero-float-card .floating-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--royal-purple);
    line-height: 1.2;
}

.hero-float-card .floating-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--slate-gray);
    margin-top: 2px;
}

.hero-float-card-1 {
    bottom: 24px;
    left: 20px;
    animation-delay: 0s;
}

.hero-float-card-2 {
    top: 24px;
    right: 20px;
    animation-delay: 2.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-float-card .card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.hero-float-card .card-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-indigo);
    margin-bottom: 2px;
}

.hero-float-card .card-value {
    font-size: 0.75rem;
    color: var(--slate-gray);
}

/* --------------------------------------------------------------------------
   Trust Section
   -------------------------------------------------------------------------- */
.trust-section {
    position: relative;
    margin-top: -40px;
    z-index: 10;
    padding-bottom: 80px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 134, 193, 0.2);
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(27, 90, 158, 0.1) 0%, rgba(46, 134, 193, 0.1) 100%);
    border-radius: var(--radius-md);
    color: var(--royal-purple);
    font-size: 1.5rem;
}

.trust-card-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--dark-indigo);
    line-height: 1;
    margin-bottom: 8px;
}

.trust-card-number .counter-suffix {
    color: var(--elegant-violet);
}

.trust-card-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-gray);
}

/* --------------------------------------------------------------------------
   About Preview
   -------------------------------------------------------------------------- */
.about-preview {
    background: var(--soft-white);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 20px 28px;
    z-index: 2;
}

.about-image-badge .badge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--royal-purple);
    line-height: 1;
}

.about-image-badge .badge-text {
    font-size: 0.8125rem;
    color: var(--slate-gray);
    margin-top: 4px;
}

.about-content {
    padding-left: 20px;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.highlight-card {
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition-smooth);
    cursor: default;
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(46, 134, 193, 0.3);
}

.highlight-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: var(--gradient-purple);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1.25rem;
    transition: transform var(--transition-smooth);
}

.highlight-card:hover .highlight-card-icon {
    transform: rotateY(180deg);
}

.highlight-card-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-indigo);
    margin-bottom: 4px;
}

.highlight-card-text {
    font-size: 0.75rem;
    color: var(--slate-gray);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Challenge Cards
   -------------------------------------------------------------------------- */
.challenges-section {
    background: var(--white);
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.challenge-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px 28px;
    border: 2px solid rgba(27, 90, 158, 0.22);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-purple);
    opacity: 1;
}

.challenge-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: border-color var(--transition-smooth);
    pointer-events: none;
}

.challenge-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--luxury-gold);
}

.challenge-card:hover::after {
    border-color: rgba(240, 120, 32, 0.35);
}

.challenge-card-icon {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, rgba(27, 90, 158, 0.1) 0%, rgba(46, 134, 193, 0.14) 100%);
    border: 2px solid rgba(27, 90, 158, 0.15);
    border-radius: var(--radius-md);
    color: var(--royal-purple);
    font-size: 2.125rem;
    transition: all var(--transition-smooth);
}

.challenge-card:hover .challenge-card-icon {
    background: var(--gradient-purple);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.06);
}

.challenge-card-title {
    font-family: var(--font-heading);
    font-size: 1.3125rem;
    font-weight: 600;
    color: var(--dark-indigo) !important;
    margin-bottom: 14px;
    text-align: center;
    line-height: 1.35;
}

.challenge-card-text {
    font-size: 0.9375rem;
    color: var(--slate-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: center;
    flex: 1;
}

.challenge-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--royal-purple);
    margin-top: auto;
    transition: all var(--transition-fast);
}

.challenge-link i {
    transition: transform var(--transition-fast);
}

.challenge-card:hover .challenge-link {
    color: var(--luxury-gold);
}

.challenge-card:hover .challenge-link i {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Service Cards
   -------------------------------------------------------------------------- */
.services-section {
    background: linear-gradient(180deg, var(--soft-white) 0%, rgba(248, 250, 252, 0) 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-purple);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--gradient-purple);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1.75rem;
    transition: transform var(--transition-smooth);
}

.service-card:hover .service-card-icon {
    transform: rotate(10deg) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-indigo);
    margin-bottom: 12px;
    text-align: center;
    transition: color var(--transition-fast);
}

.service-card:hover .service-card-title {
    color: var(--white);
}

.service-card-text {
    font-size: 0.9375rem;
    color: var(--slate-gray);
    margin-bottom: 24px;
    flex: 1;
    transition: color var(--transition-fast);
}

.service-card:hover .service-card-text {
    color: rgba(255, 255, 255, 0.85);
}

.service-card .btn-link-premium {
    margin-top: auto;
}

.service-card:hover .btn-link-premium {
    color: var(--luxury-gold);
}

/* --------------------------------------------------------------------------
   Why Choose Us
   -------------------------------------------------------------------------- */
.why-choose-section {
    background: var(--white);
    overflow: hidden;
}

.why-choose-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.why-choose-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(240, 120, 32, 0.15) 0%, rgba(240, 120, 32, 0.05) 100%);
    border: 1px solid rgba(240, 120, 32, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--luxury-gold);
    margin-bottom: 24px;
}

.why-choose-badge i {
    font-size: 1rem;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.why-choose-item:last-child {
    border-bottom: none;
}

.why-choose-item:hover {
    padding-left: 8px;
}

.why-choose-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(240, 120, 32, 0.2) 0%, rgba(240, 120, 32, 0.1) 100%);
    border-radius: var(--radius-full);
    color: var(--luxury-gold);
    font-size: 0.875rem;
}

.why-choose-text h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.why-choose-text p {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--slate-gray);
}

/* --------------------------------------------------------------------------
   HR Transformation Journey
   -------------------------------------------------------------------------- */
.journey-section {
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(46, 134, 193, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.journey-section .container {
    position: relative;
    z-index: 1;
}

.journey-section .section-header {
    margin-bottom: 48px;
}

.journey-section .section-title {
    color: var(--white) !important;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 14px;
}

.journey-section .section-title .text-gold-gradient {
    background: linear-gradient(135deg, #F07820 0%, #F5B82E 50%, #F07820 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(240, 120, 32, 0.35));
}

.journey-section .section-lead {
    color: rgba(255, 255, 255, 0.72);
}

.journey-cards-row {
    position: relative;
    padding-top: 28px;
}

.journey-connector {
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(240, 120, 32, 0.45) 20%, rgba(240, 120, 32, 0.45) 80%, transparent);
    z-index: 0;
}

.timeline-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 24px 28px;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    transition: all var(--transition-smooth);
    z-index: 1;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-purple);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(27, 90, 158, 0.3);
    border-color: rgba(240, 120, 32, 0.35);
}

.timeline-card:hover::before {
    opacity: 1;
}

.timeline-step-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border: 3px solid var(--luxury-gold);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.timeline-icon {
    width: 58px;
    height: 58px;
    margin: 16px auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 90, 158, 0.1) 0%, rgba(46, 134, 193, 0.08) 100%);
    border-radius: 14px;
    font-size: 1.5rem;
    color: var(--royal-purple);
    transition: all var(--transition-smooth);
}

.timeline-card:hover .timeline-icon {
    background: var(--gradient-purple);
    color: var(--white);
    transform: scale(1.08);
}

.timeline-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--dark-indigo) !important;
    margin-bottom: 10px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--slate-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Timeline (alternate layout)
   -------------------------------------------------------------------------- */
.timeline-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.timeline-section .section-title {
    color: var(--white);
}

.timeline-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--gradient-gold);
    transition: height 0.1s linear;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 40px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    z-index: 2;
    transition: all var(--transition-smooth);
}

.timeline-item.active .timeline-marker {
    background: var(--gradient-gold);
    border-color: var(--luxury-gold);
    color: var(--deep-purple);
    box-shadow: var(--shadow-gold);
    transform: translateX(-50%) scale(1.15);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    transition: all var(--transition-smooth);
}

.timeline-item.active .timeline-content {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(240, 120, 32, 0.3);
    box-shadow: var(--shadow-gold);
}

.timeline-content h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-section {
    background: var(--soft-white);
}

.testimonials-section .section-header {
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    align-items: stretch;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 22px 18px 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    height: 100%;
}

.testimonial-card:hover {
    border-color: rgba(46, 134, 193, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.testimonial-rating i {
    color: var(--luxury-gold);
    font-size: 0.7rem;
}

.testimonial-text {
    flex: 1;
    font-size: 0.8125rem;
    color: var(--slate-gray);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(46, 134, 193, 0.2);
}

.testimonial-author-info {
    min-width: 0;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark-indigo);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-role {
    display: block;
    font-size: 0.7rem;
    color: var(--slate-gray);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1399.98px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 575.98px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-text {
        -webkit-line-clamp: unset;
    }
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-section {
    background: var(--white);
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md) !important;
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.faq-accordion .accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-indigo);
    padding: 20px 24px;
    background: var(--white);
    box-shadow: none;
    transition: all var(--transition-fast);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(27, 90, 158, 0.06) 0%, rgba(46, 134, 193, 0.06) 100%);
    color: var(--royal-purple);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231B5A9E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform var(--transition-fast);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.faq-accordion .accordion-body {
    padding: 0 24px 24px;
    font-size: 0.9375rem;
    color: var(--slate-gray);
    line-height: 1.8;
}

/* Tailwind CDN defines .collapse { visibility: collapse } which hides Bootstrap accordion content */
.faq-accordion .accordion-collapse.collapse.show,
.faq-accordion .accordion-collapse.collapse.collapsing {
    visibility: visible !important;
}

/* --------------------------------------------------------------------------
   Methodology Page — section spacing
   -------------------------------------------------------------------------- */
.methodology-framework {
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
}

.methodology-framework .framework-info-card {
    margin-bottom: 0;
}

.methodology-phases {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.methodology-phases > .container > .section-header {
    margin-top: 0;
    margin-bottom: 48px;
}

.methodology-phases .section-header[data-aos] {
    transform: none !important;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--gradient-hero);
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-section .section-title {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

.cta-title {
    color: var(--white) !important;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 36px;
}

.cta-section .btn-primary-premium {
    padding: 16px 40px;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Page Hero Banner (Inner Pages)
   -------------------------------------------------------------------------- */
.page-hero {
    position: relative;
    padding: calc(var(--navbar-height) + 60px) 0 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.page-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 24px;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    list-style: none;
    margin: 0;
}

.breadcrumb-nav .breadcrumb-item {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-nav .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--luxury-gold);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--luxury-gold);
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255, 255, 255, 0.4);
    padding-right: 8px;
}

/* --------------------------------------------------------------------------
   Inner Page Components
   -------------------------------------------------------------------------- */
.content-block {
    padding: 80px 0;
}

.content-block-alt {
    background: var(--soft-white);
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(46, 134, 193, 0.2);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.info-card-centered {
    text-align: center;
}

.info-card-centered p {
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-light);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--luxury-gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.stats-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    padding: 48px;
    background: var(--gradient-purple);
    border-radius: var(--radius-xl);
}

.stats-bar-item {
    text-align: center;
}

.stats-bar-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stats-bar-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-card-image {
    height: 280px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-body {
    padding: 24px;
    text-align: center;
}

.team-card-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-indigo);
    margin-bottom: 4px;
}

.team-card-role {
    font-size: 0.875rem;
    color: var(--elegant-violet);
    margin-bottom: 12px;
}

.insight-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.insight-card-image {
    height: 220px;
    overflow: hidden;
}

.insight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.insight-card:hover .insight-card-image img {
    transform: scale(1.08);
}

.insight-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(46, 134, 193, 0.1);
    color: var(--elegant-violet);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.industry-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.industry-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 22, 40, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: background var(--transition-smooth);
}

.industry-card:hover img {
    transform: scale(1.08);
}

.industry-card:hover .industry-card-overlay {
    background: linear-gradient(180deg, rgba(27, 90, 158, 0.3) 0%, rgba(10, 22, 40, 0.95) 100%);
}

.industry-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.industry-card-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-smooth);
}

.industry-card:hover .industry-card-text {
    opacity: 1;
    transform: translateY(0);
}

.process-cards-row {
    position: relative;
    padding-top: 28px;
}

.process-connector {
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(240, 120, 32, 0.4) 20%, rgba(240, 120, 32, 0.4) 80%, transparent);
    z-index: 0;
}

.process-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 22px 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-smooth);
    z-index: 1;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-purple);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(240, 120, 32, 0.35);
}

.process-card:hover::before {
    opacity: 1;
}

.process-card-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border: 3px solid var(--luxury-gold);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.process-card-icon {
    width: 56px;
    height: 56px;
    margin: 12px auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 90, 158, 0.1) 0%, rgba(46, 134, 193, 0.08) 100%);
    border-radius: 14px;
    font-size: 1.4rem;
    color: var(--royal-purple);
    transition: all var(--transition-smooth);
}

.process-card:hover .process-card-icon {
    background: var(--gradient-purple);
    color: var(--white);
    transform: scale(1.08);
}

.process-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-indigo) !important;
    margin-bottom: 10px;
    text-align: center;
}

.process-card-text {
    font-size: 0.9rem;
    color: var(--slate-gray);
    line-height: 1.65;
    margin-bottom: 0;
    text-align: center;
}

.tech-feature {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 20px;
    transition: all var(--transition-smooth);
}

.tech-feature:hover {
    border-color: rgba(46, 134, 193, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.tech-feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 90, 158, 0.1) 0%, rgba(46, 134, 193, 0.15) 100%);
    border-radius: var(--radius-md);
    color: var(--royal-purple);
    font-size: 1.5rem;
}

.service-detail-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: calc(var(--navbar-height) + 24px);
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li a {
    display: block;
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: var(--slate-gray);
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    transition: all var(--transition-fast);
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    background: rgba(46, 134, 193, 0.06);
    color: var(--royal-purple);
    border-left-color: var(--royal-purple);
}

/* --------------------------------------------------------------------------
   Contact Form
   -------------------------------------------------------------------------- */
.contact-section {
    background: var(--soft-white);
}

.contact-info-card {
    background: var(--gradient-purple);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-list li i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.contact-info-list li span,
.contact-info-list li a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-info-list li a:hover {
    color: var(--luxury-gold);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact-form .form-label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-indigo);
    margin-bottom: 8px;
}

.form-control-premium {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--dark-indigo);
    background: var(--soft-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-control-premium:focus {
    background: var(--white);
    border-color: var(--elegant-violet);
    box-shadow: 0 0 0 4px rgba(46, 134, 193, 0.1);
}

.form-control-premium::placeholder {
    color: #94A3B8;
}

.form-control-premium.is-invalid {
    border-color: #EF4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-control-premium.is-valid {
    border-color: #10B981;
}

.form-select-premium {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231B5A9E' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 44px;
}

textarea.form-control-premium {
    min-height: 140px;
    resize: vertical;
}

.form-error {
    display: none;
    font-size: 0.8125rem;
    color: #EF4444;
    margin-top: 6px;
}

.form-error.show {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer-premium {
    position: relative;
    background: var(--deep-purple);
    padding: 80px 0 32px;
    overflow: hidden;
}

.footer-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-brand {
    display: inline-block;
}

.footer-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 360px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-purple);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--luxury-gold);
    border-radius: var(--radius-full);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--luxury-gold);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact li i {
    color: var(--luxury-gold);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
}

.footer-contact li a:hover {
    color: var(--luxury-gold);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 48px 0 32px;
}

.footer-bottom {
    gap: 16px;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--luxury-gold);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.25);
}

/* --------------------------------------------------------------------------
   Back to Top
   -------------------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.125rem;
    cursor: pointer;
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gradient-gold);
    color: var(--deep-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

/* --------------------------------------------------------------------------
   Particle Canvas
   -------------------------------------------------------------------------- */
.particle-canvas {
    position: absolute;
    inset: 0;
    width: 100% !important;
    max-width: 100%;
    height: 100%;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Loading & Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(46, 134, 193, 0.2); }
    50% { box-shadow: 0 0 40px rgba(46, 134, 193, 0.4); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (min-width: 992px) and (max-width: 1299.98px) {
    .nav-link-premium {
        padding: 8px 7px;
        font-size: 0.75rem;
    }

    .btn-cta-nav {
        padding: 10px 16px;
        font-size: 0.75rem;
    }

    .brand-logo {
        height: 56px;
        max-width: 200px;
    }

    .brand-logo-footer {
        height: 60px;
        max-width: 210px;
    }
}

@media (max-width: 1199.98px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-grid,
    .challenge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .journey-connector,
    .process-connector {
        display: none;
    }

    .timeline-card {
        margin-bottom: 8px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-line {
        left: 28px;
        transform: none;
    }

    .timeline-marker {
        left: 28px;
    }

    .timeline-item.active .timeline-marker {
        transform: translateX(-50%) scale(1.15);
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .navbar-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-inner {
        gap: 12px;
    }

    .brand-logo {
        height: 52px;
        max-width: min(180px, calc(100vw - 88px));
    }

    .hero-image-wrapper img {
        height: 400px;
    }

    .hero-float-card-1 {
        left: 10px;
    }

    .hero-float-card-2 {
        right: 10px;
    }

    .why-choose-image {
        margin-bottom: 40px;
    }

    .why-choose-image img {
        height: 400px;
    }

    .contact-info-card {
        margin-bottom: 32px;
    }

    .service-detail-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --navbar-height: 70px;
    }

    .brand-logo {
        height: 46px;
        max-width: min(160px, calc(100vw - 80px));
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .trust-section {
        margin-top: -40px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-card {
        padding: 24px 20px;
    }

    .service-grid,
    .challenge-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-cards {
        grid-template-columns: 1fr;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group .btn-primary-premium,
    .hero-cta-group .btn-secondary-premium {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-image-wrapper img,
    .hero-image {
        height: 320px;
    }

    .hero-float-card {
        display: none;
    }

    .about-image-wrapper img {
        height: 360px;
    }

    .cta-section {
        padding: 70px 0;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .stats-bar {
        gap: 32px;
        padding: 32px 24px;
    }

    .footer-premium {
        padding: 60px 0 24px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .page-hero {
        padding: calc(var(--navbar-height) + 40px) 0 60px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding-bottom: 60px;
    }

    .breadcrumb-nav {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }

    .timeline-item {
        padding-left: 60px !important;
    }

    .timeline-line,
    .timeline-marker {
        left: 20px;
    }

    .timeline-marker {
        width: 44px;
        height: 44px;
        font-size: 0.75rem;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
