/**
 * Marhaba Shipping LLC - Public Pages Styles
 */

/* ============================================
   Hero Section
   ============================================ */
.ks-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ks-dark);
}

/* Hero Carousel */
.ks-hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ks-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    will-change: opacity, transform;
}

.ks-hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.ks-hero-slide.prev {
    opacity: 0;
    transform: scale(1);
}

/* Carousel Indicators */
.ks-hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 25;
}

.ks-hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.ks-hero-indicator:hover {
    border-color: var(--ks-primary);
    background: rgba(193, 154, 75, 0.3);
}

.ks-hero-indicator.active {
    background: var(--ks-primary);
    border-color: var(--ks-primary);
    transform: scale(1.2);
}

/* Progress bar for auto-advance */
.ks-hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--ks-primary);
    width: 0%;
    z-index: 25;
    transition: width linear;
}

.ks-hero-progress.animating {
    animation: progressBar 6s linear forwards;
}

@keyframes progressBar {
    from { width: 0%; }
    to { width: 100%; }
}

/* Legacy video support */
.ks-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.ks-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(120deg, rgba(6, 42, 27, 0.95) 0%, rgba(10, 67, 42, 0.88) 45%, rgba(18, 75, 47, 0.74) 100%),
        radial-gradient(circle at 80% 20%, rgba(193, 154, 75, 0.22) 0%, transparent 45%);
    z-index: 2;
}

/* Subtle decorative gold frame inside hero */
.ks-hero::after {
    content: '';
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(217, 186, 115, 0.28);
    z-index: 3;
    pointer-events: none;
}
@media (max-width: 768px) {
    .ks-hero::after { inset: 12px; }
}

.ks-hero-content {
    position: relative;
    z-index: 10;
    color: var(--ks-light);
    padding: 70px 0 80px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ks-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(193, 154, 75, 0.2);
    border: 1px solid var(--ks-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.ks-hero-title {
    font-family: var(--ks-font-heading);
    font-size: clamp(2.1rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.4);
}

.ks-hero-title span {
    color: var(--ks-primary);
    text-shadow: 0 4px 20px rgba(193, 154, 75, 0.4), 0 2px 6px rgba(0, 0, 0, 0.4);
}

.ks-hero-subtitle {
    font-size: 1.25rem;
    opacity: 1;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.ks-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.ks-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ks-hero-stat {
    text-align: left;
}

.ks-hero-stat-value {
    font-family: var(--ks-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ks-primary);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.ks-hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* Track Box in Hero */
.ks-track-box {
    position: relative;
    z-index: 15;
    background: rgba(8, 55, 35, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--ks-radius-xl);
    padding: 2rem;
    border: 1px solid rgba(193, 154, 75, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ks-track-box h4 {
    color: var(--ks-light);
    margin-bottom: 1rem;
    font-family: var(--ks-font-heading);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.ks-track-input-group {
    display: flex;
    gap: 0.5rem;
}

.ks-track-input-group input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: var(--ks-radius-lg);
    font-size: 1rem;
    background: var(--ks-light);
}

.ks-track-input-group button {
    padding: 1rem 2rem;
    background: var(--ks-primary);
    color: var(--ks-light);
    border: none;
    border-radius: var(--ks-radius-lg);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.ks-track-input-group button:hover {
    background: var(--ks-primary-dark);
    transform: translateY(-2px);
}

.ks-track-assure {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
}
.ks-track-assure span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 500;
}
.ks-track-assure i {
    width: 15px;
    height: 15px;
    color: var(--ks-accent);
}

@media (max-width: 768px) {
    /* .ks-hero-title now scales via clamp() - no fixed override here */
    .ks-hero-stats {
        gap: 1.5rem;
    }

    .ks-hero-stat-value {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }

    .ks-track-input-group {
        flex-direction: column;
    }
}

/* ============================================
   Section Styles
   ============================================ */
.ks-section {
    padding: 100px 0;
}

.ks-section-dark {
    background: var(--ks-dark);
    color: var(--ks-light);
}

.ks-section-light {
    background: var(--ks-bg-secondary);
}

.ks-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.ks-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ks-primary-100);
    color: var(--ks-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ks-section-title {
    font-family: var(--ks-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ks-dark);
}

.ks-section-dark .ks-section-title {
    color: var(--ks-light);
}

.ks-section-dark .ks-section-badge {
    background: rgba(193, 154, 75, 0.2);
}

.ks-section-subtitle {
    font-size: 1.125rem;
    color: var(--ks-text-secondary);
    line-height: 1.7;
}

.ks-section-dark .ks-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Service Cards
   ============================================ */
.ks-service-card {
    background: var(--ks-bg-primary);
    border-radius: var(--ks-radius-xl);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--ks-dark-100);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ks-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ks-primary) 0%, var(--ks-accent) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ks-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ks-shadow-xl);
}

.ks-service-card:hover::before {
    transform: scaleX(1);
}

.ks-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--ks-primary) 0%, var(--ks-accent) 100%);
    border-radius: var(--ks-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--ks-light);
}

