/* 
===========================================
PROBIZ BPO - V5 GLAMOROUS NAVY CORPORATE
===========================================
*/

:root {
    /* Brand Colors - Anchored in Navy & White */
    --clr-navy: #0F1D4A;
    --clr-navy-light: #1A2E6B;
    --clr-navy-dark: #060B1E;
    
    /* Light Foundation */
    --clr-bg: #FFFFFF;
    --clr-surface: #F8FAFC;
    
    /* Glamorous Deep Accents */
    --clr-primary: #2563EB;   /* Royal Blue */
    --clr-accent: #38BDF8;    /* Corporate Cyan */
    --clr-gold: #D4AF37;      /* Prestige Gold */
    --clr-gold-light: #FCE181;
    --clr-purple: #4C1D95;    /* Deep Royal Purple for depth */
    --clr-teal: #0F766E;      /* Rich Teal for vibrancy */

    /* Typography */
    --clr-text-main: #111827;
    --clr-text-muted: #4B5563;
    --clr-text-white: #FFFFFF;
    --clr-text-white-muted: rgba(255,255,255,0.85);
    --font-main: 'Inter', sans-serif;
    
    /* Structure */
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 30px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    
    /* Premium Shadows & Glows */
    --shadow-soft: 0 10px 30px rgba(15, 29, 74, 0.08);
    --shadow-hover: 0 20px 40px rgba(15, 29, 74, 0.15);
    --shadow-deep: 0 25px 50px -12px rgba(15, 29, 74, 0.25);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.4);
    
    --header-height: 90px;
    --max-width: 1400px;
}

/* Global Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main);
    color: var(--clr-text-main);
    background-color: var(--clr-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; color: var(--clr-navy); }
p { font-size: 1.125rem; color: var(--clr-text-muted); margin-bottom: 24px; font-weight: 300; }
a { text-decoration: none; color: var(--clr-primary); transition: var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--border-radius-sm); }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section-padding { padding: 150px 0; }

/* Utility Classes */
.text-white { color: var(--clr-text-white) !important; }
.text-white-muted { color: var(--clr-text-white-muted) !important; }
.bg-navy { background-color: var(--clr-navy); color: var(--clr-text-white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--clr-text-white); }
.bg-navy p { color: var(--clr-text-white-muted); }
.bg-surface { background-color: var(--clr-surface); }

