/* Custom Styles for Catbot */

/* Navbar Branding */
.main-header__logo {
    display: flex !important;
    align-items: center !important;
}

.main-header__logo a {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    text-decoration: none;
}

.main-header__logo img {
    height: 45px !important;
    width: auto !important;
    border-radius: 8px;
}

.brand-name {
    font-size: 1.5rem !important;
    /* Slightly larger for this font */
    font-weight: 700 !important;
    color: #ffffff !important;
    /* Force white color */
    letter-spacing: -0.5px;
    font-family: "Playwrite NZ Basic", cursive !important;
    /* New Font */
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px;
}

/* Light mode adjustment */
[data-theme="light"] .brand-name {
    color: #111111 !important;
}

/* Pochita Badge - Fluorescent style with translucent background */
.pochita-badge {
    background: rgba(0, 255, 157, 0.15) !important;
    /* Translucent background */
    border: 1.5px solid rgba(0, 255, 157, 0.8) !important;
    /* Glowing border */
    color: #00ff9d !important;
    /* Fluorescent text color */
    font-size: 0.55rem !important;
    /* Smaller size */
    font-weight: 800 !important;
    text-transform: uppercase !important;
    padding: 3px 8px !important;
    border-radius: 5px !important;
    letter-spacing: 0.8px !important;
    display: inline-block !important;
    line-height: 1 !important;
    text-shadow: 0 0 8px rgba(0, 255, 157, 0.8), 0 0 3px rgba(0, 255, 157, 0.5) !important;
    /* Glowing text */
    box-shadow: 0 0 12px rgba(0, 255, 157, 0.4), 0 0 4px rgba(0, 255, 157, 0.3), inset 0 0 8px rgba(0, 255, 157, 0.1) !important;
    /* Glowing border effect */
    animation: glow 2s infinite alternate !important;
}

@keyframes glow {
    from {
        border-color: rgba(0, 255, 157, 0.6);
        box-shadow: 0 0 8px rgba(0, 255, 157, 0.3), 0 0 3px rgba(0, 255, 157, 0.2), inset 0 0 6px rgba(0, 255, 157, 0.1);
        text-shadow: 0 0 6px rgba(0, 255, 157, 0.6), 0 0 2px rgba(0, 255, 157, 0.4);
    }

    to {
        border-color: rgba(0, 255, 157, 1);
        box-shadow: 0 0 16px rgba(0, 255, 157, 0.6), 0 0 6px rgba(0, 255, 157, 0.4), inset 0 0 10px rgba(0, 255, 157, 0.15);
        text-shadow: 0 0 10px rgba(0, 255, 157, 1), 0 0 4px rgba(0, 255, 157, 0.7);
    }
}

/* =========================================
   TYPOGRAPHY CONFIGURATION
   ========================================= */

/* Brand Name (Keep as Playwrite NZ Basic) */
.brand-name {
    font-family: "Playwrite NZ Basic", cursive !important;
}

/* Headings (H1-H6, Titles) */
h1,
h2,
h3,
h4,
h5,
h6,
.content__title,
.banner-title,
.section-title,
.pricing-header h2,
.service-card h2,
.case-study h3 {
    font-family: "Alfa Slab One", serif !important;
    font-weight: 400 !important;
    /* Alfa Slab One is usually thick/bold by default */
    letter-spacing: 0.5px;
}

/* Body Text (Paragraphs, Links, Lists, etc.) */
body,
p,
a,
li,
span,
label,
div,
.service-description,
.heading-subtitle,
.req-description,
.blog-content p {
    font-family: "Zalando Sans Expanded", sans-serif !important;
    font-weight: 400;
}

/* Specific overrides for cleaner UI elements if needed */
.btn {
    font-family: "Zalando Sans Expanded", sans-serif !important;
    font-weight: 600 !important;
}

/* Ensure logo section is visible */
.logo-dark,
.logo-light {
    display: inline-flex !important;
}

/* Service Cards Styling */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(0, 255, 157, 0.3);
}

