/* KIMA Main Website Custom Styles */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --kima-blue: #0061ff;
    --kima-blue-main: #0075ff;
    --kima-cyan: #00d4ff;
    --kima-gold: #D1B59C;
    
    /* Dark Backgrounds */
    --kima-navy-dark: #0a1929;
    --kima-navy-mid: #0f2035;
    --kima-dark: #0b1220;
    --kima-dark-alt: #080E26;
    
    /* Light Colors */
    --kima-white: #ffffff;
    --kima-light-bg: #f8f9fa;
    --kima-text-light: #EBECEF;
    --kima-text-muted: #5b667a;
}

 h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .sec-title,
        .kima-hero-headline,
        .kima-watermark-text,
        .title,
        .pillar-number-watermark,
        .process-number,
        .h6-tab-left-content .title,
        .kima-modal-header h3,
        .process-step h5,
        .modal-callout .callout-content h5,
        .testimonial-author .author-name {
            font-family: 'Libre Franklin', sans-serif !important;
        }

        /* Apply Lato to everything else */
        body,
        p,
        span,
        a,
        li,
        div,
        .kima-hero-description,
        .kima-subquote-text,
        .desc,
        .feature-content .desc,
        .contact-details,
        .inquiry-list,
        .response-time,
        .h6-tab-right .mission,
        .team-expertise-areas,
        .testimonial-text,
        .modal-subtitle {
            font-family: 'Lato', sans-serif !important;
        }

        /* Header positioning */
        .tj-header-area.header-absolute {
            position: relative !important;
        }

        /* Hero section - COMPLETE OVERHAUL */
        .kima-main-hero-section {
            min-height: auto !important;
            padding: 0 !important;
            margin: 0 !important;
            display: flex !important;
            align-items: flex-end !important;
        }

        .kima-main-hero-section .container {
            max-width: 100% !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        .kima-hero-dual-container {
            padding: 60px 2rem 0 !important;
            margin: 0 !important;
            align-items: flex-end !important;
            gap: 2rem !important;
        }

        .kima-hero-content-wrapper {
            padding-bottom: 0 !important;
            margin-bottom: 40px !important;
        }

        .kima-hero-image-wrapper {
            margin: 0 !important;
            padding: 0 !important;
            display: flex !important;
            align-items: flex-end !important;
            line-height: 0 !important;
        }

        .kima-hero-professional-image {
            margin: 0 !important;
            padding: 0 !important;
            display: block !important;
            width: 100% !important;
            max-width: none !important;
            min-height: auto !important;
            height: auto !important;
            object-fit: contain !important;
            object-position: bottom center !important;
            transform: scale(1.9) !important;
            transform-origin: bottom center !important;
        }

        /* Mobile: images side by side with overlap */
        @media (max-width: 768px) {
            .kima-main-hero-section {
                padding: 0 !important;
            }

            .kima-hero-bg-container {
                padding-top: 20px;
            }

            .kima-hero-dual-container {
                grid-template-columns: 1fr 1fr !important;
                gap: 0 !important;
                padding: 20px 1rem 0 !important;
            }

            .kima-hero-content-wrapper {
                grid-column: 1 / -1 !important;
                order: 1 !important;
                margin-bottom: 30px !important;
                text-align: center;
            }

            .kima-hero-left {
                grid-column: 1 !important;
                order: 2 !important;
                justify-content: flex-end !important;
                margin-right: -30px !important;
                z-index: 2 !important;
            }

            .kima-hero-right {
                grid-column: 2 !important;
                order: 3 !important;
                justify-content: flex-start !important;
                margin-left: -30px !important;
                z-index: 1 !important;
            }

            .kima-hero-professional-image {
                transform: scale(1.8) !important;
            }

            .kima-hero-cta-buttons {
                justify-content: center !important;
            }

            .kima-hero-description {
                margin-left: auto !important;
                margin-right: auto !important;
            }
        }

        @media (max-width: 576px) {
            .kima-hero-professional-image {
                transform: scale(1.6) !important;
            }

            .kima-hero-left {
                margin-right: -25px !important;
            }

            .kima-hero-right {
                margin-left: -25px !important;
            }
        }

        /* Dark section styling with gradient background matching hero */
        .kima-dark-section {
            background: linear-gradient(135deg, #0a1929 0%, #0f2035 50%, #0a1929 100%);
            position: relative;
        }

        .kima-dark-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(to bottom, transparent 0%, transparent 20%, rgba(255, 255, 255, 0.02) 20%, rgba(255, 255, 255, 0.02) 80%, transparent 80%);
            opacity: 0.5;
            pointer-events: none;
        }

        .kima-dark-section .sec-title,
        .kima-dark-section .title,
        .kima-dark-section h2,
        .kima-dark-section h3,
        .kima-dark-section h4,
        .kima-dark-section h5 {
            color: #ffffff !important;
        }

        .kima-dark-section .sub-title {
            color: #6c757d !important;
        }

        .kima-dark-section .desc,
        .kima-dark-section p {
            color: #EBECEF !important;
        }

        .kima-dark-section .service-style-3 {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 30px;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .kima-dark-section .service-style-3:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(0, 117, 255, 0.3);
            transform: translateY(-5px);
        }

        .kima-dark-section .service-icon {
            color: #ffffff;
            font-size: 48px;
            margin-bottom: 20px;
        }

        .kima-dark-section .service-icon i {
            color: #599eff;
        }

        /* Contact section dark mode styling */
        .kima-dark-section .tj-contact-wrapper {
            background: rgba(255, 255, 255, 0.03) !important;
            border: 1px solid rgba(255, 255, 255, 0.08) !important;
        }

        .kima-dark-section .contact-icon {
            background: rgba(89, 158, 255, 0.15) !important;
            color: #599eff !important;
        }

        .kima-dark-section .contact-details a {
            color: #ffffff !important;
        }

        .kima-dark-section .contact-details a:hover {
            color: #599eff !important;
        }

        .kima-dark-section .contact-details .label {
            color: #6c757d !important;
        }

        .kima-dark-section .inquiry-list li {
            color: #EBECEF !important;
            border-bottom-color: rgba(255, 255, 255, 0.08) !important;
        }

        .kima-dark-section .response-time {
            color: #EBECEF !important;
        }

        .kima-dark-section .response-time i {
            color: #599eff !important;
        }

        /* Fix hover state for service items - prevent expansion and disappearing */
        .service-style-3 {
            height: auto;
        }

        .service-style-3 .desc {
            opacity: 1 !important;
            visibility: visible !important;
            max-height: none !important;
            transition: none !important;
        }

        .service-style-3:hover .desc {
            opacity: 1 !important;
            visibility: visible !important;
        }

        .service-style-3:hover {
            transform: translateY(-5px) !important;
        }

        /* Ensure proper icon display in feature items */
        .feature-icon-inner i {
            font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free' !important;
            font-weight: 900;
            font-style: normal;
            font-size: 48px;
        }

        /* Fix CTA button icons */
        .btn_icon,
        .btn_icon span {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn_icon i,
        .tj-primary-btn i {
            font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free' !important;
            font-weight: 900;
            font-style: normal;
        }

        /* Ensure button icons are visible */
        .btn-icon i {
            display: inline-block;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            line-height: 1;
        }

        /* Fix modal icons */
        .kima-modal-header i,
        .modal-process-section i,
        .process-step i,
        .step-icon i {
            display: inline-block;
            font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free' !important;
            font-weight: 900;
            font-style: normal;
        }

        .step-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0075ff 0%, #599eff 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .step-icon i {
            color: #ffffff;
            font-size: 24px;
        }

        /* Fix testimonial quote icon */
        .quote-icon i,
        .testimonial-content .quote-icon i {
            font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free' !important;
            font-weight: 900;
        }

        /* Fix contact icons */
        .contact-icon i,
        .response-time i {
            font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free' !important;
            font-weight: 900;
        }

/* ===== HERO SECTION (Modern Split Layout) ===== */
.kima-main-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1929 0%, #0f2035 50%, #0a1929 100%);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px 0 0;
}