/* Astonishing Text Gradients & Shimmers */
.text-gradient {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-shimmer-gold {
    background: linear-gradient(90deg, var(--clr-gold) 0%, var(--clr-gold-light) 50%, var(--clr-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s linear infinite;
}
@keyframes textShimmer {
    to { background-position: 200% center; }
}

.section-title { font-size: 3.8rem; margin-bottom: 24px; position: relative; z-index: 2; line-height: 1.1; letter-spacing: -1px; }
.section-subtitle { font-size: 1.35rem; color: var(--clr-text-muted); max-width: 800px; margin-bottom: 60px; line-height: 1.6; }

/* Buttons completely revamped to Glamorous Corporate Premium */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 18px 45px; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    border-radius: 50px; /* Pillow shape for glamour */
    cursor: pointer; transition: var(--transition-smooth);
    position: relative; overflow: hidden; border: 1px solid transparent; z-index: 1;
}
.btn::after {
    content: ''; position: absolute; top: -50%; left: -60%; width: 20%; height: 200%;
    background: rgba(255,255,255,0.3); transform: rotate(30deg); transition: 0.5s; opacity: 0;
}
.btn:hover::after { left: 120%; opacity: 1; transition: 0.7s; }

.btn-primary {
    background: linear-gradient(135deg, var(--clr-navy), var(--clr-navy-light)); color: var(--clr-text-white);
    box-shadow: 0 10px 25px -5px rgba(15, 29, 74, 0.4); border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary:hover {
    transform: translateY(-4px); box-shadow: 0 15px 35px -5px rgba(15, 29, 74, 0.6); color:#fff;
}
.btn-outline {
    background: transparent; color: var(--clr-navy);
    border: 2px solid var(--clr-navy);
}
.btn-outline:hover {
    background: var(--clr-navy); color: var(--clr-text-white);
    transform: translateY(-4px); box-shadow: var(--shadow-hover);
}
.btn-gold {
    background: linear-gradient(135deg, var(--clr-gold), #b89327); color: #fff;
    box-shadow: var(--glow-gold); text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.btn-gold:hover {
    transform: translateY(-4px); box-shadow: 0 0 30px rgba(212, 175, 55, 0.6); color: #fff;
}

/* White/Navy Header */
.header {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height);
    background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(15, 29, 74, 0.05);
    z-index: 1000; display: flex; align-items: center; transition: var(--transition-smooth);
}
.header.scrolled { height: 75px; background: rgba(255, 255, 255, 0.98); box-shadow: var(--shadow-soft); }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

/* Logo sizing — slim to match nav bar proportions */
.logo img { height: 30px; width: auto; max-width: 140px; object-fit: contain; transition: var(--transition-smooth); }
.header.scrolled .logo img { height: 26px; width: auto; max-width: 120px; object-fit: contain; }

/* Right Aligned Nav */
.navbar { margin-left: auto; }
.nav-menu { display: flex; gap: 32px; align-items: center; }
.nav-link { 
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; 
    color: var(--clr-navy-light); padding: 8px 0; position: relative; transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active { color: var(--clr-gold); }
.nav-link::before {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
    background: var(--clr-gold);
    transition: var(--transition-smooth); transform: translateX(-50%);
}
.nav-link:hover::before, .nav-link.active::before { width: 100%; }

/* Language Selector */
.lang-selector { position: relative; }
.lang-btn {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--clr-navy-light); background: none; border: 1.5px solid rgba(15,29,74,0.15);
    border-radius: 6px; padding: 5px 10px; cursor: pointer; transition: var(--transition-fast);
    white-space: nowrap;
}
.lang-btn:hover { border-color: var(--clr-gold); color: var(--clr-gold); }
.lang-btn .lang-arrow { font-size: 0.6rem; transition: transform 0.2s; }
.lang-selector.open .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
    display: none; position: absolute; top: calc(100% + 10px); right: 0;
    background: #fff; border: 1px solid rgba(15,29,74,0.1);
    border-radius: 10px; box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    overflow: hidden; min-width: 150px; z-index: 200;
}
.lang-selector.open .lang-dropdown { display: block; animation: fadeInDown 0.2s ease; }
@keyframes fadeInDown { from { opacity:0; transform: translateY(-8px); } to { opacity:1; transform: translateY(0); } }
.lang-option {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; cursor: pointer; font-size: 0.85rem; font-weight: 600;
    color: var(--clr-navy); transition: background 0.15s;
}
.lang-option:hover { background: rgba(212,175,55,0.08); color: var(--clr-gold); }
.lang-option.active { background: rgba(212,175,55,0.1); color: var(--clr-gold); font-weight: 700; }
.lang-flag { font-size: 1.1rem; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
.hamburger .bar { width: 28px; height: 2px; background-color: var(--clr-navy); transition: 0.3s; }


/* HERO GLAMOUR - Astonishing Artistic Corporate Entry */
.hero-glamour {
    position: relative; min-height: 100vh; padding-top: var(--header-height);
    display: flex; align-items: center; justify-content: center;
    background-color: var(--clr-navy-dark);
    overflow: hidden;
}

/* Home Hero Custom Image Background */
.home-hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.45;
}

/* Standardized Subpage Hero */
.subpage-hero {
    padding: 220px 0 140px; position: relative; overflow: hidden;
    background-color: var(--clr-navy-dark);
}
.subpage-hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.35;
}
.subpage-hero::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(6,11,30,0.2) 0%, rgba(6,11,30,0.8) 100%);
    pointer-events: none;
}