.ks-service-title {
    font-family: var(--ks-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ks-dark);
}

.ks-service-desc {
    color: var(--ks-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ks-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ks-primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.ks-service-link:hover {
    gap: 0.75rem;
    color: var(--ks-primary-dark);
}

/* ============================================
   Feature/About Section
   ============================================ */
.ks-feature-image {
    border-radius: var(--ks-radius-xl);
    overflow: hidden;
    box-shadow: var(--ks-shadow-xl);
}

.ks-feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Traditional gold-framed image */
.ks-feature-image-framed {
    position: relative;
    border-radius: 6px;
    border: 1px solid rgba(193, 154, 75,0.35);
    padding: 10px;
    background: var(--ks-bg-primary);
}
.ks-feature-image-framed img {
    border-radius: 3px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.ks-feature-image-framed::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(193, 154, 75,0.25);
    border-radius: 4px;
    pointer-events: none;
}

.ks-feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.ks-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.ks-feature-list li i {
    width: 24px;
    height: 24px;
    color: var(--ks-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.ks-feature-list li strong {
    display: block;
    color: var(--ks-dark);
    margin-bottom: 0.25rem;
}

.ks-feature-list li span {
    color: var(--ks-text-secondary);
    font-size: 0.9375rem;
}

/* ============================================
   Stats Section
   ============================================ */
.ks-stats-section {
    background: linear-gradient(135deg, var(--ks-primary) 0%, var(--ks-accent) 100%);
    padding: 80px 0;
}

.ks-stat-item {
    text-align: center;
    color: var(--ks-light);
}

.ks-stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--ks-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.ks-stat-value {
    font-family: var(--ks-font-heading);
    font-size: clamp(1.9rem, 6vw, 3rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ks-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   Testimonials
   ============================================ */
.ks-testimonial-card {
    background: var(--ks-bg-primary);
    border-radius: var(--ks-radius-xl);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--ks-dark-100);
    position: relative;
}

.ks-testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    color: var(--ks-primary-200);
}

.ks-testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #ffc107;
}

.ks-testimonial-text {
    color: var(--ks-text-primary);
    line-height: 1.8;
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

.ks-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ks-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--ks-radius-full);
    object-fit: cover;
    background: var(--ks-primary-100);
}

.ks-testimonial-name {
    font-weight: 600;
    color: var(--ks-dark);
    margin-bottom: 0.25rem;
}

.ks-testimonial-role {
    font-size: 0.875rem;
    color: var(--ks-text-secondary);
}

/* ============================================
   CTA Section
   ============================================ */
.ks-cta-section {
    background: var(--ks-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ks-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(193, 154, 75, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.ks-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ks-cta-title {
    font-family: var(--ks-font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--ks-light);
    margin-bottom: 1rem;
}

.ks-cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.ks-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ============================================
   Footer Styles
   ============================================ */
.ks-footer {
    background: var(--ks-dark);
    color: var(--ks-light);
    padding-top: 80px;
}

.ks-footer h4 {
    font-family: var(--ks-font-heading);
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--ks-light);
}

/* Black crest rendered light on the dark footer */
.footer-crest {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-cert {
    color: rgba(255,255,255,0.78);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.footer-cert i {
    width: 18px;
    height: 18px;
    color: var(--ks-accent);
}

.footer-tagline {
    color: var(--ks-primary);
    font-style: italic;
    font-size: 0.9375rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--ks-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ks-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--ks-primary);
    color: var(--ks-light);
    transform: translateY(-3px);
}

.social-link i {
    width: 18px;
    height: 18px;
}

.footer-heading {
    font-family: var(--ks-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--ks-light);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--ks-primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    width: 18px;
    height: 18px;
    color: var(--ks-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--ks-primary);
}

.footer-partners {
    text-align: center;
}

.partner-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--ks-primary);
}

/* ============================================
   Track Page
   ============================================ */
.ks-track-page {
    padding: 70px 0 80px;
    background: var(--ks-bg-secondary);
    min-height: 80vh;
}

.ks-track-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.ks-track-result {
    background: var(--ks-bg-primary);
    border-radius: var(--ks-radius-xl);
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid var(--ks-dark-100);
}

.ks-timeline {
    position: relative;
    padding-left: 2rem;
}

.ks-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--ks-dark-200);
}

.ks-timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.ks-timeline-item:last-child {
    padding-bottom: 0;
}

.ks-timeline-dot {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--ks-dark-200);
    border-radius: 50%;
    border: 3px solid var(--ks-bg-primary);
}

.ks-timeline-item.active .ks-timeline-dot {
    background: var(--ks-primary);
    box-shadow: 0 0 0 4px rgba(193, 154, 75, 0.2);
}

.ks-timeline-item.completed .ks-timeline-dot {
    background: var(--ks-success);
}

