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

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

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

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

/* Base Overrides for Dark Backgrounds */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark .section-title,
.bg-dark .section-subtitle,
.bg-dark .lead-text {
    color: #fff;
}

/* Header & Nav */
.site-header {
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: all var(--transition-fast);
}

.site-header.scrolled {
    height: 80px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo span {
    color: var(--color-secondary);
}

.main-nav ul {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.main-nav a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    position: relative;
    padding: 0.5rem 0;
    opacity: 0.8;
    transition: var(--transition-medium);
}

.main-nav a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.main-nav a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-medium);
}

.main-nav a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    padding: 0.9rem 2rem !important;
    background: var(--gradient-gold);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    box-shadow: var(--shadow-sm);
    opacity: 1 !important;
    transform: translateY(0);
}

.btn-nav:hover {
    background: var(--gradient-gold-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.mobile-nav-toggle {
    display: none;
}

/* =========================================
   HERO SECTION
   ========================================= */
/* Hero Section - Premium Light Theme (Warmth & Trust) */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F0E6 100%);
    /* Soft Cream Gradient */
    color: var(--color-primary);
    /* Navy text */
    overflow: hidden;
    margin-top: 0;
}

/* Elegant Background Patterns */
.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(197, 160, 101, 0.08) 0%, rgba(197, 160, 101, 0) 70%);
    /* Gold hint */
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: pulseSlow 12s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(26, 42, 58, 0.03) 0%, rgba(26, 42, 58, 0) 60%);
    /* Navy hint */
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(var(--color-secondary) 0.5px, transparent 0.5px),
        radial-gradient(var(--color-secondary) 0.5px, transparent 0.5px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.15;
    z-index: 1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 80px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* Content Styling */
.hero-content {
    position: relative;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-secondary);
    /* Gold */
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-eyebrow::after {
    content: '';
    height: 2px;
    width: 40px;
    background: var(--color-secondary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-primary);
    /* Navy */
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #B08D55 0%, #D4B475 100%);
    /* Darker Gold for visibility on light bg */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-right: 0.1em;
    /* Prevent clipping */
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #546E7A;
    /* Softer slate/navy for reading */
    margin-bottom: 3.5rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
    font-weight: 400;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.8rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background: var(--color-primary);
    /* Navy Button */
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #233446;
    /* Lighter Navy */
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(26, 42, 58, 0.25);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(26, 42, 58, 0.15);
}

/* Visual Cards - Light Theme Adaptation */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 0.8s;
}

.visual-card {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(26, 42, 58, 0.05);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(26, 42, 58, 0.15);
    /* Softer navy shadow */
    overflow: hidden;
}

/* Add images or gradients to cards */
.card-1 {
    width: 320px;
    height: 420px;
    top: 40px;
    left: 40px;
    z-index: 2;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.card-1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 42, 58, 0.05), transparent);
}

.card-2 {
    width: 300px;
    height: 380px;
    top: 120px;
    right: 40px;
    z-index: 1;
    background: #F0F4F8;
    /* Light blue/grey */
    border: none;
}

/* Stat Box - Light Theme */
.stat-box {
    position: absolute;
    bottom: 120px;
    left: -30px;
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(26, 42, 58, 0.15);
    border: 1px solid rgba(26, 42, 58, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    /* Gold */
    line-height: 1;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseSlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }
}

/* =========================================
   MISSION SECTION
   ========================================= */
