/* ===================================
   CSS Variables & Global Styles
   =================================== */
:root {
    /* Brand Colors */
    --primary-blue: #003366;
    --primary-red: #E31E24;
    --accent-purple: #6B46C1;
    --accent-cyan: #0891B2;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #E5E7EB;
    --dark-gray: #6B7280;
    --charcoal: #2D3748;
    --black: #1A202C;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 60px 0;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

ul {
    list-style: none;
}

/* ===================================
   Top Bar
   =================================== */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
}

.top-bar-link:hover {
    color: var(--primary-red);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
}

/* ===================================
   Header Navigation
   =================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.logo-tagline {
    font-size: 11px;
    color: var(--dark-gray);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.4), 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Mobile CTA text control */
.header-cta .cta-mobile {
    display: none;
}

.header-cta .cta-full {
    display: inline;
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
    z-index: 2;
    padding-bottom: 40px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active .hero-content {
    opacity: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    min-height: 58px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-title.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.4));
}

.hero-text {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.6;
    min-height: 96px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

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

.hero-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.hero-prev,
.hero-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background-color: var(--primary-red);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-dot.active {
    background-color: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-in-out 1s both;
}

.scroll-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.scroll-mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    position: relative;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ===================================
   Stats Bar
   =================================== */
.stats-bar {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    padding: 60px 0;
    margin-top: -2px;
    overflow: hidden;
}

.stats-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -80px;
    animation-delay: 5s;
    animation-duration: 15s;
}

.floating-shape.shape-3 {
    width: 250px;
    height: 250px;
    bottom: -120px;
    left: 50%;
    animation-delay: 10s;
    animation-duration: 18s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(40px, 10px) rotate(270deg);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-wrapper i {
    font-size: 36px;
    color: var(--white);
    z-index: 2;
    position: relative;
    transition: transform 0.4s ease;
}

.stat-item:hover .stat-icon-wrapper i {
    transform: scale(1.2) rotate(10deg);
}

.stat-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.stat-content {
    flex: 1;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 15px;
    opacity: 0.95;
    font-weight: 500;
    margin-bottom: 12px;
}

.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.stat-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.9));
    border-radius: 10px;
    animation: progressLoad 2s ease-out forwards;
    transform-origin: left;
}

@keyframes progressLoad {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* ===================================
   Section Styles
   =================================== */
.section {
    padding: var(--section-padding);
}

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

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */
.about {
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.03) 0%, rgba(107, 70, 193, 0.03) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.content-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.about-features {
    margin-top: 35px;
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: rgba(227, 30, 36, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--primary-red);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(227, 30, 36, 0.08);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-purple) 100%);
    color: var(--white);
    font-size: 22px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-content h4 {
    font-weight: 600;
    font-size: 17px;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.about-cta {
    margin-top: 35px;
}

.about-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.about-cta .btn-primary:hover {
    gap: 15px;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover .about-image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
    pointer-events: none;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-purple));
    padding: 25px 30px;
    border-radius: 16px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 13px;
    opacity: 0.95;
    font-weight: 500;
}

.about-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
}

.decoration-circle.circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
}

.decoration-circle.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -75px;
}
}

/* ===================================
   Mission & Vision
   =================================== */
.mission-vision {
    position: relative;
    overflow: hidden;
}

.mv-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.pattern-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.1;
}

.pattern-dot:nth-child(1) {
    top: 10%;
    left: 10%;
}

.pattern-dot:nth-child(2) {
    top: 20%;
    right: 15%;
}

.pattern-dot:nth-child(3) {
    bottom: 15%;
    left: 20%;
}

.pattern-dot:nth-child(4) {
    bottom: 25%;
    right: 10%;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.mv-card {
    perspective: 1000px;
    position: relative;
}

.mv-card-inner {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    transform-style: preserve-3d;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.05) 0%, rgba(107, 70, 193, 0.05) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.mv-card:hover::before {
    opacity: 1;
}

.mv-card:hover .mv-card-inner {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.mv-card.featured .mv-card-inner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
}

.mv-card.featured .mv-title,
.mv-card.featured .mv-text {
    color: var(--white);
}

.mv-card.featured .mv-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.mv-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
    transition: all 0.4s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotateY(360deg);
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
}