.ks-timeline-content {
    background: var(--ks-bg-secondary);
    padding: 1rem 1.25rem;
    border-radius: var(--ks-radius-lg);
}

.ks-timeline-title {
    font-weight: 600;
    color: var(--ks-dark);
    margin-bottom: 0.25rem;
}

.ks-timeline-date {
    font-size: 0.875rem;
    color: var(--ks-text-secondary);
}

.ks-timeline-location {
    font-size: 0.875rem;
    color: var(--ks-text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

/* ============================================
   Quote Page
   ============================================ */
.ks-quote-page {
    padding: 70px 0 80px;
    background: var(--ks-bg-secondary);
}

.ks-quote-form {
    background: var(--ks-bg-primary);
    border-radius: var(--ks-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--ks-shadow-lg);
}

.ks-quote-step {
    display: none;
}

.ks-quote-step.active {
    display: block;
}

.ks-step-indicator {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ks-step-dot {
    width: 12px;
    height: 12px;
    background: var(--ks-dark-200);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ks-step-dot.active {
    background: var(--ks-primary);
    transform: scale(1.3);
}

.ks-step-dot.completed {
    background: var(--ks-success);
}

/* ============================================
   Contact Page
   ============================================ */
.ks-contact-page {
    padding: 70px 0 80px;
}

.ks-contact-card {
    background: var(--ks-bg-primary);
    border-radius: var(--ks-radius-xl);
    padding: 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--ks-dark-100);
    transition: all 0.3s ease;
}

.ks-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ks-shadow-lg);
}

.ks-contact-icon {
    width: 64px;
    height: 64px;
    background: var(--ks-primary-100);
    border-radius: var(--ks-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--ks-primary);
}

.ks-map-container {
    height: 400px;
    border-radius: var(--ks-radius-xl);
    overflow: hidden;
    margin-top: 3rem;
}

.ks-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 991px) {
    .ks-section {
        padding: 60px 0;
    }
    
    .ks-section-title {
        font-size: 2rem;
    }
    
    .ks-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .ks-hero-content {
        text-align: center;
    }
    
    .ks-hero-actions {
        justify-content: center;
    }
    
    .ks-hero-stats {
        justify-content: center;
    }
    
    .ks-hero-stat {
        text-align: center;
    }
}

/* ============================================================
   MARHABA - Home & shared public components
   ============================================================ */

/* Trust strip (below hero) */
.ks-trust-strip {
    background: var(--ks-dark-900);
    padding: 1.1rem 0;
    border-bottom: 2px solid var(--ks-primary);
}
.ks-trust-strip .ks-trust-label {
    font-family: var(--ks-font-heading);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: var(--ks-accent);
}
.ks-trust-strip .ks-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255,255,255,0.82);
    font-size: 0.85rem;
    font-weight: 500;
}
.ks-trust-strip .ks-trust-item i { width: 16px; height: 16px; color: var(--ks-primary); }

/* Welcome section value points (on emerald) */
.mh-value-point {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.9rem;
}
.mh-value-point i { width: 18px; height: 18px; color: var(--ks-accent); }

/* Welcome card (glass on emerald) */
.mh-welcome-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(217,186,115,0.28);
    border-radius: var(--ks-radius-xl);
    padding: 2.25rem;
    backdrop-filter: blur(6px);
}
.mh-welcome-card-figure { margin-bottom: 1rem; }
.mh-welcome-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.mh-welcome-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.mh-welcome-list li {
    display: flex; align-items: center; gap: 0.6rem;
    color: rgba(255,255,255,0.85); padding: 0.4rem 0; font-size: 0.95rem;
}
.mh-welcome-list li i { width: 18px; height: 18px; color: var(--ks-accent); }

/* Process timeline */
.mh-process-section { background: var(--ks-bg-secondary); }
.mh-process { counter-reset: step; }
.mh-process-step {
    background: var(--ks-bg-primary);
    border: 1px solid var(--ks-dark-100);
    border-top: 3px solid var(--ks-primary);
    border-radius: var(--ks-radius-xl);
    padding: 2rem 1.5rem;
    height: 100%;
    position: relative;
    transition: transform var(--ks-transition-normal), box-shadow var(--ks-transition-normal);
}
.mh-process-step:hover { transform: translateY(-6px); box-shadow: var(--ks-shadow-lg); }
.mh-process-num {
    position: absolute; top: -18px; right: 20px;
    font-family: var(--ks-font-heading); font-weight: 800;
    font-size: 2.75rem; line-height: 1;
    color: var(--ks-primary-200);
}
.mh-process-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--ks-dark-700), var(--ks-dark-900));
    color: var(--ks-accent);
    margin-bottom: 1.25rem;
}
.mh-process-icon i { width: 26px; height: 26px; }
.mh-process-step h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.mh-process-step p { color: var(--ks-text-muted); font-size: 0.925rem; margin: 0; }

/* Testimonial author monogram spacing */
.ks-testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