/* Large Background Watermark Text */
.kima-hero-bg-text {
    padding: 35px;
    font-size: clamp(4rem, 14vw, 11rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    z-index: 1;
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.02em;
    line-height: 1;
    font-family: 'Fraunces', serif;
}

.kima-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Dual Professional Layout Container */
.kima-hero-dual-container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: flex-end;
    animation: fadeInBg 1.2s ease-out;
}

@keyframes fadeInBg {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Professional Images (Both Sides) */
.kima-hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.kima-hero-left {
    animation: fadeInLeft 0.9s ease-out 0.2s both;
}

.kima-hero-right {
    animation: fadeInRight 0.9s ease-out 0.2s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.kima-hero-professional-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 25px 70px rgba(0, 0, 0, 0.7));
}

/* Content Area (Right Side) */
.kima-hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
    animation: fadeInUp 0.9s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kima-hero-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -0.025em;
}

.kima-hero-headline span {
    background: linear-gradient(135deg, #0075ff 0%, #599eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kima-hero-description {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.125rem;
    color: #EBECEF;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.kima-hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Modern CTA Button System */
.kima-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: 'Epilogue', sans-serif;
    border: none;
    cursor: pointer;
}

.kima-cta-primary {
    background: linear-gradient(135deg, #0075ff 0%, #599eff 100%);
    color: #fff;
    box-shadow: 0 12px 32px rgba(0, 117, 255, 0.4);
}

.kima-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 117, 255, 0.5);
}