/* The Matrix Aurora Background */
.aurora-bg {
    position: absolute; inset: -50%; z-index: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(76, 29, 149, 0.5), transparent 45%),
        radial-gradient(circle at 70% 30%, rgba(15, 29, 74, 0.8), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15), transparent 60%),
        radial-gradient(circle at 10% 20%, rgba(15, 118, 110, 0.4), transparent 40%);
    filter: blur(60px); opacity: 0.8;
    animation: aurora-shift 25s infinite alternate ease-in-out;
}
@keyframes aurora-shift {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(20deg) scale(1.15); }
}

/* Elegant Sparkle Overlay */
.sparkle-overlay {
    position: absolute; inset: 0; z-index: 1;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.3)"/></svg>');
    background-size: 60px 60px;
    animation: moveSparkles 60s linear infinite;
    opacity: 0.5;
}
@keyframes moveSparkles {
    from { background-position: 0 0; }
    to { background-position: -600px 600px; }
}

.hero-glass-panel {
    position: relative; z-index: 10;
    background: rgba(15, 29, 74, 0.4);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 80px 60px;
    max-width: 1100px; width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(20px);
    animation: heroFloatIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes heroFloatIn {
    to { transform: translateY(0); opacity: 1; }
}

.hero-glass-panel h1 {
    font-size: 5.5rem; line-height: 1.1; margin-bottom: 30px; letter-spacing: -2px; color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.hero-badge-glam {
    display: inline-block; padding: 10px 24px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
    background: linear-gradient(90deg, rgba(212,175,55,0.1), rgba(212,175,55,0.0));
    border-left: 2px solid var(--clr-gold);
    color: var(--clr-gold); margin-bottom: 30px;
}

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    width: 65px; height: 65px;
    bottom: 30px; left: 30px; /* Specific request bottom left */
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFF; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; z-index: 9999;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: float-pulse 2.5s infinite;
}
.whatsapp-float:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}
@keyframes float-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float i { margin: 0; padding: 0; line-height: 1; display:flex; margin-left: 2px; margin-top: -2px; }

/* Enhanced Corporate Cards */
.services-grid-9 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    position: relative; z-index: 20; padding-bottom: 120px;
}
.services-grid-10 {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
}
.corp-card {
    background: var(--clr-bg);
    border: 1px solid rgba(15, 29, 74, 0.05); border-radius: var(--border-radius-lg);
    padding: 50px 40px; transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    position: relative; overflow: hidden;
    z-index: 1;
}
/* Shimmer border effect on hover */
.corp-card::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0; transition: var(--transition-smooth);
}
.corp-card:hover { 
    transform: translateY(-10px); box-shadow: var(--shadow-hover); 
    border-color: rgba(212, 175, 55, 0.3); 
}
.corp-card:hover::before { opacity: 1; }
.corp-card i { font-size: 2.5rem; color: var(--clr-primary); margin-bottom: 24px; display: inline-block; transition: 0.3s; }
.corp-card:hover i { transform: scale(1.15); color: var(--clr-gold); }
.corp-card h3 { font-size: 1.6rem; margin-bottom: 16px; color: var(--clr-navy); letter-spacing: -0.5px; }
.corp-card p { font-size: 1.05rem; margin-bottom: 0; color: var(--clr-text-muted); line-height: 1.8; }

/* Sub-page Advanced Layouts (Corporate Splits) */
.feature-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 120px 0;
}
.feature-split.reversed { direction: rtl; }
.feature-split.reversed > * { direction: ltr; }
.feature-img-box {
    position: relative; border-radius: var(--border-radius-lg); overflow: hidden;
    box-shadow: var(--shadow-deep);
}
/* Glamorous Frame for images */
.feature-img-box::before {
    content: ''; position: absolute; inset: -1px; z-index: 2;
    border: 1px solid rgba(255,255,255,0.4); border-radius: var(--border-radius-lg);
    pointer-events: none;
}
.feature-img-box::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, transparent 50%, rgba(15,29,74,0.4) 100%);
    pointer-events: none;
}
.feature-img-box img { width: 100%; height: auto; object-fit: cover; transition: transform 0.8s ease; display: block; }
.feature-img-box:hover img { transform: scale(1.05); }

