/* ============================================ */
/* MEEM HOMEPAGE - CORPORATE BLUE THEME */
/* Colors: #1a2a4a (Navy), #2c3e6b (Dark Blue), */
/*         #3b5998 (Corporate Blue), #4a7ab5 (Medium Blue), */
/*         #6b9fd4 (Light Blue), #4a5a7a (Slate) */
/* ============================================ */

:root {
    --corporate-navy: #1a2a4a;
    --corporate-dark-blue: #2c3e6b;
    --corporate-blue: #3b5998;
    --corporate-medium-blue: #4a7ab5;
    --corporate-light-blue: #6b9fd4;
    --corporate-slate: #4a5a7a;
    --corporate-light-gray: #f0f4f8;
    --corporate-white: #ffffff;
    
    --heading-color: #1a2a4a;
    --text-color: #4a5a7a;
    --light-color: #3b5998;
    --extra-light-color: #6b9fd4;
    --heading-font: 'Source Sans Pro', sans-serif;
    --body-font: 'Roboto', sans-serif;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #ffffff 0%, rgba(59,89,152,0.05) 40%, rgba(74,122,181,0.03) 100%);
    min-height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    background: transparent !important;
    color: #4a5a7a;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================ */
/* HEADING STYLES - Corporate Theme */
/* ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Sans Pro', sans-serif;
    color: #1a2a4a;
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    color: #4a5a7a;
    font-size: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: #3b5998;
    transition: all 0.3s ease;
}

a:hover {
    color: #1a2a4a;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== STICKY HEADER FIX ===== */
.main-content {
    padding-top: 85px;
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 70px;
    }
}

* {
    scroll-margin-top: 85px;
}

/* ============================================ */
/* CORPORATE GRADIENT ON ALL SECTIONS */
/* ============================================ */
.featured-section,
.py-5,
.testimonial-section,
.reels-section,
.faq-section,
.cta-section,
.who-we-are-section,
.section-with-bg {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* Override Bootstrap bg-light */
.bg-light {
    background: #f0f4f8 !important;
}

/* Override any white backgrounds */
section,
.section,
[class*="bg-"]:not(.bg-transparent) {
    background: rgba(255, 255, 255, 0.92) !important;
}

/* ============================================ */
/* NAVBAR - Glass Effect */
/* ============================================ */
.glass-nav {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 89, 152, 0.1);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    padding: 0.6rem 0;
    z-index: 1030;
}

.navbar-brand {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a2a4a !important;
}

.navbar-brand .text-gold {
    color: #3b5998 !important;
}

.navbar-brand img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    background: transparent !important;
}

.navbar-toggler {
    border-color: rgba(59, 89, 152, 0.2) !important;
}