.kima-cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.kima-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

.kima-hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(209, 181, 156, 0.1);
    border: 1px solid rgba(209, 181, 156, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.kima-hero-trust-badge .badge-icon {
    color: #D1B59C;
    font-size: 1.2rem;
}

.kima-hero-trust-badge .badge-text {
    font-family: 'Epilogue', sans-serif;
    font-size: 0.9rem;
    color: #EBECEF;
}

/* ===== PHILOSOPHY SECTION ===== */
.kima-philosophy-v2 {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.kima-philosophy-quote {
    text-align: center;
    /* max-width: 1000px; */
    margin: 0 auto 10px;
    position: relative;
}

.kima-quote-icon {
    font-size: 4rem;
    color: rgba(0, 97, 255, 0.12);
    margin-bottom: 14px;
    animation: fadeInUp 0.9s ease-out both;
}

.kima-watermark-text {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.3;
    background: linear-gradient(135deg, #0a1929 0%, #0075ff 50%, #599eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.kima-philosophy-subquote {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.kima-subquote-text {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.125rem;
    color: #5b667a;
    line-height: 1.8;
    font-style: italic;
}

/* ===== FOUR PILLARS SECTION (Premium Enhanced) ===== */
.kima-four-pillars {
    background: linear-gradient(135deg, rgba(15, 39, 71, 0.92) 0%, rgba(26, 58, 92, 0.92) 50%, rgba(15, 39, 71, 0.92) 100%),
                url('../images/bg/kima-pillars-section-bg.webp.png') center center / cover;
    position: relative;
    overflow: hidden;
}

.kima-four-pillars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to bottom, transparent 0%, transparent 20%, rgba(255,255,255,0.03) 20%, rgba(255,255,255,0.03) 80%, transparent 80%),
        repeating-linear-gradient(90deg, rgba(0, 97, 255, 0.04) 0px, transparent 2px, transparent 100px);
    opacity: 0.6;
    pointer-events: none;
}

.kima-four-pillars .sec-heading .sub-title {
    color: #D1B59C;
}

.kima-four-pillars .sec-heading .sec-title {
    color: #ffffff;
}

.kima-four-pillars .desc {
    color: #EBECEF;
}

/* Premium Pillar Cards */
.kima-pillar-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px 30px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25),
                0 4px 12px rgba(0, 97, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    /* Beveled edges */
    clip-path: polygon(
        12px 0, calc(100% - 12px) 0, 100% 12px,
        100% calc(100% - 12px), calc(100% - 12px) 100%,
        12px 100%, 0 calc(100% - 12px), 0 12px
    );
}

/* Large Number Watermark */
.pillar-number-watermark {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 6rem;
    font-weight: 900;
    font-family: 'Fraunces', serif;
    color: rgba(0, 97, 255, 0.08);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

/* Animated Gradient Border */
.kima-pillar-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0061ff 0%, #00d4ff 50%, #D1B59C 100%);
    background-size: 200% 200%;
    z-index: -1;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderShift 4s linear infinite;
    animation-play-state: paused;
}

@keyframes borderShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.kima-pillar-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.kima-pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35),
                0 8px 24px rgba(0, 97, 255, 0.4),
                0 0 40px rgba(0, 212, 255, 0.3);
}

/* Icon Enhancement */
.kima-pillar-card .service-icon {
    position: relative;
    z-index: 2;
}

.kima-pillar-card .service-icon span {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0075ff 0%, #599eff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(0, 117, 255, 0.4);
}

.service-style-5 {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-style-5[data-modal] {
    cursor: pointer;
}

/* ===== WHY KIMA SECTION ===== */
.kima-why-section {
    background: #ffffff;
}

.feature-item.style-4 {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #e9ecef;
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-item.style-4:hover {
    border-color: #0075ff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12),
                0 4px 12px rgba(0, 117, 255, 0.15);
    transform: translateY(-8px);
}

.feature-item.style-4 .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0075ff 0%, #599eff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 117, 255, 0.3);
    transition: all 0.35s ease;
}

.feature-item.style-4:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 117, 255, 0.4);
}