.mv-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 18px;
    position: relative;
}

.mv-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.mv-decoration {
    position: relative;
    width: 60px;
    height: 3px;
    margin: 0 auto;
    margin-top: 25px;
}

.decoration-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    border-radius: 10px;
}

/* ===================================
   Services Section
   =================================== */
.services {
    position: relative;
    overflow: hidden;
}

.services-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    font-size: 80px;
    color: var(--primary-blue);
    opacity: 0.03;
    animation: floatIcon 25s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60%;
    right: 8%;
    animation-delay: 8s;
}

.floating-icon.icon-3 {
    bottom: 15%;
    left: 50%;
    animation-delay: 15s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.03;
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
        opacity: 0.05;
    }
    50% {
        transform: translate(-15px, 15px) rotate(-5deg);
        opacity: 0.04;
    }
    75% {
        transform: translate(25px, 10px) rotate(3deg);
        opacity: 0.06;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-purple) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) rotateY(5deg);
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.2);
    border-color: rgba(227, 30, 36, 0.3);
}

.service-icon-wrapper {
    position: relative;
    width: fit-content;
    margin-bottom: 25px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-purple) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(227, 30, 36, 0.4);
}

.icon-bg-circle {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.service-number {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(227, 30, 36, 0.05);
    font-family: var(--font-heading);
    line-height: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-number {
    color: rgba(227, 30, 36, 0.1);
    transform: scale(1.1);
}

/* ===================================
   Brands Section
   =================================== */
.brands-featured {
    margin-bottom: 60px;
}

.featured-brand {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    padding: 55px;
    border-radius: 24px;
    color: var(--white);
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 51, 102, 0.3);
}

.featured-brand::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.featured-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}

.featured-stats {
    display: flex;
    gap: 45px;
}

.featured-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.featured-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.featured-image img {
    width: 100%;
    height: 380px;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.featured-brand:hover .featured-image img {
    transform: scale(1.08);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.brand-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

.brand-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.brand-logo-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Brand Logo Display (for actual logos) */
.brand-logo-display {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    position: relative;
    transition: all 0.4s ease;
    padding: 20px;
}

.brand-logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.brand-card:hover .brand-logo-display {
    transform: scale(1.05);
    border-color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(0, 51, 102, 0.1);
}

.brand-card:hover .brand-logo-image {
    transform: scale(1.1);
}

.brand-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.03) 0%, rgba(227, 30, 36, 0.03) 100%);
    border-radius: 12px;
    border: 2px dashed rgba(0, 51, 102, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.brand-logo-placeholder.beverages-bg {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.08) 0%, rgba(68, 160, 141, 0.08) 100%);
    border-color: rgba(78, 205, 196, 0.3);
}

.brand-logo-placeholder.candy-bg {
    background: linear-gradient(135deg, rgba(255, 111, 145, 0.08) 0%, rgba(255, 167, 196, 0.08) 100%);
    border-color: rgba(255, 111, 145, 0.3);
}

.brand-card:hover .brand-logo-placeholder {
    transform: scale(1.05);
    border-style: solid;
}

.logo-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.brand-logo-placeholder i {
    font-size: 48px;
    color: var(--primary-blue);
    opacity: 0.4;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-logo-placeholder i {
    opacity: 0.7;
    transform: scale(1.1);
}

.placeholder-text {
    font-size: 13px;
    color: var(--dark-gray);
    opacity: 0.6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-content {
    padding: 28px;
    position: relative;
}

.brand-category-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.brand-category-badge.snacks {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: var(--white);
}

.brand-category-badge.beverages {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: var(--white);
}

.brand-category-badge.candy {
    background: linear-gradient(135deg, #FF6F91, #FFA7C4);
    color: var(--white);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
    margin-top: 8px;
}

.brand-category {
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 12px;
}

.brand-description {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.brand-footer {
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-status {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.brand-status.active {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.brand-status.active::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #16a34a;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.brands-cta {
    text-align: center;
    margin-top: 20px;
}

.brands-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ===================================
   Network Section
   =================================== */
.network {
    position: relative;
    overflow: hidden;
}

.network-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.pattern-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.1), transparent);
    animation: moveLine 15s linear infinite;
}

.pattern-line.line-1 {
    top: 20%;
    width: 60%;
    left: -60%;
}

.pattern-line.line-2 {
    top: 50%;
    width: 80%;
    left: -80%;
    animation-delay: 5s;
}

.pattern-line.line-3 {
    top: 80%;
    width: 70%;
    left: -70%;
    animation-delay: 10s;
}

@keyframes moveLine {
    to {
        left: 100%;
    }
}

.network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.network-map {
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.map-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.65) contrast(1.1);
    transition: transform 0.6s ease;
}

.map-container:hover .map-image {
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.3) 0%, rgba(107, 70, 193, 0.2) 100%);
    pointer-events: none;
}