.service-icon {
    font-size: 3rem;
    color: #00ff9d;
    margin-bottom: 20px;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Pricing Cards */
.pricing-card {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 16px;
    padding: 50px 40px;
    border: 2px solid rgba(0, 255, 157, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-icon {
    font-size: 4rem;
    color: #00ff9d;
    margin-bottom: 20px;
}

.price-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: #00ff9d;
    text-align: center;
    margin: 20px 0;
}

.price-value .currency,
.price-value .period {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.badge-setup,
.badge-monthly {
    background: rgba(0, 255, 157, 0.2);
    color: #00ff9d;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-notes {
    margin-top: 40px;
}

.note-item {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid;
}

.note-item.important {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
}

.note-item.success {
    background: rgba(0, 255, 157, 0.1);
    border-color: #00ff9d;
}

.note-item.warning {
    background: rgba(255, 87, 34, 0.1);
    border-color: #ff5722;
}

/* Requirements Cards */
.requirement-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.req-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 255, 157, 0.1);
}

.req-icon {
    font-size: 2.5rem;
    color: #00ff9d;
    margin-bottom: 20px;
}

/* Blog Cards */
.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 157, 0.3);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-category {
    background: rgba(0, 255, 157, 0.2);
    color: #00ff9d;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Form */
.contact-form-wrapper,
.contact-info-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: #00ff9d;
    box-shadow: 0 0 0 3px rgba(0, 255, 157, 0.1);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    color: #00ff9d;
    min-width: 40px;
}