.feature-item.style-4 .feature-icon-inner {
    color: #ffffff;
    font-size: 2rem;
}

.feature-item.style-4 .title {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0b1220;
    margin-bottom: 15px;
}

.feature-item.style-4 .desc p {
    font-family: 'Epilogue', sans-serif;
    font-size: 1rem;
    color: #5b667a;
    line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.tj-process-section {
    background: linear-gradient(135deg, #0a1929 0%, #0f2035 50%, #0a1929 100%);
    color: #ffffff;
    position: relative;
}

.tj-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to bottom, transparent 0%, transparent 20%, rgba(255,255,255,0.02) 20%, rgba(255,255,255,0.02) 80%, transparent 80%);
    opacity: 0.5;
    pointer-events: none;
}

.tj-process-left .sec-heading .sub-title {
    color: #D1B59C;
}

.tj-process-left .sec-heading .sec-title {
    color: #ffffff;
}

.tj-process-left .desc p {
    color: #EBECEF;
}

.tj-process-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 117, 255, 0.3);
    transform: translateX(12px);
}

.process-number {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0075ff 0%, #599eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 80px;
    opacity: 0.7;
}

.process-content .title {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.process-content .desc p {
    font-family: 'Epilogue', sans-serif;
    font-size: 1rem;
    color: #EBECEF;
    line-height: 1.7;
}

/* ===== TEAM SECTION ===== */
.kima-team-section {
    background: #f8f9fa;
}

.h6-team-wrapper {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.h6-tabs {
    padding: 30px;
    background: linear-gradient(135deg, #0a1929 0%, #0f2035 100%);
}

.h6-tab {
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
}

.h6-tab:hover {
    opacity: 0.8;
}

.h6-tab.active {
    opacity: 1;
}

.h6-tab-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.h6-tab:hover .h6-tab-image {
    transform: scale(1.05);
}

.h6-tab.active .h6-tab-image {
    border-color: #D1B59C;
    box-shadow: 0 12px 32px rgba(209, 181, 156, 0.4);
}

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

.h6-tab-content {
    display: none;
    padding: 50px;
    animation: fadeInUp 0.5s ease-out;
}

.h6-tab-content.active {
    display: block;
}

.h6-tab-info {
    display: flex;
    gap: 40px;
}

.h6-tab-left {
    flex: 0 0 300px;
}

.h6-tab-left-content .title {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #0b1220;
    margin-bottom: 10px;
}

.h6-tab-left-content .sub-title {
    font-family: 'Epilogue', sans-serif;
    font-size: 1rem;
    color: #0075ff;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.h6-tab-left-content .tj-socials ul {
    display: flex;
    gap: 15px;
}

.h6-tab-left-content .tj-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0075ff 0%, #599eff 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.h6-tab-left-content .tj-socials a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 117, 255, 0.4);
}

.h6-tab-right {
    flex: 1;
}

.h6-tab-right .mission {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.125rem;
    color: #5b667a;
    line-height: 1.7;
    margin-bottom: 30px;
}

.team-expertise-areas ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.team-expertise-areas li {
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 117, 255, 0.08) 0%, rgba(89, 158, 255, 0.08) 100%);
    border: 1px solid rgba(0, 117, 255, 0.15);
    border-radius: 50px;
    font-family: 'Epilogue', sans-serif;
    font-size: 0.9rem;
    color: #0b1220;
    font-weight: 500;
    transition: all 0.3s ease;
}

.team-expertise-areas li:hover {
    background: linear-gradient(135deg, rgba(0, 117, 255, 0.12) 0%, rgba(89, 158, 255, 0.12) 100%);
    border-color: rgba(0, 117, 255, 0.3);
}