.map-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-point {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-point:hover {
    transform: scale(1.1);
    z-index: 10;
}

.point-dot {
    display: block;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-purple) 100%);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.7);
    position: relative;
    z-index: 2;
}

.point-dot.headquarters {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: pulseHQ 2s infinite;
}

.map-point.pulse .point-dot {
    animation: pulseDot 2.5s infinite;
}

@keyframes pulseDot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(227, 30, 36, 0);
    }
}

@keyframes pulseHQ {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 18px rgba(255, 215, 0, 0);
    }
}

.point-label {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.point-info {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-purple) 100%);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    pointer-events: none;
}

.map-point:hover .point-label,
.map-point:hover .point-info {
    opacity: 1;
}

.regions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.regions-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.total-coverage {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.coverage-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.coverage-label {
    font-size: 12px;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.regions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.region-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.region-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--accent-purple) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.region-item:hover::before {
    transform: scaleY(1);
}

.region-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.region-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.region-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    background: inherit;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

.region-icon.nairobi {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.region-icon.coastal {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.region-icon.western {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.region-icon.central {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.region-icon.rift {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.region-item:hover .region-icon {
    transform: rotate(10deg) scale(1.05);
}

.region-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.region-content p {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

.region-stats {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--primary-red);
    font-weight: 600;
}

.region-stats i {
    margin-right: 5px;
}

.region-content h4 {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.region-content p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* ===================================
   Leadership Section
   =================================== */
.leadership {
    position: relative;
    overflow: hidden;
}

.leadership-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.decoration-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.03) 0%, rgba(107, 70, 193, 0.03) 100%);
}

.decoration-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.decoration-shape.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -80px;
}

.leadership-profile {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

.profile-image-wrapper {
    position: relative;
}

.profile-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.profile-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.leadership-profile:hover .profile-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 51, 102, 0.3) 100%);
    pointer-events: none;
}

.profile-badge {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-purple) 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.experience-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.exp-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 4px;
}

.exp-text {
    display: block;
    font-size: 11px;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

.profile-title {
    font-size: 18px;
    color: var(--primary-red);
    font-weight: 600;
}

.profile-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    color: var(--white);
    border-radius: 12px;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.social-link:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.3);
}

.profile-bio-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-bio {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.profile-expertise {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.05) 0%, rgba(107, 70, 193, 0.05) 100%);
    padding: 25px;
    border-radius: 16px;
}

.expertise-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 10px;
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-purple) 100%);
    color: var(--white);
    border-radius: 8px;
    font-size: 16px;
    flex-shrink: 0;
}

.profile-achievements {
    display: flex;
    gap: 25px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 500;
}

.achievement-item i {
    color: var(--primary-red);
    font-size: 18px;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    height: 350px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.testimonial-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    color: #FFC107;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-red);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 2px;
}

.author-title {
    font-size: 14px;
    color: var(--dark-gray);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-red);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dot.active {
    background-color: var(--primary-red);
    width: 25px;
    border-radius: 5px;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
}