/* Career/About Floating Detail Cards */
.floating-metrics { display: flex; gap: 20px; margin-top: 40px; }
.metric-card {
    background: var(--clr-bg); border: 1px solid rgba(212,175,55,0.2);
    padding: 30px; border-radius: var(--border-radius-lg); flex: 1;
    text-align: center; box-shadow: var(--shadow-soft); position:relative; overflow:hidden;
}
.metric-card::before {
    content: ''; position: absolute; top:0; left:0; width:100%; height:4px;
    background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
}
.metric-card h4 { font-size: 3rem; color: var(--clr-navy); margin-bottom: 8px; font-weight: 800; }

/* Partnership Nodes - Glamour Corporate Timeline */
.partner-path { position: relative; padding: 100px 0; }
.partner-path::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, var(--clr-surface), rgba(15,29,74,0.1), var(--clr-surface));
    transform: translateX(-50%);
}
.partner-step {
    display: flex; justify-content: space-between; align-items: center; width: 100%; margin-bottom: 120px; position: relative;
}
.partner-step:nth-child(even) { flex-direction: row-reverse; }
.partner-info { width: 42%; background: var(--clr-bg); border: 1px solid rgba(15,29,74,0.05); padding: 50px; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-deep); transition:var(--transition-smooth);}
.partner-info:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.3); }
.partner-info h3 { font-size: 2.2rem; margin-bottom: 20px; color: var(--clr-navy); letter-spacing: -0.5px;}
.partner-logo-display {
    width: 42%; display: flex; justify-content: center; align-items: center;
    background: #fff; padding: 60px; border-radius: 50%; aspect-ratio: 1; box-shadow: var(--shadow-soft); border: 4px solid var(--clr-surface);
}
.partner-logo-display img { max-width: 60%; max-height: 60%; object-fit: contain; filter: grayscale(100%) opacity(0.8); transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.partner-step:hover .partner-logo-display img { filter: grayscale(0%) opacity(1); transform: scale(1.15); }
.path-node {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 28px; height: 28px; background: var(--clr-bg); border: 6px solid var(--clr-navy); border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(15, 29, 74, 0.05); z-index: 2; transition: 0.4s;
}
.partner-step:hover .path-node { background: var(--clr-gold); border-color: var(--clr-navy); transform: translate(-50%, -50%) scale(1.3); box-shadow: 0 0 20px rgba(212,175,55,0.4); }

/* Contact Form - Corporate Clean */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; padding: 80px 0; align-items: start; }
.contact-form {
    background: #fff; border: 1px solid rgba(15,29,74,0.05); padding: 50px; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-deep);
}
.form-group { margin-bottom: 24px; position: relative; }
.form-group label { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--clr-text-muted); margin-bottom: 8px; font-weight: 700; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 18px 24px; background: var(--clr-surface); border: 1px solid rgba(15,29,74,0.1);
    border-radius: var(--border-radius-sm); color: var(--clr-text-main); font-family: inherit; font-size: 1rem; transition: var(--transition-fast);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--clr-primary); background: #fff; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.map-wrap { border-radius: var(--border-radius-lg); overflow: hidden; height: 600px; border: 1px solid rgba(15,29,74,0.05); box-shadow: var(--shadow-soft); }