/* Contact Section */
.tj-contact-section {
    background: linear-gradient(135deg, #080E26 0%, #091231 100%);
    color: #ffffff;
}

.tj-contact-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tj-contact-content {
    text-align: center;
    margin-bottom: 50px;
}

.tj-contact-content .sec-heading .sub-title {
    color: #D1B59C;
}

.tj-contact-content .sec-heading .sec-title {
    color: #ffffff;
}

.tj-contact-content .desc p {
    color: #EBECEF;
}

.tj-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h4,
.contact-inquiry h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(209, 181, 156, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1B59C;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details .label {
    display: block;
    font-family: 'Epilogue', sans-serif;
    font-size: 0.875rem;
    color: #555555;
    margin-bottom: 5px;
}

.contact-details a {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.125rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #D1B59C;
}

.inquiry-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.inquiry-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Epilogue', sans-serif;
    font-size: 1rem;
    color: #EBECEF;
}

.inquiry-list li:last-child {
    border-bottom: none;
}

.contact-cta {
    margin-bottom: 20px;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Epilogue', sans-serif;
    font-size: 0.875rem;
    color: #AFCBF8;
}

.response-time i {
    font-size: 1rem;
}

.footer-menu-links{
    list-style-type: none;
}

.footer-menu-links li{
    margin-bottom: 4px;
}

/* Footer */
.tj-footer-area {
    background: #080E26;
    color: #ffffff;
    padding: 0;
}

.tj-footer-about .tj-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.tj-footer-about .tj-logo img {
    max-height: 50px;
}

.tj-footer-about p {
    font-family: 'Epilogue', sans-serif;
    font-size: 0.9rem;
    color: #EBECEF;
    line-height: 1.6;
}

.tj-footer-widget {
    margin-bottom: 30px;
}

.tj-footer-widget .widget-title {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
}

.tj-footer-widget .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tj-footer-widget .footer-links li {
    margin-bottom: 12px;
}

.tj-footer-widget .footer-links a {
    font-family: 'Epilogue', sans-serif;
    font-size: 0.9rem;
    color: #EBECEF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tj-footer-widget .footer-links a:hover {
    color: #D1B59C;
}

.tj-footer-widget .tj-socials ul {
    display: flex;
    gap: 15px;
}

.tj-footer-widget .tj-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tj-footer-widget .tj-socials a:hover {
    background: #D1B59C;
}

.tj-footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tj-footer-bottom .copyright p {
    font-family: 'Epilogue', sans-serif;
    font-size: 0.875rem;
    color: #EBECEF;
    text-align: center;
}

/* Modal Styles */
.kima-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 14, 38, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.kima-modal-overlay.active {
    display: flex;
}

.kima-modal {
    background: #ffffff;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kima-modal-large {
    max-width: 900px;
}

.kima-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid #e9ecef;
}

.kima-modal-header h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #0b1220;
    margin: 0;
}

.kima-modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #5b667a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kima-modal-close:hover {
    background: #080E26;
    color: #ffffff;
}

.kima-modal-body {
    padding: 40px;
}

.modal-subtitle {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.125rem;
    color: #5b667a;
    margin-bottom: 30px;
}

.modal-process-section {
    margin-bottom: 40px;
}

.modal-process-section h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0b1220;
    margin-bottom: 25px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #080E26 0%, #091231 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1B59C;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.process-step h5 {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0b1220;
    margin-bottom: 10px;
}

.process-step p {
    font-family: 'Epilogue', sans-serif;
    font-size: 1rem;
    color: #5b667a;
    line-height: 1.6;
}

.modal-testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
}

.modal-testimonial .quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(209, 181, 156, 0.3);
}

.modal-testimonial blockquote {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.125rem;
    color: #0b1220;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 20px;
    padding-right: 40px;
}

.modal-testimonial cite {
    font-family: 'Epilogue', sans-serif;
    font-size: 0.9rem;
    color: #5b667a;
    font-style: normal;
}

.modal-deliverables h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0b1220;
    margin-bottom: 25px;
}

.check-list-one ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list-one li {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    font-family: 'Epilogue', sans-serif;
    font-size: 1rem;
    color: #0b1220;
    line-height: 1.6;
}

.check-list-one li:last-child {
    border-bottom: none;
}