.cta-section .btn-primary:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* ===================================
   Contact Section
   =================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.contact-data h4 {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-data p,
.contact-data a {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-data a:hover {
    color: var(--primary-red);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer .logo-name {
    color: var(--white);
}

.footer .logo-tagline {
    color: rgba(255, 255, 255, 0.8);
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-red);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-contact i {
    flex-shrink: 0;
    width: 20px;
    color: var(--primary-red);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
}

.footer-bottom-links a:hover {
    color: var(--primary-red);
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.3);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
        gap: 20px;
        margin: 0;
        z-index: 1000;
    }

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

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-content,
    .network-content,
    .contact-content,
    .featured-brand,
    .leadership-profile {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-brand {
        padding: 40px 30px;
    }

    .featured-stats {
        gap: 25px;
    }

    .stat-value {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .top-bar {
        display: none;
    }

    /* Header optimizations */
    .header {
        padding: 10px 0;
    }

    .nav {
        padding: 10px 0;
    }

    .header-cta {
        padding: 10px 20px;
        font-size: 14px;
    }

    .header-cta .cta-full {
        display: none;
    }

    .header-cta .cta-mobile {
        display: inline;
    }

    .logo-image {
        width: 42px;
        height: 42px;
    }

    .logo-name {
        font-size: 17px;
    }

    .logo-tagline {
        font-size: 10px;
    }

    .hero {
        height: 65vh;
        min-height: 450px;
        max-height: 550px;
    }
    
    .hero-slide {
        padding-top: 50px;
    }
    
    .hero-content {
        padding-bottom: 40px;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-controls {
        bottom: 70px;
        gap: 15px;
    }
    
    .hero-prev,
    .hero-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-text {
        font-size: 11px;
    }

    .scroll-mouse {
        width: 22px;
        height: 38px;
    }

    .hero-title {
        font-size: 26px;
        min-height: 60px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 16px;
        min-height: 70px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    /* Stats Bar Mobile */
    .stats-bar {
        padding: 30px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-item {
        gap: 10px;
    }

    .stat-item i {
        font-size: 28px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Section Spacing Mobile */
    .section {
        padding: 45px 0;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .section-tag {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-image {
        order: -1;
        max-height: 280px;
    }

    .content-title {
        font-size: 22px;
    }

    .content-text {
        font-size: 15px;
    }

    .feature-item {
        gap: 12px;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }

    /* Mission/Vision Cards Mobile */
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mv-card {
        padding: 25px 18px;
    }

    .mv-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .mv-title {
        font-size: 18px;
    }

    .mv-text {
        font-size: 14px;
    }

    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        padding: 28px 18px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-text {
        font-size: 14px;
    }

    .hero-text {
        font-size: 16px;
        min-height: 80px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        padding: 12px 30px;
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .content-title {
        font-size: 24px;
    }

    .mv-grid,
    .services-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .featured-title {
        font-size: 26px;
    }

    .featured-stats {
        flex-direction: column;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .profile-expertise {
        grid-template-columns: 1fr;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 16px;
    }

    /* Brands Section Mobile */
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brand-card {
        margin: 0;
    }

    .brand-logo-wrapper {
        height: 180px;
        padding: 25px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-description {
        font-size: 13px;
    }

    .featured-brand {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 20px;
    }

    .featured-title {
        font-size: 24px;
    }

    .featured-text {
        font-size: 14px;
    }

    .featured-image img {
        height: 280px;
    }

    .featured-stats {
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
    }

    .featured-stat {
        flex: 1;
        min-width: calc(50% - 6px);
    }

    .stat-value {
        font-size: 28px;
    }

    /* Leadership Section Mobile */
    .leadership-profile {
        flex-direction: column;
        gap: 25px;
    }

    .profile-image-wrapper {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .profile-image {
        width: 280px;
        height: 280px;
    }

    .profile-badge {
        padding: 12px 20px;
        font-size: 13px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
    }

    .exp-number {
        font-size: 28px;
    }

    .exp-text {
        font-size: 11px;
    }

    .profile-name {
        font-size: 26px;
    }

    .profile-title {
        font-size: 15px;
    }

    .profile-bio {
        font-size: 14px;
    }

    .expertise-title {
        font-size: 18px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .expertise-item {
        padding: 15px;
    }

    /* Network Section Mobile */
    .network-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container {
        order: -1;
    }

    .map-image {
        height: 350px;
    }

    .region-item {
        padding: 18px;
    }

    /* Testimonials Mobile */
    .testimonial-card {
        padding: 25px 18px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .client-name {
        font-size: 16px;
    }

    /* Contact Form Mobile */
    .contact-form {
        padding: 30px 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    /* Extra small mobile header */
    .header-cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    .logo-image {
        width: 38px;
        height: 38px;
    }

    .logo-name {
        font-size: 16px;
    }

    .logo-tagline {
        font-size: 9px;
    }

    .hamburger {
        width: 28px;
        height: 28px;
    }

    .hamburger span {
        height: 2px;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
        max-height: 500px;
    }
    
    .hero-slide {
        padding-top: 35px;
    }
    
    .hero-content {
        padding-bottom: 35px;
    }
    
    .hero-controls {
        bottom: 55px;
        gap: 12px;
    }
    
    .hero-prev,
    .hero-next {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .hero-dots {
        gap: 8px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-dot.active {
        width: 24px;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-text {
        font-size: 11px;
    }
    
    .scroll-mouse {
        width: 24px;
        height: 40px;
    }

    .hero-title {
        font-size: 24px;
        min-height: 58px;
        margin-bottom: 12px;
    }
    
    .hero-text {
        font-size: 15px;
        min-height: 72px;
        margin-bottom: 18px;
    }

    .section-title {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 32px;
    }

    .featured-brand {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }

    /* Additional small mobile optimizations */
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    /* Stats - single column on very small screens */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Brand cards small mobile */
    .brand-logo-wrapper {
        height: 160px;
        padding: 20px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-category {
        font-size: 13px;
    }

    .brand-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .brand-category-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* Leadership profile small mobile */
    .profile-image {
        width: 240px;
        height: 240px;
    }

    .profile-badge {
        padding: 10px 16px;
        font-size: 12px;
    }

    .experience-badge {
        width: 85px;
        height: 85px;
        right: 10px;
        bottom: 10px;
    }

    .exp-number {
        font-size: 24px;
    }

    .exp-text {
        font-size: 10px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-title {
        font-size: 14px;
    }

    .profile-bio {
        font-size: 14px;
        line-height: 1.7;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .expertise-item {
        padding: 12px;
        font-size: 13px;
    }

    /* Featured brand small mobile */
    .featured-brand {
        padding: 25px 15px;
    }

    .featured-title {
        font-size: 22px;
    }

    .featured-text {
        font-size: 13px;
    }

    .featured-image img {
        height: 240px;
    }

    .featured-stat {
        min-width: 100%;
    }

    .stat-value {
        font-size: 26px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Mission/Vision small mobile */
    .mv-card {
        padding: 22px 16px;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .mv-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .mv-text {
        font-size: 13px;
    }

    /* Services small mobile */
    .service-card {
        padding: 25px 16px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .service-title {
        font-size: 17px;
    }

    .service-text {
        font-size: 13px;
    }

    /* Network section small mobile */
    .map-image {
        height: 300px;
    }

    .region-item {
        padding: 15px;
        gap: 12px;
    }

    .region-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Contact form small mobile */
    .contact-form {
        padding: 25px 15px;
    }

    .form-control {
        padding: 12px;
        font-size: 14px;
    }

    textarea.form-control {
        min-height: 120px;
    }

    /* Footer small mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    /* Buttons small mobile */
    .btn-primary,
    .btn-outline {
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ===================================
   PREMIUM MOBILE OPTIMIZATIONS
   Section Distinctiveness & Premium Styling
   =================================== */

/* Section Separators & Visual Hierarchy */
.section {
    position: relative;
    border-bottom: 1px solid rgba(0, 51, 102, 0.08);
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    opacity: 0.5;
}

/* Premium Title Styling */
.premium-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.premium-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-purple));
    border-radius: 2px;
}

.title-accent {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Enhanced Section Tags */
.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.08), rgba(227, 30, 36, 0.08));
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-blue), var(--primary-red)) 1;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Premium Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-purple), transparent);
}

/* Our Reach Section - Premium Redesign */
.regions-header-premium {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-blue), var(--primary-red)) 1;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 51, 102, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.regions-title-wrapper {
    flex: 1;
}

.section-label-premium {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.regions-title-premium {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
}

.total-coverage-premium {
    flex-shrink: 0;
}

.coverage-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
    position: relative;
    animation: pulse-circle 3s ease-in-out infinite;
}

@keyframes pulse-circle {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 40px rgba(227, 30, 36, 0.4);
        transform: scale(1.02);
    }
}

.coverage-number-premium {
    font-size: 38px;
    font-weight: 800;
    color: white;
    line-height: 1;
    font-family: var(--font-heading);
}

.coverage-number-premium sup {
    font-size: 24px;
    font-weight: 700;
}

.coverage-label-premium {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Leadership Section - Premium CEO Photo */
.profile-image-wrapper {
    position: relative;
}

.profile-image {
    width: 450px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 51, 102, 0.2);
    border: 4px solid;
    border-image: linear-gradient(135deg, var(--primary-blue), var(--primary-red)) 1;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-badge-premium {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
    z-index: 2;
}

.profile-badge-premium i {
    font-size: 18px;
}

/* Remove old experience badge - no longer needed */
.experience-badge {
    display: none;
}

/* About Section - Fix Content Title Position */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    padding-top: 20px;
}

.content-title {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

/* Mobile Optimizations for Premium Styles */
@media (max-width: 992px) {
    .regions-header-premium {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
    }
    
    .coverage-circle {
        width: 120px;
        height: 120px;
    }
    
    .coverage-number-premium {
        font-size: 32px;
    }
    
    .regions-title-premium {
        font-size: 28px;
    }
    
    .profile-image {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    /* Section Separators */
    .section {
        padding: 50px 0;
    }
    
    .section::after {
        width: 80px;
        height: 2px;
    }
    
    /* Section Spacing for Distinctiveness */
    .section + .section {
        margin-top: 0;
    }
    
    .bg-light {
        background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    }
    
    /* Premium Titles Mobile */
    .section-tag {
        padding: 6px 16px;
        font-size: 11px;
        letter-spacing: 1.2px;
    }
    
    .section-title {
        font-size: 26px;
        padding-bottom: 10px;
    }
    
    .section-title::after {
        height: 2px;
    }
    
    .premium-title {
        font-size: 22px;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }
    
    .premium-title::before {
        width: 50px;
        height: 2px;
    }
    
    /* Our Reach Mobile */
    .regions-header-premium {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .regions-title-wrapper {
        width: 100%;
    }
    
    .regions-title-premium {
        font-size: 24px;
    }
    
    .coverage-circle {
        width: 110px;
        height: 110px;
    }
    
    .coverage-number-premium {
        font-size: 28px;
    }
    
    .coverage-number-premium sup {
        font-size: 18px;
    }
    
    .coverage-label-premium {
        font-size: 10px;
    }
    
    /* Leadership Mobile */
    .profile-image {
        width: 100%;
        max-width: 350px;
        height: 420px;
        margin: 0 auto;
    }
    
    .profile-badge-premium {
        bottom: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .profile-badge-premium i {
        font-size: 16px;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        order: 1;
        padding-top: 0;
    }
    
    .about-image {
        order: 2;
    }
}

@media (max-width: 576px) {
    /* Extra Small Mobile */
    .section {
        padding: 40px 0;
    }
    
    .section::after {
        width: 60px;
    }
    
    .section-tag {
        padding: 5px 14px;
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .premium-title {
        font-size: 20px;
    }
    
    .regions-header-premium {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .section-label-premium {
        padding: 5px 12px;
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .regions-title-premium {
        font-size: 20px;
    }
    
    .coverage-circle {
        width: 100px;
        height: 100px;
    }
    
    .coverage-number-premium {
        font-size: 24px;
    }
    
    .coverage-number-premium sup {
        font-size: 16px;
    }
    
    .coverage-label-premium {
        font-size: 9px;
    }
    
    .profile-image {
        height: 380px;
    }
    
    .profile-badge-premium {
        bottom: 15px;
        left: 15px;
        padding: 8px 16px;
        font-size: 12px;
        gap: 8px;
    }
    
    .profile-badge-premium i {
        font-size: 14px;
    }
}