.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(26,42,74,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #1a2a4a !important;
    position: relative;
    padding: 0.5rem 0 !important;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: #3b5998 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #3b5998;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.btn-outline-gold {
    border: 2px solid #3b5998 !important;
    color: #3b5998 !important;
    background: transparent !important;
    padding: 0.4rem 1.4rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-gold:hover {
    background: #3b5998 !important;
    color: #ffffff !important;
    border-color: #3b5998 !important;
    transform: translateY(-2px);
}

.text-gold {
    color: #3b5998 !important;
}

.dropdown-menu {
    background: #ffffff;
    border: 1px solid rgba(59, 89, 152, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
}

.dropdown-item {
    color: #1a2a4a !important;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(59, 89, 152, 0.08) !important;
    color: #3b5998 !important;
}

.dropdown-item.active {
    background: #3b5998 !important;
    color: #ffffff !important;
}

/* ============================================ */
/* BUTTONS - Corporate Colors */
/* ============================================ */
.btn-gold,
.btn-primary {
    background: linear-gradient(135deg, #1a2a4a 0%, #3b5998 100%) !important;
    color: #ffffff !important;
    padding: 14px 40px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 15px;
    border: none !important;
    box-shadow: 0 4px 15px rgba(59, 89, 152, 0.3);
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-gold:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #2c3e6b 0%, #4a7ab5 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 89, 152, 0.4);
}

.btn-gold-outline,
.btn-outline-primary {
    border: 2px solid #3b5998 !important;
    color: #3b5998 !important;
    background: transparent !important;
    padding: 0.5rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.btn-gold-outline:hover,
.btn-outline-primary:hover {
    background: #3b5998 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    border-color: #3b5998 !important;
}

.btn-accent,
.btn-danger {
    background: #4a7ab5 !important;
    color: #ffffff !important;
    padding: 14px 40px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 15px;
    border: none !important;
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-accent:hover,
.btn-danger:hover {
    background: #6b9fd4 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: transparent !important;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 42, 74, 0.5) 0%, rgba(44, 62, 107, 0.3) 50%, rgba(59, 89, 152, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 5vw;
    font-weight: 700;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-weight: 300;
}

/* ============================================ */
/* SECTION HEADERS - Corporate Colors */
/* ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #3b5998;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title .highlight {
    color: #4a7ab5;
}

.section-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    color: #4a5a7a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* ============================================ */
/* ECOSYSTEM CARDS - Corporate Colors */
/* ============================================ */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.ecosystem-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(59, 89, 152, 0.08);
}

.ecosystem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 89, 152, 0.1);
    border-color: #3b5998;
}

.ecosystem-icon {
    font-size: 44px;
    color: #3b5998;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.ecosystem-card:hover .ecosystem-icon {
    transform: scale(1.1);
    color: #4a7ab5;
}

.ecosystem-card h4 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 10px;
}

.ecosystem-card p {
    font-size: 14px;
    color: #4a5a7a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ecosystem-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #3b5998;
    border-radius: 4px;
    color: #3b5998;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ecosystem-card:hover .ecosystem-btn {
    background: #3b5998;
    color: #ffffff;
}

/* ============================================ */
/* PORTFOLIO - Corporate Colors */
/* ============================================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(59, 89, 152, 0.08);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 89, 152, 0.1);
    border-color: #3b5998;
}

.portfolio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.03);
}

.portfolio-content {
    padding: 20px;
}

.portfolio-content h5 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 10px;
}

.portfolio-content p {
    font-size: 14px;
    color: #4a5a7a;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ============================================ */
/* STATISTICS - Corporate Colors */
/* ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(59, 89, 152, 0.08);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 89, 152, 0.1);
    border-color: #3b5998;
}

.stat-icon {
    font-size: 40px;
    color: #3b5998;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    color: #4a7ab5;
}

.stat-number {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #3b5998;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #1a2a4a;
    margin-top: 10px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

/* ============================================ */
/* WHY CHOOSE US - Corporate Colors */
/* ============================================ */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(59, 89, 152, 0.08);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 89, 152, 0.1);
    border-color: #3b5998;
}

.glass-card .ecosystem-icon {
    font-size: 40px;
    color: #3b5998;
    margin-bottom: 15px;
}

.glass-card h4 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 10px;
}

.glass-card p {
    font-size: 14px;
    color: #4a5a7a;
    line-height: 1.6;
}

/* ============================================ */
/* PROCESS STEPS - Corporate Colors */
/* ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #3b5998;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.process-step:hover .step-circle {
    background: linear-gradient(135deg, #1a2a4a 0%, #3b5998 100%);
    border-color: #3b5998;
}

.step-circle span {
    font-size: 32px;
    font-weight: 700;
    color: #3b5998;
    transition: all 0.3s;
    font-family: 'Source Sans Pro', sans-serif;
}

.process-step:hover .step-circle span {
    color: #ffffff;
}

.process-step h5 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: #4a5a7a;
    line-height: 1.6;
}

/* ============================================ */
/* TESTIMONIALS - Corporate Colors */
/* ============================================ */
.testimonial-section {
    background: rgba(255, 255, 255, 0.92) !important;
    padding: 80px 0;
    overflow: hidden;
}

.testimonial-carousel {
    margin-top: 40px;
}

.testimonial-carousel .swiper-slide {
    height: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(59, 89, 152, 0.06);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 89, 152, 0.1);
    border-color: #3b5998;
}

