/* ============================================
   MAJORELLE CAPITAL - ADVISORY PAGE
   Complete Professional Enterprise Design
   ============================================ */

/* CSS Variables */
:root {
    /* Original advisory variables */
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
    --white: #ffffff;
    --gold: #CB9910;
    --navy-blue: #002E5F;
    --dark-navy: #060f24;

}

 .container{
    max-width: 1200px;
 }

 /* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
    height: 65vh;
    min-height: 400px;
    background: linear-gradient(rgba(10, 30, 66, 0.5), rgba(6, 15, 36, 0.7)), url('../images/advisory-majo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 46, 95, 0.3);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    color: #ffffff;
	padding-top: 65px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.page-hero p {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
/* ========================================
        NAVBAR TOGGLER - MOBILE (Navy Blue)
       ======================================== */
    .navbar-toggler {
        background-color: #0c2340 !important;
        border: 2px solid #0c2340 !important;
        padding: 0.5rem 0.75rem;
        transition: all 0.3s ease;
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus {
        background-color: #0a1e42 !important;
        border-color: #0a1e42 !important;
        box-shadow: 0 4px 12px rgba(12, 35, 64, 0.3);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        width: 1.5rem;
        height: 1.5rem;
    }

    .navbar-toggler:active {
        transform: scale(0.95);
    }

    /* Alternative: Si vous voulez un style différent */
    .navbar-toggler-custom {
        background: linear-gradient(135deg, #0c2340 0%, #0a1e42 100%);
        border: none;
        box-shadow: 0 2px 8px rgba(12, 35, 64, 0.2);
    }
/* Hero Section - Minimalist Cinema */
 

.page-hero-advisory .container {
    text-align: center;
}

.page-hero-advisory h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    line-height: 1.2;
}

/* Pillars Section */
.pillars-section {
    padding: 7rem 0;
    background: var(--light-gray);
}

body.dark-mode .pillars-section {
    background: var(--navy-blue);
}

.pillar-card {
    background: var(--dark-navy);
    padding: 3.5rem 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pillar-card.black-card {
    background: var(--dark-navy);
}

body.dark-mode .pillar-card.black-card {
    background: #1a1a1a;
}

.pillar-card::before {
    content: attr(data-number);
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 15rem;
    font-weight: 900;
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
    z-index: 1;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.02),
        rgba(0, 0, 0, 0.02) 10px,
        transparent 10px,
        transparent 20px
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar-card.black-card::before {
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.08) 10px,
        transparent 10px,
        transparent 20px
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pillar-card h3 {
    color: var(--primary-black);
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.pillar-card.black-card h3 {
    color: var(--white);
}

.pillar-card p {
    color: var(--secondary-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.pillar-card.black-card p {
    color: rgba(255, 255, 255, 0.85);
}

.pillar-card p:last-child {
    margin-top: 2rem;
    font-weight: 600;
    font-size: 0.88rem;
}

.pillar-card.black-card p:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

/* Diagonal Split Design */
.proposition-section {
    padding: 0;
    background: transparent;
    overflow: hidden;
    position: relative;
    min-height: 600px;
}

.proposition-wrapper {
    display: flex;
    align-items: stretch;
    position: relative;
    min-height: 600px;
}

.proposition-image-container {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.proposition-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.proposition-content-container {
    flex: 0 0 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 4rem 3rem 4rem 6rem;
}

body.dark-mode .proposition-content-container {
    background: var(--navy-blue);
}

.proposition-text {
    max-width: 600px;
}

.proposition-subtitle {
    color: #999;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.proposition-text h2 {
    color: #1a1a1a;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.dark-mode .proposition-text h2 {
    color: var(--white);
}

.proposition-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.proposition-list li {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 3.5rem;
    position: relative;
}

body.dark-mode .proposition-list li {
    color: #b0b0b0;
}

.proposition-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.proposition-cta {
    display: inline-flex;
    align-items: center;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1a1a1a;
}

body.dark-mode .proposition-cta {
    color: var(--white);
    border-bottom-color: var(--white);
}

.proposition-cta::after {
    content: '→';
    margin-left: 1rem;
    transition: margin-left 0.3s ease;
    font-size: 1.2rem;
}

.proposition-cta:hover::after {
    margin-left: 1.5rem;
}

/* Values Section */
.values-section {
    padding: 9rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

body.dark-mode .values-section {
    background: linear-gradient(180deg, var(--dark-navy) 0%, #050d1f 100%);
}

.values-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(203, 153, 16, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.values-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 46, 95, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--gold);
    border-radius: 50px;
}

.section-title {
    font-size: 39px;
    font-weight: 900;
    color: var(--dark-navy);
    font-family: 'Oswald';
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    margin-bottom: 60px
}

body.dark-mode .section-title {
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.value-card {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(203, 153, 16, 0.2);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

body.dark-mode .value-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(203, 153, 16, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.value-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 12px 30px rgba(0, 46, 95, 0.25);
    transition: all 0.5s ease;
}

body.dark-mode .value-icon-wrapper {
    background: linear-gradient(135deg, rgba(203, 153, 16, 0.15) 0%, rgba(203, 153, 16, 0.05) 100%);
    box-shadow: 0 12px 30px rgba(203, 153, 16, 0.2);
}


.value-icon {
    width: 36px;
    height: 36px;
    color: var(--white);
}

body.dark-mode .value-icon {
    color: var(--gold);
}

.value-content {
    position: relative;
}

.value-number {
    position: absolute;
    top: -1.5rem;
    right: 0;
    font-size: 5rem;
    font-weight: 900;
    color: #1a1a1a;
    opacity: 0.04;
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
    pointer-events: none;
}

.value-content h4 {
    color: #0a0a0a;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 1rem;
}

body.dark-mode .value-content h4 {
    color: var(--white);
}

.value-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-content h4::after {
    width: 80px;
}

.value-content p {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 0.98rem;
    margin: 0;
}

body.dark-mode .value-content p {
    color: #b0b0b0;
}

/* Partner Section - Ultra Creative Premium Design */
.partner-section {
    padding: 5rem 0 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

body.dark-mode .partner-section {
    background: var(--dark-navy);
}

/* Animated Background Shapes */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--navy-blue) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 50px) rotate(180deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.03; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.05; }
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.deco-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -40px;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -40px;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.title-word {
    display: inline-block;
    color: var(--dark-navy);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }

.title-highlight {
    display: inline-block;
    background: var(--dark-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

body.dark-mode .section-subtitle {
    color: #999;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
    from { transform: translateY(20px); }
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.partner-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid #002e5f41;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transform: translateY(-8px) rotateX(2deg);
    transform-style: preserve-3d;
    perspective: 1000px;
}

body.dark-mode .partner-card {
    background: linear-gradient(145deg, rgba(10, 20, 40, 0.9) 0%, rgba(5, 13, 31, 0.95) 100%);
    border-color: rgba(203, 153, 16, 0.25);
}

.partner-card:hover {
    transform: translateY(-16px) rotateX(0deg) scale(1.02);
    border-color: var(--navy-blue);
}

.card-number {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 8rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.05;
    line-height: 1;
    z-index: 1;
    font-family: 'Arial Black', sans-serif;
    pointer-events: none;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(203, 153, 16, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.partner-card:hover .card-glow {
    opacity: 1;
}

.partner-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    padding: 1.5rem;
    z-index: 2;
}

.image-frame {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.partner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.partner-card:hover .partner-image {
    transform: scale(1.15) rotate(2deg);
    filter: grayscale(0%);
}

.image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(203, 153, 16, 0.3) 0%, rgba(0, 46, 95, 0.3) 100%);
    mix-blend-mode: multiply;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.partner-card:hover .image-gradient {
    opacity: 1;
}

.floating-badge {
    display: none;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}



.badge-icon {
    width: 28px;
    height: 28px;
    color: white;
}

.partner-content {
    padding: 0 2.5rem 2.5rem 2.5rem;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0a0a0a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

body.dark-mode .card-title {
    color: var(--white);
}

.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    margin-bottom: 2rem;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card:hover .title-underline {
    width: 100px;
}

.partner-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.partner-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.3rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-list li:hover {
    opacity: 1;
    transform: translateX(5px);
}

.list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
    box-shadow: 0 2px 2px var(--navy-blue);
}

.list-text {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

body.dark-mode .list-text {
    color: #b0b0b0;
}

.card-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.card-footer:last-child {
    display: none;
}

body.dark-mode .card-footer {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.learn-more {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.learn-more:hover {
    transform: translateX(5px);
}

/* Industries Section */
.industries-section {
    padding: 5rem 0;
    background: var(--white);
}

body.dark-mode .industries-section {
    background: var(--navy-blue);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-gray);
    border-left: 1px solid var(--border-gray);
}

body.dark-mode .industry-grid {
    border-color: rgba(255, 255, 255, 0.08);
}

.industry-item {
    background: transparent;
    padding: 2.8rem 2.2rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border-right: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    cursor: pointer;
}

body.dark-mode .industry-item {
    border-color: rgba(255, 255, 255, 0.08);
}

.industry-item:hover {
    background: #fafafa;
}

body.dark-mode .industry-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.industry-icon {
    font-size: 2.8rem;
    color: var(--primary-black);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

body.dark-mode .industry-icon {
    color: var(--white);
}

.industry-item:hover .industry-icon {
    transform: scale(1.08);
}

.industry-item h5 {
    margin: 0;
    color: var(--primary-black);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.5;
}

body.dark-mode .industry-item h5 {
    color: var(--white);
}


/* ✅ Responsive for mobile */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem; /* smaller on tablets and phones */
        line-height: 1.2;
		padding-top: 60px;
    }
}
@media (max-width: 1024px) {
    .page-hero {
        height: 50vh;
        min-height: 350px;
        background-attachment: scroll;
    }
}
@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 300px;
        padding: 1rem;
    }
}
@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.9rem; /* even smaller for small phones */
    }
}
/* Responsive Design */
@media (max-width: 1199px) {
    .partner-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 991px) {
    .page-hero-advisory {
        height: 45vh;
        min-height: 350px;
    }

    .page-hero-advisory h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 2.3rem;
        letter-spacing: 2px;
    }

    .values-section {
        padding: 7rem 0;
    }

    .values-grid {
        gap: 2.5rem;
    }

    .value-card {
        padding: 2.5rem;
    }

    .value-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .value-icon {
        width: 32px;
        height: 32px;
    }

    .proposition-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .proposition-image-container {
        flex: 0 0 400px;
        clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    }

    .proposition-content-container {
        flex: 1;
        padding: 4rem 2rem;
    }

    .proposition-text h2 {
        font-size: 1.6rem;
    }

    .proposition-list li {
        font-size: 0.95rem;
        padding-left: 3rem;
    }

    .proposition-list li::before {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .partner-section {
        padding: 8rem 0;
    }

    .partner-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .partner-image-wrapper {
        height: 320px;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-section,
    .industries-section {
        padding: 5rem 0;
    }
}

@media (max-width: 767px) {
    .page-hero-advisory {
        height: 40vh;
        min-height: 300px;
    }

    .page-hero-advisory h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }

    .values-section {
        padding: 6rem 0;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 0.4rem 1.2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-card {
        padding: 2rem;
    }

    .value-icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 1.5rem;
    }

    .value-icon {
        width: 28px;
        height: 28px;
    }

    .value-number {
        font-size: 3.5rem;
    }

    .value-content h4 {
        font-size: 1.1rem;
    }

    .value-content p {
        font-size: 0.95rem;
    }

    .proposition-section {
        min-height: auto;
    }

    .proposition-image-container {
        flex: 0 0 300px;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }

    .proposition-content-container {
        padding: 3rem 1.5rem;
    }

    .proposition-text h2 {
        font-size: 1.4rem;
    }

    .proposition-list li {
        font-size: 0.9rem;
        padding-left: 2.8rem;
        margin-bottom: 1.2rem;
    }

    .proposition-list li::before {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .partner-section {
        padding: 6rem 0;
    }

    .partner-grid {
        gap: 2rem;
    }

    .partner-image-wrapper {
        height: 280px;
        padding: 1rem;
    }

    .partner-content {
        padding: 0 1.8rem 2rem 1.8rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .floating-badge {
        width: 48px;
        height: 48px;
        top: 2rem;
        right: 2rem;
    }

    .badge-icon {
        width: 24px;
        height: 24px;
    }

    .card-number {
        font-size: 6rem;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .pillar-card::before {
        font-size: 8rem;
        right: 10px;
    }

    .pillar-card {
        padding: 2rem;
    }
}

@media (max-width: 575px) {
    .page-hero-advisory h1 {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .values-section {
        padding: 5rem 0;
    }

    .value-card {
        padding: 1.8rem;
    }

    .value-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .value-icon {
        width: 26px;
        height: 26px;
    }

    .value-number {
        font-size: 3rem;
    }

    .value-content h4 {
        font-size: 1rem;
    }

    .value-content p {
        font-size: 0.9rem;
    }

    .proposition-image-container {
        flex: 0 0 250px;
    }

    .proposition-text h2 {
        font-size: 1.25rem;
    }

    .proposition-list li {
        font-size: 0.85rem;
        padding-left: 2.5rem;
    }

    .proposition-list li::before {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .proposition-cta {
        font-size: 0.8rem;
    }

    .partner-section {
        padding: 5rem 0;
    }

    .section-tag {
        font-size: 0.65rem;
        padding: 0.5rem 1.5rem;
    }

    .partner-image-wrapper {
        height: 240px;
    }

    .partner-content {
        padding: 0 1.5rem 1.8rem 1.5rem;
    }

    .list-text {
        font-size: 0.9rem;
    }

    .list-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .pillar-card h3 {
        font-size: 1.15rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .page-hero-advisory {
        background-attachment: scroll;
        page-break-after: always;
    }

    .partner-card,
    .pillar-card,
    .value-card {
        page-break-inside: avoid;
    }
}



/* Accessibility */
.pillar-card:focus-within,
.value-card:focus-within,
.industry-item:focus-within,
.partner-card:focus-within {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* Loading States */
.proposition-image-container img,
.partner-image {
    opacity: 0;
    animation: fadeInImage 0.6s ease-in-out forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

/* Advanced Entrance Animations */
@media (prefers-reduced-motion: no-preference) {
    .value-card {
        opacity: 0;
        transform: translateY(40px);
        animation: valueCardEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .value-card:nth-child(1) { animation-delay: 0.1s; }
    .value-card:nth-child(2) { animation-delay: 0.2s; }
    .value-card:nth-child(3) { animation-delay: 0.3s; }
    .value-card:nth-child(4) { animation-delay: 0.4s; }

    @keyframes valueCardEntrance {
        to {
            opacity: 1;
            transform: translateY(-8px);
        }
    }

    .partner-card {
        opacity: 0;
        transform: translateY(80px) rotateX(10deg);
        animation: cardEntrance 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .partner-card:nth-child(1) { animation-delay: 0.2s; }
    .partner-card:nth-child(2) { animation-delay: 0.4s; }
    .partner-card:nth-child(3) { animation-delay: 0.6s; }

    @keyframes cardEntrance {
        to {
            opacity: 1;
            transform: translateY(-8px) rotateX(2deg);
        }
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Business Lines Section */
.business-lines-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
}

.business-lines-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px
        );
    pointer-events: none;
}

.business-lines-section .section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.business-lines-section .section-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.2;
    color: var(--dark-navy);
    margin-bottom: 0;
}



.business-lines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.business-line-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.business-line-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a 0%, #666 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.business-line-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.business-line-card:hover::before {
    transform: scaleX(1);
}

.business-line-header {
    margin-bottom: 25px;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
}

.line-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.business-line-header h3 {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.3;
    color: var(--navy-blue);
    margin: 0;
}

.business-line-content {
    color: #444;
    font-size: 15px;
    line-height: 1.8;
}

.business-line-content p {
    margin-bottom: 15px;
}

.business-line-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .business-lines-section .section-title {
        font-size: 40px;
    }
    
    .business-line-card {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .business-lines-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .business-lines-section .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .business-lines-section {
        padding: 60px 0;
    }
    
    .business-lines-section .section-title {
        font-size: 28px;
    }
    
    .business-lines-section .section-header {
        margin-bottom: 40px;
    }
    
    .business-line-card {
        padding: 30px;
    }
    
    .business-line-header h3 {
        font-size: 18px;
    }
    
    .business-line-content {
        font-size: 14px;
    }
    
    .business-lines-section .section-header::after {
        width: 30px;
        height: 30px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .business-lines-section .section-title {
        font-size: 24px;
    }
    
    .business-line-card {
        padding: 25px;
    }
    
    .business-line-header h3 {
        font-size: 16px;
    }
}