/* Portfolio Case Studies */
.case-study {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-metrics {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.metric {
    text-align: center;
    background: rgba(0, 255, 157, 0.1);
    padding: 30px;
    border-radius: 12px;
    flex: 1;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ff9d;
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* General Typography */
h2,
h3,
h4 {
    color: #fff;
    margin-bottom: 15px;
}

label {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.heading-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
}

/* =========================================
   LIGHT MODE OVERRIDES
   ========================================= */

/* General Text & Headings */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] strong {
    color: #1a1a1a !important;
}

[data-theme="light"] p,
[data-theme="light"] li,
[data-theme="light"] label,
[data-theme="light"] .heading-subtitle,
[data-theme="light"] .service-description,
[data-theme="light"] .metric-label,
[data-theme="light"] .blog-meta,
[data-theme="light"] .req-description {
    color: #4a4a4a !important;
}

/* Cards Backgrounds */
[data-theme="light"] .service-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .requirement-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .contact-form-wrapper,
[data-theme="light"] .contact-info-wrapper,
[data-theme="light"] .case-study {
    background: #ffffff !important;
    border-color: #e0e0e0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Hover Effects */
[data-theme="light"] .service-card:hover,
[data-theme="light"] .blog-card:hover {
    border-color: #00bf7d !important;
    box-shadow: 0 15px 35px rgba(0, 191, 125, 0.15) !important;
}

/* Pricing Specifics */
[data-theme="light"] .price-item {
    background: #f8f9fa !important;
}

[data-theme="light"] .price-value {
    color: #00bf7d !important;
}

[data-theme="light"] .price-value .currency,
[data-theme="light"] .price-value .period {
    color: #666 !important;
}

/* Requirement Numbers */
[data-theme="light"] .req-number {
    color: rgba(0, 191, 125, 0.1) !important;
}

/* Icons & Accents (Darker Green for better contrast on white) */
[data-theme="light"] .service-icon,
[data-theme="light"] .pricing-icon,
[data-theme="light"] .req-icon,
[data-theme="light"] .info-icon,
[data-theme="light"] .blog-category,
[data-theme="light"] .badge-setup,
[data-theme="light"] .badge-monthly {
    color: #009963 !important;
    /* Darker green */
}

[data-theme="light"] .blog-category,
[data-theme="light"] .badge-setup,
[data-theme="light"] .badge-monthly {
    background: rgba(0, 255, 157, 0.15) !important;
}

/* Form Controls */
[data-theme="light"] .form-control {
    background: #f8f9fa !important;
    border-color: #d1d1d1 !important;
    color: #333 !important;
}

[data-theme="light"] .form-control:focus {
    background: #ffffff !important;
    border-color: #00bf7d !important;
    box-shadow: 0 0 0 3px rgba(0, 191, 125, 0.1) !important;
}

/* Metrics */
[data-theme="light"] .metric {
    background: rgba(0, 191, 125, 0.08) !important;
}

[data-theme="light"] .metric-value {
    color: #009963 !important;
}

/* Notes */
[data-theme="light"] .note-item {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .note-item.important {
    border-left-color: #e6ac00 !important;
    background: #fffdf5 !important;
}

[data-theme="light"] .note-item.success {
    border-left-color: #00bf7d !important;
    background: #f0fdf9 !important;
}

/* Pochita Badge - Light Mode Variant */
[data-theme="light"] .pochita-badge {
    background: rgba(0, 191, 125, 0.15) !important;
    border-color: #009963 !important;
    color: #008053 !important;
    /* Darker green for contrast */
    text-shadow: none !important;
    /* Remove glow for better readability on white */
    box-shadow: 0 0 5px rgba(0, 191, 125, 0.2) !important;
    font-weight: 900 !important;
}

/* =========================================
   MOBILE NAVBAR STICKY FIX
   ========================================= */
@media (max-width: 991px) {

    /* Force header to be sticky on mobile */
    .main-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 999999 !important;
        background: rgba(17, 17, 17, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
    }

    /* Add padding to body to prevent content hiding */
    .ms-main {
        padding-top: 90px !important;
    }

    /* Light mode variant */
    [data-theme="light"] .main-header {
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
    }

    /* Ensure logo and menu stay visible */
    .main-header__inner {
        padding: 15px 20px !important;
    }
}

/* ============================================
   Enhanced Service Cards (Pricing Page)
   ============================================ */

/* Section Title Spacing */
.section-title {
    margin-bottom: 16px !important;
}

.section-subtitle {
    margin-bottom: 48px !important;
}

.enhanced-service-card {
    background: var(--ms-bg-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    margin-bottom: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ms-primary-color), var(--ms-secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.enhanced-service-card:hover::before {
    opacity: 1;
}

/* Dark theme adjustments */
[data-theme="light"] .enhanced-service-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .enhanced-service-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Service Card Header */
.service-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ms-primary-color), var(--ms-secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card-icon i {
    font-size: 28px;
    color: #ffffff;
}

.service-card-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ms-heading-color);
    line-height: 1.3;
}

/* Service Description */
.service-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ms-text-color);
    margin-bottom: 20px;
    opacity: 0.85;
}

/* Service Features List */
.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.service-card-features li {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--ms-text-color);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .service-card-features li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-features li:last-child {
    border-bottom: none;
}

/* Service Card Footer */
.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

[data-theme="light"] .service-card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-price-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ms-primary-color);
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .enhanced-service-card {
        margin-bottom: 24px;
    }

    .service-card-header h4 {
        font-size: 1.15rem;
    }

    .service-card-icon {
        width: 48px;
        height: 48px;
    }

    .service-card-icon i {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .enhanced-service-card {
        padding: 24px 20px;
    }

    .service-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .service-card-footer .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   Pricing Card Mobile Optimization
   ============================================ */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .pricing-card {
        padding: 35px 25px;
    }

    .pricing-header {
        margin-bottom: 30px;
    }

    .pricing-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .pricing-header h2 {
        font-size: 1.75rem;
    }

    .pricing-tagline {
        font-size: 1rem;
    }

    .price-item {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .price-value .currency,
    .price-value .period {
        font-size: 1.25rem;
    }

    .pricing-notes {
        margin-top: 30px;
    }

    .note-item {
        padding: 18px;
        margin-bottom: 12px;
    }

    .note-item h4 {
        font-size: 1.1rem;
    }

    .note-item p {
        font-size: 0.9rem;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .pricing-card {
        padding: 25px 20px;
        border-width: 1px;
    }

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

    .pricing-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .pricing-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .pricing-tagline {
        font-size: 0.9rem;
    }

    /* Price Items */
    .price-item {
        padding: 20px 16px;
        margin-bottom: 20px;
    }

    .price-label {
        margin-bottom: 15px;
    }

    .price-label h3 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    /* Price Value - Stack vertically */
    .price-value {
        font-size: 2rem;
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 4px;
        margin: 15px 0;
    }

    .price-value .currency {
        font-size: 1.1rem;
    }

    .price-value .amount {
        font-size: 2rem;
    }

    .price-value .period {
        font-size: 1rem;
    }

    /* Badges */
    .badge-setup,
    .badge-monthly {
        padding: 4px 12px;
        font-size: 0.75rem;
    }

    /* Price Includes List */
    .price-includes {
        margin: 15px 0 0 0;
    }

    .price-includes li {
        font-size: 0.85rem;
        line-height: 1.6;
        padding: 6px 0;
    }

    /* Divider */
    .divider {
        margin: 25px 0;
    }

    /* Pricing Notes */
    .pricing-notes {
        margin-top: 25px;
    }

    .note-item {
        padding: 15px;
        margin-bottom: 10px;
    }

    .note-item h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .note-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* CTAs - Stack vertically */
    .pricing-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }

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

    .pricing-cta .btn--lg {
        padding: 14px 24px;
    }

    .pricing-cta .ms-btn__text {
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
    .pricing-card {
        padding: 20px 15px;
    }

    .price-value .amount {
        font-size: 1.75rem;
    }

    .pricing-header h2 {
        font-size: 1.35rem;
    }

    .note-item {
        padding: 12px;
    }

    .price-item {
        padding: 18px 14px;
    }
}

/* ============================================
   About Us / Nosotros Page
   ============================================ */

/* Founder Cards */
.founder-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.founder-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.founder-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

/* Individual positioning for each founder */
.founder-image-gutierrez {
    object-position: center 20%;
}

.founder-image-chantre {
    object-position: center top;
    object-fit: contain;
    background: #000000;
}

.founder-card:hover .founder-image {
    transform: scale(1.05);
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.ceo-badge {
    background: rgba(0, 255, 157, 0.9);
    color: #0f1419;
}

.cto-badge {
    background: rgba(0, 212, 255, 0.9);
    color: #0f1419;
}

.founder-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.founder-role {
    font-size: 1rem;
    color: #00ff9d;
    margin-bottom: 20px;
    font-weight: 600;
}

.founder-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    flex-grow: 1;
}

.founder-company {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.company-link {
    color: #00ff9d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-link:hover {
    color: #00d4ff;
}

/* Light theme adjustments */
[data-theme="light"] .founder-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .founder-card:hover {
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .founder-name {
    color: #1a1a1a;
}

[data-theme="light"] .founder-description {
    color: #4a4a4a;
}

[data-theme="light"] .founder-company {
    border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .company-label {
    color: #666666;
}

/* Ondersoft Section */
.ondersoft-card {
    background: rgba(0, 255, 157, 0.05);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 157, 0.2);
}

[data-theme="light"] .ondersoft-card {
    background: rgba(0, 255, 157, 0.08);
}

.ondersoft-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff9d 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

[data-theme="light"] .stat-label {
    color: #4a4a4a;
}

/* Mission & Vision Cards */
.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 157, 0.3);
}

[data-theme="light"] .mission-card,
[data-theme="light"] .vision-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mission-card:hover,
[data-theme="light"] .vision-card:hover {
    border-color: rgba(0, 255, 157, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .founder-image-wrapper {
        height: 320px;
    }

    .founder-content {
        padding: 25px;
    }

    .founder-name {
        font-size: 1.6rem;
    }

    .ondersoft-card {
        padding: 40px 30px;
    }

    .page-title-section h1 {
        font-size: 2.8rem !important;
    }

    .page-title-section p {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 768px) {

    /* Page title adjustments */
    .page-title-section {
        padding: 130px 0 60px !important;
    }

    .page-title-section h1 {
        font-size: 2.5rem !important;
    }

    .page-title-section p {
        font-size: 1rem !important;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 2rem !important;
    }

    .section-header p {
        font-size: 1rem !important;
    }

    /* Founder cards */
    .founder-image-wrapper {
        height: 350px;
    }

    /* Fix Chantre's image on mobile to show better */
    .founder-image-chantre {
        object-fit: cover !important;
        object-position: center 15% !important;
        background: transparent !important;
    }

    .founder-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
        bottom: 15px;
        left: 15px;
    }

    .founder-content {
        padding: 25px 20px;
    }

    .founder-name {
        font-size: 1.5rem;
    }

    .founder-role {
        font-size: 0.95rem;
    }

    .founder-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Ondersoft section */
    .ondersoft-card {
        padding: 35px 25px;
    }

    .ondersoft-card h2 {
        font-size: 1.8rem !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .ondersoft-card p {
        font-size: 1rem !important;
    }

    .ondersoft-stats {
        flex-direction: row;
        justify-content: space-between;
        margin: 25px 0;
        gap: 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Mission & Vision */
    .mission-card,
    .vision-card {
        padding: 35px 25px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 1.7rem !important;
    }

    .mission-card p,
    .vision-card p {
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {

    /* Page title */
    .page-title-section {
        padding: 110px 0 50px !important;
    }

    .page-title-section h1 {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }

    .page-title-section p {
        font-size: 0.95rem !important;
    }

    /* Section spacing */
    .team-section,
    .ondersoft-section,
    .mission-vision-section {
        padding: 50px 0 !important;
    }

    .section-header {
        margin-bottom: 40px !important;
    }

    .section-header h2 {
        font-size: 1.7rem !important;
        margin-bottom: 15px !important;
    }

    .section-header p {
        font-size: 0.95rem !important;
    }

    /* Founder cards - optimized for mobile */
    .founder-image-wrapper {
        height: 300px;
    }

    /* Both images should work well on small mobile */
    .founder-image-gutierrez {
        object-position: center 25% !important;
    }

    .founder-image-chantre {
        object-fit: cover !important;
        object-position: center 20% !important;
        background: transparent !important;
    }

    .founder-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
        bottom: 12px;
        left: 12px;
        border-radius: 15px;
    }

    .founder-content {
        padding: 20px 18px;
    }

    .founder-name {
        font-size: 1.35rem;
        margin-bottom: 8px;
    }

    .founder-role {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .founder-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .founder-company {
        padding-top: 15px;
        font-size: 0.85rem;
    }

    .company-label {
        font-size: 0.85rem;
    }

    /* Ondersoft card */
    .ondersoft-card {
        padding: 25px 18px;
    }

    .ondersoft-card h2 {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }

    .ondersoft-card p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        margin-bottom: 20px !important;
    }

    .ondersoft-stats {
        flex-direction: column;
        gap: 20px;
        margin: 25px 0;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Mission & Vision cards */
    .mission-card,
    .vision-card {
        padding: 25px 18px;
    }

    .mission-card .icon-wrapper,
    .vision-card .icon-wrapper {
        font-size: 2.5rem !important;
        margin-bottom: 20px !important;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }

    .mission-card p,
    .vision-card p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .page-title-section h1 {
        font-size: 1.75rem !important;
    }

    .founder-image-wrapper {
        height: 280px;
    }

    .founder-name {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .ondersoft-card h2 {
        font-size: 1.3rem !important;
    }
}/* Facebook Carousel Styles */
.ms-facebook-carousel {
    padding-bottom: 50px !important;
}

.ms-facebook-carousel .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ms-facebook-carousel .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 157, 0.2);
}

.ms-facebook-carousel .swiper-button-next,
.ms-facebook-carousel .swiper-button-prev {
    color: #00ff9d;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 157, 0.3);
}

.ms-facebook-carousel .swiper-button-next:after,
.ms-facebook-carousel .swiper-button-prev:after {
    font-size: 18px;
}

.ms-facebook-carousel .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.ms-facebook-carousel .swiper-pagination-bullet-active {
    background: #00ff9d;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

/* Light mode support */
[data-theme="light"] .ms-facebook-carousel .swiper-slide:hover {
    box-shadow: 0 15px 35px rgba(0, 191, 125, 0.2);
}

[data-theme="light"] .ms-facebook-carousel .swiper-button-next,
[data-theme="light"] .ms-facebook-carousel .swiper-button-prev {
    color: #00bf7d;
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 191, 125, 0.3);
}

[data-theme="light"] .ms-facebook-carousel .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .ms-facebook-carousel .swiper-pagination-bullet-active {
    background: #00bf7d;
}
/* Instagram Carousel Styles */
.ms-instagram-carousel {
    padding-bottom: 50px !important;
}

.ms-instagram-carousel .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ms-instagram-carousel .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 157, 0.2);
}

.ms-instagram-carousel .swiper-button-next,
.ms-instagram-carousel .swiper-button-prev {
    color: #00ff9d;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 157, 0.3);
}

.ms-instagram-carousel .swiper-button-next:after,
.ms-instagram-carousel .swiper-button-prev:after {
    font-size: 18px;
}

.ms-instagram-carousel .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.ms-instagram-carousel .swiper-pagination-bullet-active {
    background: #00ff9d;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

/* Light mode support */
[data-theme="light"] .ms-instagram-carousel .swiper-slide:hover {
    box-shadow: 0 15px 35px rgba(0, 191, 125, 0.2);
}

[data-theme="light"] .ms-instagram-carousel .swiper-button-next,
[data-theme="light"] .ms-instagram-carousel .swiper-button-prev {
    color: #00bf7d;
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 191, 125, 0.3);
}

[data-theme="light"] .ms-instagram-carousel .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .ms-instagram-carousel .swiper-pagination-bullet-active {
    background: #00bf7d;
}