/* Flex aligned command directives */
.command-directive {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.command-directive i {
    color: var(--clr-primary);
    font-size: 1.5rem;
    margin-top: 3px;
    width: 30px;
}

/* Footer */
.footer {
    background: var(--clr-navy-dark); padding: 100px 0 40px; position: relative; color: var(--clr-text-white-muted);
    border-top: 5px solid var(--clr-gold);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-logo img { height: 65px; width: auto; max-width: 250px; object-fit: contain; margin-bottom: 30px; }
.footer h4 { color: #fff; font-size: 1.15rem; margin-bottom: 24px; letter-spacing: 1px; }
.footer ul { display: grid; gap: 14px; }
.footer a { color: var(--clr-text-white-muted); }
.footer a:hover { color: var(--clr-gold); }
.social-links { display: flex; gap: 15px; margin-top: 30px; }
.social-links a {
    width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05); border-radius: 50%; transition: 0.3s;
}
.social-links a:hover { background: var(--clr-gold); color: var(--clr-navy); transform: translateY(-5px); }

/* Animation Classes */
.reveal { opacity: 1; transform: translateY(0); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.animate-ready { opacity: 0; transform: translateY(50px) scale(0.96); }
.reveal.animate-ready.active { opacity: 1; transform: translateY(0) scale(1); }
.fade-in { opacity: 1; transition: 1.5s ease; }
.fade-in.animate-ready { opacity: 0; }
.fade-in.animate-ready.active { opacity: 1; }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* Continuous Breathtaking Animations */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.float-anim {
    animation: floatY 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.15); }
    50% { box-shadow: 0 0 45px rgba(212, 175, 55, 0.5); }
}
.pulse-anim {
    animation: pulseGlow 4s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes shimmyBg {
    0% { background-position: left center; }
    100% { background-position: right center; }
}
.shimmy-bg {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    animation: shimmyBg 3s linear infinite;
}

/* Beautiful Partnership Cards Redesign */
.partners-grid {
    display: flex; flex-direction: column; gap: 80px; padding: 100px 0;
}
.partner-power-card {
    display: flex; background: #fff;
    border-radius: 24px; box-shadow: 0 25px 60px rgba(15, 29, 74, 0.08);
    overflow: hidden; border: 1px solid rgba(15, 29, 74, 0.04);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.partner-power-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 80px rgba(15, 29, 74, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}
.partner-visual {
    flex: 1; min-width: 350px; background: var(--clr-surface);
    display: flex; align-items: center; justify-content: center;
    position: relative; padding: 60px;
}
.partner-visual::after {
    content: ''; position: absolute; top:0; right:0; bottom:0; width: 1px;
    background: linear-gradient(180deg, transparent, rgba(15,29,74,0.1), transparent);
}
.partner-visual img {
    max-width: 80%; max-height: 200px;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.05));
    transition: transform 0.6s ease;
}
.partner-power-card:hover .partner-visual img {
    transform: scale(1.1);
}
.partner-content {
    flex: 1.5; padding: 60px 80px; display: flex; flex-direction: column; justify-content: center;
}
.partner-content h2 { font-size: 2.6rem; color: var(--clr-navy); margin-bottom: 20px; }
.partner-content p { font-size: 1.15rem; color: var(--clr-text-muted); line-height: 1.8; margin-bottom: 0; }
.partner-power-card.reversed { flex-direction: row-reverse; }
.partner-power-card.reversed .partner-visual::after { right: auto; left: 0; }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-grid-9 { grid-template-columns: repeat(2, 1fr); }
    .services-grid-10 { grid-template-columns: 1fr; }
    .hero-glass-panel h1 { font-size: 4rem; }
    .feature-split { grid-template-columns: 1fr; gap: 40px; }
    .partner-step, .partner-step:nth-child(even) { flex-direction: column; text-align: center; }
    .partner-path::before, .path-node { display: none; }
    .partner-info, .partner-logo-display { width: 100%; margin-bottom: 20px; }
    .partner-logo-display { border-radius: var(--border-radius-sm); height: 300px; aspect-ratio: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .header { height: 80px; }
    .nav-menu {
        position: fixed; top: 0; left: -100%; width: 100%; height: 100vh;
        background: #ffffff;
        flex-direction: column; justify-content: center; transition: 0.4s; z-index: -1;
    }
    .nav-menu.active { left: 0; }
    .hamburger { display: flex; z-index: 1001; }
    .hero-glass-panel h1 { font-size: 3rem; }
    .services-grid-9 { grid-template-columns: 1fr; }
    .contact-grid, .footer-grid { grid-template-columns: 1fr; }
}