.testimonial-header-area {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf4 50%, #dce3ed 100%);
    padding: 30px 20px;
    text-align: center;
    color: #1a2a4a;
}

.testimonial-name {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a5a7a;
    font-weight: 500;
}

.testimonial-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: #3b5998;
    font-size: 14px;
}

.testimonial-quote {
    font-size: 14px;
    line-height: 1.8;
    color: #4a5a7a;
    font-style: italic;
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-quote i {
    color: #3b5998;
    margin-right: 5px;
}

.testimonial-video-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    margin-top: auto;
}

.testimonial-video-wrapper video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.testimonial-video-wrapper:hover .video-play-overlay {
    background: rgba(0,0,0,0.6);
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(59, 89, 152, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    transition: transform 0.3s;
}

.testimonial-video-wrapper:hover .play-button {
    transform: scale(1.1);
    background: #3b5998;
}

/* ============================================ */
/* BLOG - Corporate Colors */
/* ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(59, 89, 152, 0.08);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 89, 152, 0.1);
    border-color: #3b5998;
}

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.03);
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 14px;
    color: #4a5a7a;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ============================================ */
/* FAQ - Corporate Colors */
/* ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: none !important;
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.accordion-button {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    font-weight: 600;
    color: #1a2a4a;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1a2a4a 0%, #3b5998 100%) !important;
    color: #ffffff !important;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: #3b5998 !important;
}

.accordion-body {
    padding: 20px;
    color: #4a5a7a;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================ */
/* NEWSLETTER - Corporate Colors */
/* ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf4 50%, #dce3ed 100%) !important;
    padding: 60px 0;
}

.newsletter-section .section-title {
    color: #1a2a4a;
}

.newsletter-section .section-desc {
    color: #4a5a7a;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(59, 89, 152, 0.15);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a2a4a;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #3b5998;
    box-shadow: 0 0 0 3px rgba(59, 89, 152, 0.08);
}

.newsletter-form input::placeholder {
    color: #999999;
}

.newsletter-form button {
    padding: 14px 30px;
    background: #3b5998;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background: #4a7ab5;
    transform: translateY(-2px);
}

/* ============================================ */
/* CTA SECTION - Corporate Colors */
/* ============================================ */
.cta-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf4 50%, #dce3ed 100%) !important;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.05rem;
    color: #4a5a7a;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-section .btn-gold {
    background: linear-gradient(135deg, #1a2a4a 0%, #3b5998 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 89, 152, 0.3);
}

.cta-section .btn-gold:hover {
    background: linear-gradient(135deg, #2c3e6b 0%, #4a7ab5 100%);
    box-shadow: 0 8px 30px rgba(59, 89, 152, 0.4);
}

/* ============================================ */
/* SWIPER - Corporate Colors */
/* ============================================ */
.swiper-pagination-bullet {
    background: #3b5998;
}

.swiper-pagination-bullet-active {
    background: #3b5998;
}

.swiper-button-next,
.swiper-button-prev {
    color: #3b5998;
}

/* ============================================ */
/* TEXT UTILITIES - Corporate Colors */
/* ============================================ */
.text-gold {
    color: #3b5998 !important;
}

.text-accent {
    color: #1a2a4a !important;
}

.text-dark-blue {
    color: #1a2a4a !important;
}

.bg-gold {
    background: #3b5998 !important;
}

.bg-accent {
    background: #1a2a4a !important;
}

.bg-dark-blue {
    background: #1a2a4a !important;
}

.border-gold {
    border-color: #3b5998 !important;
}

.text-success {
    color: #3b5998 !important;
}

.text-danger {
    color: #4a7ab5 !important;
}

/* ============================================ */
/* WHO WE ARE - Corporate Cards */
/* ============================================ */
.who-we-are-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(59, 89, 152, 0.06);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    cursor: default;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.who-we-are-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(59, 89, 152, 0.1);
    border-color: #3b5998 !important;
}

.who-we-are-card .card-icon {
    font-size: 40px;
    color: #3b5998;
    margin-bottom: 15px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.who-we-are-card:hover .card-icon {
    transform: scale(1.2);
    color: #4a7ab5;
}

.who-we-are-card .card-title {
    color: #1a2a4a;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 17px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.who-we-are-card:hover .card-title {
    color: #3b5998 !important;
}

.who-we-are-card .card-desc {
    color: #4a5a7a;
    font-size: 13px;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.who-we-are-card:hover .card-desc {
    color: #1a2a4a !important;
}

.who-we-are-card .card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59,89,152,0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.who-we-are-card:hover .card-glow {
    opacity: 1 !important;
}

.who-we-are-main-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 40px 35px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.04);
    border: 1px solid rgba(59, 89, 152, 0.06);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.who-we-are-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(59, 89, 152, 0.08);
    border-color: #3b5998 !important;
}

.who-we-are-main-card .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(59,89,152,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.who-we-are-main-card:hover .card-glow {
    opacity: 1 !important;
}

.stat-hover {
    transition: all 0.3s ease;
    cursor: default;
}

.stat-hover:hover span:first-child {
    transform: scale(1.05);
    color: #4a7ab5;
}

/* ============================================ */
/* WHATSAPP FLOAT */
/* ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s, background 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background: #128C7E;
    color: #ffffff;
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

/* ============================================ */
/* FOOTER - Corporate Colors */
/* ============================================ */
.footer {
    background: #1a2a4a;
    color: #cccccc;
    padding: 40px 0 20px;
    border-top: 3px solid #3b5998;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    max-height: 50px;
    width: auto;
    margin-bottom: 15px;
    background: transparent !important;
    display: block;
}

.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bbbbbb;
    max-width: 250px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #6b9fd4;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    font-family: 'Source Sans Pro', sans-serif;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #4a7ab5;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #6b9fd4;
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #cccccc;
}

.footer-contact i {
    color: #6b9fd4;
    font-size: 0.9rem;
    margin-top: 2px;
    min-width: 20px;
}

.footer-contact a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #6b9fd4;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: #cccccc;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #3b5998;
    color: #ffffff;
    transform: translateY(-3px);
}