/* Mission Section */
.mission-section {
    background-color: #fff;
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

/* Typography Utilities (Reusable) */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight-gold {
    color: var(--color-secondary);
    font-style: italic;
    font-family: var(--font-heading);
}

.section-subtitle {
    font-size: 1.15rem;
    color: #546E7A;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Grid Layout */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Mission Cards */
.mission-card {
    background: #FAFAFA;
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(26, 42, 58, 0.08);
    border-color: rgba(197, 160, 101, 0.2);
}

.card-icon {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(197, 160, 101, 0.15);
    /* Faint gold */
    margin-bottom: 1.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.mission-card:hover .card-icon {
    color: rgba(197, 160, 101, 0.4);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.mission-card p {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   STRATEGY SECTION
   ========================================= */
/* Strategy Section - Dark Theme */
.strategy-section {
    background-color: var(--color-bg-dark);
    /* Deep Navy */
    color: #fff;
    padding-top: 6rem;
    padding-bottom: 8rem;
    overflow: hidden;
}

.strategy-section .section-title {
    color: #fff;
}

.strategy-section .section-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

/* Timeline Layout */
.strategy-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
}

/* Central Line */
.strategy-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--color-secondary) 15%,
            var(--color-secondary) 85%,
            transparent 100%);
    transform: translateX(-50%);
    opacity: 0.3;
}

.strategy-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6rem;
    position: relative;
    width: 100%;
}

.strategy-step:last-child {
    margin-bottom: 0;
}

/* Step Content */
.step-content {
    width: 42%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition-medium);
    z-index: 2;
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.step-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-secondary);
    opacity: 0.3;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #fff;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Central Marker */
.step-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: var(--color-bg-dark);
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 4px rgba(26, 42, 58, 1);
    /* Spacing from line */
}

/* Step Visual (Empty boxes for now, or icons) */
.step-visual {
    width: 42%;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Specific gradients for visuals */
.visual-acquire {
    background: linear-gradient(135deg, rgba(197, 160, 101, 0.1) 0%, transparent 100%);
}

.visual-elevate {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

.visual-grow {
    background: linear-gradient(135deg, rgba(197, 160, 101, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

/* Reverse Layout for even items */
.strategy-step.reverse {
    flex-direction: row-reverse;
}

/* Text Alignment Logic */
.strategy-step .step-content {
    text-align: right;
}

.strategy-step.reverse .step-content {
    text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
    .strategy-timeline::before {
        left: 20px;
    }

    .strategy-step,
    .strategy-step.reverse {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
        margin-bottom: 4rem;
    }

    .step-marker {
        left: 20px;
        top: 0;
        transform: translate(-50%, 0);
        margin-top: 2rem;
        /* Align with content top */
    }

    .step-content {
        width: 100%;
        text-align: left !important;
        margin-bottom: 1.5rem;
    }

    .step-visual {
        width: 100%;
        height: 200px;
    }
}

/* =========================================
   SPECIALISM SECTION
   ========================================= */
.specialism-section {
    background-color: #fff;
    padding-bottom: 8rem;
}

.specialism-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.specialism-card {
    position: relative;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialism-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Backgrounds - Using abstract gradients for now, replaced by images later */
.spec-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.specialism-card:hover .spec-bg {
    transform: scale(1.05);
}

.residential-bg {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8)), linear-gradient(135deg, #a8c0ff 0%, #3f2b96 100%);
    /* Placeholder Gradient */
}

.nursing-bg {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8)), linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
    /* Placeholder Gradient */
}

.specialist-bg {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8)), linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    /* Placeholder Gradient */
}

/* Content */
.spec-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    width: 100%;
    background: linear-gradient(to top, rgba(26, 42, 58, 0.95) 0%, rgba(26, 42, 58, 0.6) 70%, transparent 100%);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.specialism-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.specialism-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
    .specialism-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .specialism-card {
        height: 350px;
    }
}

/* =========================================
   PARTNERSHIP SECTION
   ========================================= */