.check-list-one i {
    color: #D1B59C;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-callout {
    background: linear-gradient(135deg, rgba(209, 181, 156, 0.1) 0%, rgba(175, 203, 248, 0.1) 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.modal-callout .callout-icon {
    width: 50px;
    height: 50px;
    background: #080E26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1B59C;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.modal-callout .callout-content h5 {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0b1220;
    margin-bottom: 10px;
}

.modal-callout .callout-content p {
    font-family: 'Epilogue', sans-serif;
    font-size: 1rem;
    color: #5b667a;
    line-height: 1.6;
}

.modal-cta {
    text-align: center;
}

/* Global Representative */
.global-representative {
    margin-top: 40px;
}

.global-representative p {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.125rem;
    color: #5b667a;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== TESTIMONIAL SECTION ===== */
.tj-testimonial-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.tj-testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12),
                0 4px 12px rgba(0, 97, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0075ff 0%, #599eff 50%, #D1B59C 100%);
}

.testimonial-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial-content .quote-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #0075ff 0%, #599eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 25px;
}

.testimonial-text {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.25rem;
    color: #0b1220;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 35px;
    font-weight: 400;
}

.testimonial-author {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.testimonial-author .author-name {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0b1220;
    margin-bottom: 5px;
}

.testimonial-author .author-company {
    font-family: 'Epilogue', sans-serif;
    font-size: 0.95rem;
    color: #0075ff;
    font-weight: 500;
}

/* ===== RESPONSIVE STYLES ===== */

/* Large Desktops and above */
@media (max-width: 1400px) {
    .kima-hero-v2-container {
        max-width: 1200px;
    }
}

/* Laptop/Tablet Large */
@media (max-width: 1200px) {
    .kima-hero-v2-container {
        gap: 2rem;
        padding: 0 1.5rem 3rem;
    }
    
    .kima-hero-professional-image {
        min-height: 600px;
        max-width: 480px;
    }
    
    .kima-hero-bg-text {
        font-size: clamp(3rem, 12vw, 9rem);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .kima-hero-dual-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 2rem;
        padding: 2rem 1.5rem 3rem;
        align-items: center;
    }
    
    .kima-hero-content-wrapper {
        order: 1;
        padding-bottom: 0;
        text-align: center;
    }
    
    .kima-hero-left {
        order: 2;
    }
    
    .kima-hero-right {
        order: 3;
    }
    
    .kima-hero-image-wrapper {
        text-align: center;
    }
    
    .kima-hero-professional-image {
        max-width: 350px;
        min-height: 480px;
    }
    
    .kima-hero-description {
        max-width: 100%;
    }
    
    .kima-hero-cta-buttons {
        justify-content: center;
    }
    
    .kima-main-hero-section {
        min-height: auto;
        padding: 60px 0 40px;
    }
    
    .pillar-number-watermark {
        font-size: 3rem;
        top: 10px;
        right: 10px;
    }
    
    .h6-tab-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .h6-tab-left {
        flex: 0 0 auto;
    }
    
    .tj-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .kima-hero-bg-text {
        font-size: clamp(2.5rem, 10vw, 6rem);
    }
    
    /* Mobile: Show images side-by-side below content */
    .kima-hero-dual-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    
    .kima-hero-content-wrapper {
        grid-column: 1 / -1;
        order: 1;
    }
    
    .kima-hero-left {
        grid-column: 1;
        order: 2;
    }
    
    .kima-hero-right {
        grid-column: 2;
        order: 3;
    }
    
    .kima-hero-professional-image {
        max-width: 280px;
        min-height: 380px;
    }
    
    .kima-hero-headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .kima-hero-description {
        font-size: 1rem;
    }
    
    .kima-hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .kima-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .kima-watermark-text {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
    
    .kima-quote-icon {
        font-size: 3rem;
    }
    
    .kima-subquote-text {
        font-size: 1rem;
    }
    
    .kima-pillar-card {
        padding: 30px 25px;
    }
    
    .pillar-number-watermark {
        font-size: 3.5rem;
    }
    
    .h6-tabs {
        padding: 20px;
    }
    
    .h6-tab-image {
        width: 80px;
        height: 80px;
    }
    
    .h6-tab-content {
        padding: 30px 20px;
    }
    
    .h6-tab-left-content .title {
        font-size: 1.5rem;
    }
    
    .tj-contact-wrapper {
        padding: 30px 20px;
    }
    
    .kima-modal {
        max-height: 95vh;
    }
    
    .kima-modal-header {
        padding: 20px;
    }
    
    .kima-modal-body {
        padding: 20px;
    }
    
    .process-steps {
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
}

/* Mobile Small */
@media (max-width: 576px) {
    .kima-main-hero-section {
        padding: 60px 0 40px;
    }
    
    .kima-hero-v2-container {
        padding: 1rem 1rem 2rem;
    }
    
    .kima-hero-professional-image {
        max-width: 280px;
        min-height: 360px;
    }
    
    .kima-hero-trust-badge {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .kima-cta-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .feature-item.style-4 {
        padding: 30px 20px;
    }
    
    .kima-pillar-card {
        padding: 25px 20px;
    }
    
    .pillar-number-watermark {
        font-size: 3rem;
        top: 10px;
        right: 10px;
    }
    
    .tj-footer-area {
        padding: 50px 0 20px;
    }
}