.newsletter-box {
    margin-top: 15px;
}

.newsletter-text {
    font-size: 0.8rem;
    color: #aaaaaa;
    margin-bottom: 8px;
}

.footer .newsletter-form {
    display: flex;
    gap: 8px;
}

.footer .newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 0.8rem;
    outline: none;
    transition: all 0.2s;
}

.footer .newsletter-form input::placeholder {
    color: #888888;
}

.footer .newsletter-form input:focus {
    border-color: #3b5998;
}

.footer .newsletter-form button {
    background: #3b5998;
    border: none;
    border-radius: 4px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.footer .newsletter-form button:hover {
    background: #4a7ab5;
    transform: scale(1.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: #888888;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #6b9fd4;
}

.footer-dev-link {
    color: #6b9fd4;
    text-decoration: none;
    font-weight: 500;
}

.footer-dev-link:hover {
    color: #4a7ab5;
    text-decoration: underline;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */
@media (max-width: 1200px) {
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .ecosystem-grid,
    .why-choose-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 32px;
    }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 10vw;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .ecosystem-grid,
    .why-choose-grid,
    .process-grid,
    .portfolio-grid,
    .blog-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .glass-nav {
        padding: 0.4rem 0;
    }
    
    .main-content {
        padding-top: 65px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo {
        margin: 0 auto 15px;
    }
    .footer-tagline {
        margin: 0 auto;
    }
    .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-social {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .footer-contact li {
        justify-content: center;
    }
    .footer .newsletter-form {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-desc {
        font-size: 0.9rem;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .btn-gold {
        padding: 12px 28px;
        font-size: 13px;
    }
}

/* ============================================ */
/* SCROLLBAR - Corporate Colors */
/* ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f0f4f8;
}

::-webkit-scrollbar-thumb {
    background: #3b5998;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a2a4a;
}

/* ============================================ */
/* SELECTION - Corporate Colors */
/* ============================================ */
::selection {
    background: #3b5998;
    color: #ffffff;
}