.partnership-section {
    background-color: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

.partnership-container {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.lead-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.partnership-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.partnership-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: var(--color-secondary);
    ;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
    position: relative;
}

.check-icon::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    width: 6px;
    height: 10px;
    border: solid var(--color-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.list-content strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.list-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Trust Visual */
.partnership-visual {
    position: relative;
    height: 500px;
    background: radial-gradient(circle at center, rgba(197, 160, 101, 0.1), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    animation: float 5s ease-in-out infinite;
}

.trust-card::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px dashed rgba(197, 160, 101, 0.3);
    border-radius: 50%;
    animation: rotateSlow 20s linear infinite;
}

.trust-stat {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.visual-deco {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {
    .partnership-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .partnership-visual {
        height: 350px;
    }

    .trust-card {
        width: 250px;
        height: 250px;
        padding: 2rem;
    }

    .trust-stat {
        font-size: 3.5rem;
    }
}

/* =========================================
   LEADERSHIP SECTION
   ========================================= */
.leadership-section {
    background-color: #fff;
    padding-bottom: 8rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.leader-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.leader-image {
    width: 100%;
    height: 320px;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

/* Abstract placeholder for people */
.leader-image.placeholder-img {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.leader-image.placeholder-img::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50% 50% 0 0;
}

.leader-image.placeholder-img::after {
    content: '';
    position: absolute;
    bottom: 145px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.leader-info {
    padding: 2rem;
    text-align: center;
}

.leader-info h3 {
    font-size: 1.35rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.leader-role {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.leader-bio p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================================
   FOOTPRINT SECTION
   ========================================= */
.footprint-section {
    position: relative;
    padding-bottom: 8rem;
}

.footprint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.location-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.location-map {
    height: 250px;
    background-color: #eef2f5;
    position: relative;
}

/* Placeholder for map images */
.map-london {
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
}

.map-europe {
    background: linear-gradient(135deg, #e6e9f0 0%, #eef1f5 100%);
}

.location-details {
    padding: 2.5rem;
}

.location-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.location-type {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.location-details address {
    font-style: normal;
    color: var(--color-text-main);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.8;
}

.location-link {
    font-weight: 600;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 2px;
}

/* =========================================
   CONTACT CTA SECTION
   ========================================= */
.contact-section {
    background-color: var(--color-bg-dark);
    text-align: center;
    position: relative;
    padding: 8rem 0;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.direct-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.direct-number {
    color: #fff;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.direct-number:hover {
    color: var(--color-secondary);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-nav ul {
    display: flex;
    gap: 2.5rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a {
    color: inherit;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.separator {
    margin: 0 0.5rem;
}

/* =========================================
   RESPONSIVE DESIGN (GLOBAL)
   ========================================= */

@media (max-width: 992px) {

    /* Global Layout Adjustments */
    .section-padding {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
        gap: 3rem;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
        /* Hide visual on smaller screens to prioritize content */
    }

    /* Mission Section */
    .mission-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Strategy Section */
    .strategy-timeline::before {
        left: 20px;
    }

    .strategy-step,
    .strategy-step.reverse {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
        margin-bottom: 4rem;
    }

    .step-marker {
        left: 20px;
        top: 0;
        transform: translate(-50%, 0);
        margin-top: 2rem;
    }

    .step-content {
        width: 100%;
        text-align: left !important;
        margin-bottom: 1.5rem;
    }

    .step-visual {
        width: 100%;
        height: 200px;
    }

    /* Specialism Section */
    .specialism-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .specialism-card {
        height: 350px;
    }

    /* Partnership Section */
    .partnership-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .partnership-visual {
        height: 350px;
    }

    .trust-card {
        width: 250px;
        height: 250px;
        padding: 2rem;
    }

    .trust-stat {
        font-size: 3.5rem;
    }

    /* Leadership Section */
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Footprint Section */
    .footprint-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    /* Mobile Navigation */
    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1100;
    }

    .mobile-nav-toggle span {
        width: 100%;
        height: 3px;
        background-color: var(--color-primary);
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: left;
    }

    .nav-open .mobile-nav-toggle span:first-child {
        transform: rotate(45deg);
    }

    .nav-open .mobile-nav-toggle span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .nav-open .mobile-nav-toggle span:last-child {
        transform: rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
    }

    .nav-open .main-nav {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .main-nav a {
        font-size: 1.5rem;
        opacity: 1;
    }

    .btn-nav {
        margin-top: 1rem;
    }

    /* Prevent scrolling when menu is open */
    body.nav-open {
        overflow: hidden;
    }
}

@media (max-width: 576px) {

    /* Mobile Fine-tuning */
    .hero-title {
        font-size: 2.5rem;
    }

    .btn {
        width: 100%;
        padding: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-card {
        width: 220px;
        height: 220px;
        padding: 1.5rem;
    }

    .trust-stat {
        font-size: 3rem;
    }
}