/* MKLS Maritime Logistics Custom Styles */

/* ========================================
   1. CSS Variables & Color Palette
   ======================================== */
:root {
    /* Primary Maritime Colors */
    --mkls-navy: #003366;
    --mkls-ocean-blue: #0066b2;
    --mkls-light-blue: #4a90e2;
    --mkls-teal: #00a8cc;
    --mkls-sky: #87ceeb;

    /* Secondary Colors */
    --mkls-gold: #c08f2f;
    --mkls-warm-gold: #d4a574;
    --mkls-light-gold: #f4e4c1;

    /* Neutral Colors */
    --mkls-dark-gray: #2c3e50;
    --mkls-medium-gray: #5a6c7d;
    --mkls-light-gray: #95a5a6;
    --mkls-soft-gray: #ecf0f1;
    --mkls-white: #ffffff;

    /* Gradient Definitions */
    --mkls-ocean-gradient: linear-gradient(135deg, #003366 0%, #0066b2 50%, #00a8cc 100%);
    --mkls-hero-gradient: linear-gradient(180deg, rgba(0,51,102,0.9) 0%, rgba(0,102,178,0.7) 100%);
    --mkls-card-gradient: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);

    /* Shadows */
    --mkls-shadow-sm: 0 2px 8px rgba(0,51,102,0.08);
    --mkls-shadow-md: 0 4px 16px rgba(0,51,102,0.12);
    --mkls-shadow-lg: 0 8px 32px rgba(0,51,102,0.16);
    --mkls-shadow-xl: 0 16px 48px rgba(0,51,102,0.20);

    /* Transitions */
    --mkls-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --mkls-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   2. Typography
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    color: var(--mkls-dark-gray);
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--mkls-navy);
    line-height: 1.2;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--mkls-gold);
    border-radius: 2px;
}

/* ========================================
   3. Hero Sections
   ======================================== */
.mkls-hero {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mkls-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--mkls-hero-gradient);
    z-index: 1;
}

.mkls-hero-content {
    position: relative;
    z-index: 2;
    color: var(--mkls-white);
    padding: 4rem 0;
}

.mkls-hero-content h1,
.mkls-hero-content h2,
.mkls-hero-content h3,
.mkls-hero-content h4 {
    color: var(--mkls-white);
}

.mkls-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.95;
    margin-top: 1rem;
}

/* Wave Animation */
.ocean-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    z-index: 2;
}

/* ========================================
   4. Cards & Components
   ======================================== */
.mkls-card {
    background: var(--mkls-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--mkls-shadow-md);
    transition: var(--mkls-transition);
    border: 1px solid rgba(0,102,178,0.08);
    height: 100%;
}

.mkls-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--mkls-shadow-xl);
    border-color: var(--mkls-ocean-blue);
}

.mkls-service-card {
    position: relative;
    overflow: hidden;
    background: var(--mkls-white);
    border-radius: 12px;
    transition: var(--mkls-transition);
}

.mkls-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--mkls-ocean-gradient);
    transition: var(--mkls-transition);
}

.mkls-service-card:hover::before {
    left: 0;
}

.mkls-service-card .service-icon {
    width: 70px;
    height: 70px;
    background: var(--mkls-ocean-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--mkls-transition);
}

.mkls-service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.mkls-service-card .service-icon i {
    font-size: 2rem;
    color: var(--mkls-white);
}

/* ========================================
   5. Buttons
   ======================================== */
.btn-mkls-primary {
    background: var(--mkls-ocean-gradient);
    color: var(--mkls-white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: var(--mkls-transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-mkls-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-mkls-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-mkls-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,102,178,0.3);
    color: var(--mkls-white);
}

.btn-mkls-outline {
    background: transparent;
    color: var(--mkls-ocean-blue);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: var(--mkls-transition);
    border: 2px solid var(--mkls-ocean-blue);
}

.btn-mkls-outline:hover {
    background: var(--mkls-ocean-blue);
    color: var(--mkls-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,102,178,0.3);
}

/* ========================================
   6. Features & Stats
   ======================================== */
.mkls-feature-box {
    text-align: center;
    padding: 2rem;
    transition: var(--mkls-transition);
}

.mkls-feature-box:hover {
    transform: translateY(-5px);
}

.mkls-feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--mkls-light-blue) 0%, var(--mkls-teal) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: blob 8s infinite;
}

@keyframes blob {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    50% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    75% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

.mkls-stat-box {
    text-align: center;
    padding: 1.5rem 1rem;
}

.mkls-stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    background: var(--mkls-ocean-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.mkls-stat-label {
    color: var(--mkls-medium-gray);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
}

/* ========================================
   7. Timeline
   ======================================== */
.mkls-timeline {
    position: relative;
    padding: 2rem 0;
}

.mkls-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--mkls-ocean-gradient);
}

.mkls-timeline-item {
    position: relative;
    padding: 2rem;
    margin-bottom: 3rem;
}

.mkls-timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--mkls-ocean-blue);
    border: 4px solid var(--mkls-white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0,102,178,0.2);
}

/* ========================================
   8. Navigation Enhancements
   ======================================== */
.navbar.mkls-nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,51,102,0.08);
    transition: var(--mkls-transition);
}

.navbar.mkls-nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0,51,102,0.12);
}

.navbar-nav .nav-link {
    color: var(--mkls-navy);
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    transition: var(--mkls-transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--mkls-ocean-blue);
    transition: var(--mkls-transition);
}

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

/* ========================================
   9. Page Specific Styles
   ======================================== */

/* Enhanced About Page Styles */
.about-page-enhanced {
    padding: 3rem 0;
}

/* Hero Content Section */
.about-hero-content {
    margin-bottom: 5rem;
}

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

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--mkls-gold);
    color: var(--mkls-navy);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 5px;
}

.about-text-content {
    padding-left: 2rem;
}

.about-subtitle {
    color: var(--mkls-gold);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1rem;
}

.about-main-title {
    font-size: 2.5rem !important;
    color: var(--mkls-navy);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-description {
    margin-bottom: 2rem;
}

.about-description p {
    font-size: 1.05rem !important;
    line-height: 1.8;
    color: var(--mkls-medium-gray);
    margin-bottom: 1rem;
}

.about-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.highlight-item i {
    color: var(--mkls-ocean-blue);
    font-size: 1.25rem;
}

.highlight-item span {
    font-size: 1rem;
    color: var(--mkls-dark-gray);
}

/* What We Do Section */
.what-we-do-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.section-badge {
    background: var(--mkls-gold);
    color: var(--mkls-navy);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--mkls-medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.service-feature-card {
    background: var(--mkls-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--mkls-shadow-md);
    transition: var(--mkls-transition);
    height: 100%;
    text-align: center;
}

.service-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--mkls-shadow-xl);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--mkls-ocean-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--mkls-white);
}

.service-feature-card h4 {
    color: var(--mkls-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-feature-card p {
    color: var(--mkls-medium-gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* Mission & Vision Cards */
.mission-vision-section {
    margin: 3rem 0;
}

.mission-card,
.vision-card {
    background: var(--mkls-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--mkls-shadow-lg);
    transition: var(--mkls-transition);
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.mission-card {
    border-top: 4px solid var(--mkls-ocean-blue);
}

.vision-card {
    border-top: 4px solid var(--mkls-gold);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mkls-shadow-xl);
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-card .card-icon {
    background: linear-gradient(135deg, var(--mkls-ocean-blue) 0%, var(--mkls-teal) 100%);
}

.vision-card .card-icon {
    background: var(--mkls-gold-gradient);
}

.mission-card .card-icon i,
.vision-card .card-icon i {
    font-size: 2rem;
    color: var(--mkls-white);
}

.mission-card h3,
.vision-card h3 {
    color: var(--mkls-navy);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: var(--mkls-medium-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Enhanced Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, var(--mkls-navy) 0%, #001a33 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--mkls-transition);
}

.stat-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--mkls-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--mkls-navy);
}

.stat-content {
    position: relative;
}

.stat-number {
    font-size: 2.5rem !important;
    font-weight: 700;
    color: var(--mkls-gold);
    display: inline-block;
    margin: 0;
}

.stat-suffix {
    font-size: 2rem;
    color: var(--mkls-gold);
    font-weight: 600;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Call to Action Section */
.about-cta-section {
    background: linear-gradient(135deg, var(--mkls-ocean-blue) 0%, var(--mkls-teal) 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 3rem 0;
    color: var(--mkls-white);
}

.about-cta-section h3 {
    color: var(--mkls-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Enhanced Services Page Styles */
.services-page-enhanced {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Service Section Badge */
.service-section-badge {
    display: inline-block;
    background: var(--mkls-gold);
    color: var(--mkls-navy);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

/* Service Main Title */
.service-main-title {
    font-size: 2.75rem;
    color: var(--mkls-navy);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-main-subtitle {
    font-size: 1.15rem;
    color: var(--mkls-medium-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Category Filter */
.service-categories {
    margin-bottom: 3rem;
}

.category-filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 25px;
    background: var(--mkls-white);
    border: 2px solid var(--mkls-ocean-blue);
    color: var(--mkls-ocean-blue);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--mkls-transition);
}

.category-btn:hover,
.category-btn.active {
    background: var(--mkls-ocean-blue);
    color: var(--mkls-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,102,178,0.3);
}

/* Enhanced Services Grid */
.services-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Service Card Enhanced */
.service-card-wrapper {
    position: relative;
}

.service-card-enhanced {
    background: var(--mkls-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,51,102,0.08);
    transition: var(--mkls-transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,51,102,0.15);
}

/* Service Number Badge */
.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--mkls-gold);
    color: var(--mkls-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

/* Service Image Wrapper */
.service-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-enhanced:hover .service-img {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,51,102,0.7) 0%, rgba(0,102,178,0.9) 100%);
    opacity: 0;
    transition: var(--mkls-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-view-details {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--mkls-white);
    color: var(--mkls-navy);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--mkls-transition);
}

.btn-view-details:hover {
    background: var(--mkls-gold);
    transform: scale(1.05);
}

.btn-view-details i {
    font-size: 1.25rem;
}

/* Service Card Content */
.service-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Service Icon Badge */
.service-icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--mkls-ocean-blue) 0%, var(--mkls-teal) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0,102,178,0.2);
}

.service-icon-badge i {
    font-size: 2rem;
    color: var(--mkls-white);
}

/* Service Card Title */
.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-title a {
    color: var(--mkls-navy);
    text-decoration: none;
    transition: var(--mkls-transition);
}

.service-card-title a:hover {
    color: var(--mkls-ocean-blue);
}

/* Service Card Description */
.service-card-description {
    color: var(--mkls-medium-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Service Features List */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--mkls-medium-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.service-features-list li i {
    color: var(--mkls-ocean-blue);
    font-size: 1rem;
}

/* Service Card Footer */
.service-card-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,102,178,0.1);
    margin-top: auto;
}

.btn-service-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mkls-ocean-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--mkls-transition);
}

.btn-service-detail:hover {
    color: var(--mkls-navy);
    gap: 12px;
}

.btn-service-detail i {
    transition: var(--mkls-transition);
}

/* Services Statistics Bar */
.services-stats-bar {
    background: linear-gradient(135deg, var(--mkls-navy) 0%, #001a33 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 4rem 0;
}

.services-stats-bar .stat-item {
    text-align: center;
    color: var(--mkls-white);
}

.services-stats-bar .stat-item i {
    font-size: 2.5rem;
    color: var(--mkls-gold);
    margin-bottom: 1rem;
}

.services-stats-bar .stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mkls-gold);
    margin-bottom: 0.5rem;
}

.services-stats-bar .stat-item p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin: 0;
}

/* Services CTA Section */
.services-cta-section {
    background: linear-gradient(135deg, var(--mkls-ocean-blue) 0%, var(--mkls-teal) 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    color: var(--mkls-white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--mkls-gold);
    color: var(--mkls-navy);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--mkls-transition);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.btn-cta-primary:hover {
    background: var(--mkls-warm-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.4);
}

.btn-cta-primary i {
    font-size: 1.5rem;
    transition: var(--mkls-transition);
}

.btn-cta-primary:hover i {
    transform: rotate(90deg);
}

/* Fleet Page */
.fleet-showcase {
    padding: 4rem 0;
}

.vessel-card {
    background: var(--mkls-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--mkls-shadow-lg);
    transition: var(--mkls-transition);
}

.vessel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mkls-shadow-xl);
}

.vessel-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.vessel-specs {
    padding: 2rem;
    background: linear-gradient(135deg, var(--mkls-soft-gray) 0%, var(--mkls-white) 100%);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,102,178,0.1);
}

.spec-label {
    color: var(--mkls-medium-gray);
    font-weight: 500;
}

.spec-value {
    color: var(--mkls-navy);
    font-weight: 600;
}

/* ESG Page */
.esg-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.esg-pillar {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--mkls-white);
    border-radius: 16px;
    box-shadow: var(--mkls-shadow-md);
    transition: var(--mkls-transition);
}

.esg-pillar:hover {
    transform: translateY(-10px);
    box-shadow: var(--mkls-shadow-xl);
}

.esg-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--mkls-ocean-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--mkls-white);
}

.esg-progress {
    margin: 2rem 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--mkls-medium-gray);
}

.progress-bar-wrapper {
    background: var(--mkls-soft-gray);
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--mkls-ocean-gradient);
    border-radius: 5px;
    transition: width 1s ease-in-out;
}

/* ========================================
   10. Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* Wave Background Pattern */
.wave-pattern {
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-.37.138-.748.27-1.138.395h.75z' fill='%230066b2' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: bottom;
}

/* ========================================
   10.5. Home Page Content Control
   ======================================== */
/* Intro Section Font Control */
.intro-section-wrapper h1,
.intro-section-wrapper h2,
.intro-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
    line-height: 1.3 !important;
    font-weight: 600;
}

.intro-description {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    color: var(--mkls-medium-gray);
}

.intro-text-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
}

.intro-badge .badge-text {
    font-size: 0.875rem !important;
}

.intro-stats .stat-number {
    font-size: 1.75rem !important;
}

.intro-stats .stat-label {
    font-size: 0.875rem !important;
}

/* Approach Section */
.section-title h4 {
    font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
    font-weight: 600;
}

.section-title p {
    font-size: 1rem !important;
    line-height: 1.6;
}

/* Features Section */
.features h5 {
    font-size: 1.125rem !important;
    font-weight: 600;
}

.features p {
    font-size: 0.95rem !important;
    line-height: 1.6;
}

/* Service Section */
.card-body h5 {
    font-size: 1.25rem !important;
}

.card-body p {
    font-size: 0.95rem !important;
}

/* Statistics Section */
.count-number {
    font-size: 2rem !important;
    font-weight: 700;
}

.count-title {
    font-size: 0.95rem !important;
}

/* Testimonial Section */
.client-testi p {
    font-size: 1rem !important;
    line-height: 1.6;
}

/* Blog Section */
.blog h5 {
    font-size: 1.125rem !important;
}

/* General override for large text on homepage */
.section h1, .section h2, .section h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
}

.section h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
}

.section h5 {
    font-size: clamp(1.125rem, 2vw, 1.375rem) !important;
}

.section p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem) !important;
}

/* Override any inline styles with massive fonts */
[style*="font-size: 4"],
[style*="font-size: 5"],
[style*="font-size: 6"],
[style*="font-size: 7"],
[style*="font-size: 8"],
[style*="font-size: 9"] {
    font-size: clamp(1.25rem, 2vw, 1.75rem) !important;
}

/* ========================================
   10.6. Page Builder Content Control
   ======================================== */
.pagebuilder-content {
    max-width: 100%;
    overflow-wrap: break-word;
}

/* Global font size control for page builder content */
.pagebuilder-content * {
    max-width: 100% !important;
}

.pagebuilder-content h1,
.pagebuilder-content .h1 {
    font-size: clamp(1.75rem, 3vw, 2.25rem) !important;
    line-height: 1.3 !important;
}

.pagebuilder-content h2,
.pagebuilder-content .h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem) !important;
    line-height: 1.3 !important;
}

.pagebuilder-content h3,
.pagebuilder-content .h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
    line-height: 1.4 !important;
}

.pagebuilder-content h4,
.pagebuilder-content .h4 {
    font-size: clamp(1.125rem, 1.8vw, 1.25rem) !important;
    line-height: 1.4 !important;
}

.pagebuilder-content p,
.pagebuilder-content .text,
.pagebuilder-content span:not(.mkls-stat-number) {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem) !important;
    line-height: 1.7 !important;
}

.pagebuilder-content ul li,
.pagebuilder-content ol li {
    font-size: clamp(0.95rem, 1.5vw, 1rem) !important;
    line-height: 1.6 !important;
}

/* Override extremely large text */
.pagebuilder-content [style*="font-size"] {
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
}

/* Specific controls for About page */
.about-content .pagebuilder-content {
    font-size: 1rem !important;
}

.about-content .pagebuilder-content > p:first-child {
    font-size: 1.125rem !important;
    line-height: 1.7 !important;
    color: var(--mkls-medium-gray);
}

/* ========================================
   11. Utilities
   ======================================== */
.text-mkls-navy { color: var(--mkls-navy) !important; }
.text-mkls-ocean { color: var(--mkls-ocean-blue) !important; }
.text-mkls-gold { color: var(--mkls-gold) !important; }

.bg-mkls-navy { background-color: var(--mkls-navy) !important; }
.bg-mkls-ocean { background-color: var(--mkls-ocean-blue) !important; }
.bg-mkls-soft-gray { background-color: var(--mkls-soft-gray) !important; }
.bg-mkls-gradient { background: var(--mkls-ocean-gradient) !important; }

.border-mkls-ocean { border-color: var(--mkls-ocean-blue) !important; }
.border-mkls-navy { border-color: var(--mkls-navy) !important; }

/* Spacing Utilities */
.mkls-spacing-sm { padding: 2rem 0; }
.mkls-spacing-md { padding: 4rem 0; }
.mkls-spacing-lg { padding: 6rem 0; }
.mkls-spacing-xl { padding: 8rem 0; }

/* ========================================
   11.5. Enhanced Footer Styles
   ======================================== */
.mkls-footer {
    background: linear-gradient(180deg, var(--mkls-navy) 0%, #001a33 100%);
    color: var(--mkls-white);
    position: relative;
    overflow: hidden;
}

.mkls-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mkls-gold), transparent);
}

/* Contact Info Section */
.footer-contact-section {
    padding: 60px 0;
    background: rgba(0, 102, 178, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cards-wrapper {
    margin: -30px -15px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--mkls-transition);
    height: 100%;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--mkls-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: var(--mkls-navy);
}

.contact-content h5 {
    color: var(--mkls-gold);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--mkls-transition);
}

.contact-content a:hover {
    color: var(--mkls-gold);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--mkls-gold) !important;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: var(--mkls-transition);
}

.map-link:hover {
    transform: translateX(5px);
}

/* Main Footer Content */
.footer-main-content {
    padding: 80px 0 60px;
}

.footer-content-wrapper {
    padding-top: 40px;
}

/* Footer Logo & About */
.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-tagline {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.tagline-text {
    color: var(--mkls-gold);
    font-style: italic;
    font-size: 0.95rem;
    margin: 0;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.footer-social-links li a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--mkls-transition);
}

.footer-social-links li a:hover {
    background: var(--mkls-gold);
    border-color: var(--mkls-gold);
    color: var(--mkls-navy);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    padding-left: 30px;
}

.footer-title {
    color: var(--mkls-white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--mkls-gold);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--mkls-transition);
    font-size: 0.95rem;
}

.footer-nav-list li a i {
    font-size: 14px;
    transition: var(--mkls-transition);
}

.footer-nav-list li a:hover {
    color: var(--mkls-gold);
    transform: translateX(5px);
}

.footer-nav-list li a:hover i {
    transform: translateX(3px);
}

/* Newsletter Section */
.footer-newsletter {
    padding-left: 30px;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input-group {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: var(--mkls-transition);
    position: relative;
}

.newsletter-input-group:focus-within {
    border-color: var(--mkls-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: var(--mkls-white);
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    /* padding: 14px 35px; */
    background: var(--mkls-gold);
    border: none;
    color: var(--mkls-navy);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--mkls-transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.newsletter-btn:hover {
    background: var(--mkls-warm-gold);
    transform: translateX(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.newsletter-btn:hover::before {
    left: 100%;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links ul {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--mkls-transition);
}

.footer-bottom-links ul li a:hover {
    color: var(--mkls-gold);
}

/* Footer Background Pattern */
.mkls-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-.37.138-.748.27-1.138.395h.75z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
    opacity: 0.5;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-links,
    .footer-newsletter {
        padding-left: 0;
        margin-top: 30px;
    }

    .footer-title {
        margin-top: 20px;
    }

    .footer-bottom-links {
        text-align: center;
        margin-top: 20px;
    }

    .footer-bottom-links ul {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-contact-section {
        padding: 40px 0;
    }

    .contact-card {
        padding: 20px;
    }

    .footer-main-content {
        padding: 60px 0 40px;
    }

    .footer-bottom-links ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* ========================================
   12. Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .mkls-hero {
        min-height: 400px;
    }

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

    .mkls-timeline::before {
        left: 30px;
    }

    .mkls-timeline-item::before {
        left: 30px;
    }

    .esg-pillars {
        grid-template-columns: 1fr;
    }

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

/* Loading Animation */
.mkls-loader {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid var(--mkls-soft-gray);
    border-radius: 50%;
    border-top-color: var(--mkls-ocean-blue);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--mkls-soft-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--mkls-ocean-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--mkls-navy);
}

/* ========================================
   13. About Page Responsive Enhancements
   ======================================== */
@media (max-width: 576px) {
    /* About Page Extra Small Screens */
    .about-page-enhanced {
        padding: 1.5rem 0;
    }
    
    .about-hero-content {
        margin-bottom: 3rem;
    }
    
    .about-main-title {
        font-size: 1.5rem !important;
        margin-bottom: 1rem;
    }
    
    .about-description p {
        font-size: 0.95rem !important;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
    
    .highlight-item i {
        font-size: 1rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 5px 15px;
    }
    
    .section-title {
        font-size: 1.25rem !important;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-mkls-primary.btn-lg {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* ========================================
   14. Global Font Overrides for Inter
   ======================================== */

/* Override Bootstrap CSS Variables */
:root {
    --bs-font-sans-serif: 'Inter', sans-serif !important;
    --bs-body-font-family: 'Inter', sans-serif !important;
}

/* Base font family for body - more specific approach */
body {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
}

/* Text elements - with proper font weights */
p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

/* Lighter weight for descriptions and secondary text */
.text-muted,
.description,
.subtitle,
.service-description,
.about-description {
    font-weight: 300 !important;
}

/* Headings with appropriate weights */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif !important;
    line-height: 1.2;
}

h1 { font-weight: 700; }
h2 { font-weight: 600; }
h3 { font-weight: 600; }
h4 { font-weight: 500; }
h5 { font-weight: 500; }
h6 { font-weight: 500; }

/* Navigation items */
.nav-link,
.navbar-brand {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
}

/* Buttons */
.btn {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
}

/* Form elements */
input,
select,
textarea,
.form-control,
.form-select {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
}

/* Labels */
label,
.form-label {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
}

/* Override specific Bootstrap components */
.dropdown-item {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
}

.card {
    font-family: 'Inter', sans-serif !important;
}

.modal,
.alert,
.badge,
.breadcrumb {
    font-family: 'Inter', sans-serif !important;
}

/* IMPORTANT: Preserve icon fonts - DO NOT override these */
.fa,
.fas,
.far,
.fal,
.fad,
.fab,
.fa-solid,
.fa-regular,
.fa-light,
.fa-duotone,
.fa-brands,
[class^="fa-"],
[class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Solid", "Font Awesome 6 Brands" !important;
}

/* Material Design Icons */
.mdi,
[class^="mdi-"],
[class*=" mdi-"] {
    font-family: "Material Design Icons" !important;
}

/* Unicons */
.uil,
[class^="uil-"],
[class*=" uil-"] {
    font-family: "unicons" !important;
}

/* Feather Icons */
.feather {
    font-family: "feather" !important;
}

/* Font weight utilities */
.fw-light { font-weight: 300 !important; }
.fw-normal { font-weight: 400 !important; }
.fw-medium { font-weight: 500 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }
.fw-bolder { font-weight: 800 !important; }
.fw-black { font-weight: 900 !important; }

/* Service card specific font weights */
.service-card-enhanced .service-title {
    font-weight: 600;
}

.service-card-enhanced .service-description {
    font-weight: 300;
    color: #6c757d;
}

/* Section titles and subtitles */
.section-title {
    font-weight: 600;
}

.section-subtitle {
    font-weight: 400;
    color: #6c757d;
}

/* Additional lighter text classes */
.hero-subtitle,
.hero-description {
    font-weight: 300 !important;
}

/* Service and feature text */
.service-text,
.feature-text,
.service-summary,
.card-text {
    font-weight: 300 !important;
}

/* Small and muted text */
small,
.small {
    font-weight: 400;
}

/* Breadcrumb items */
.breadcrumb-item {
    font-weight: 400;
}

/* Footer text */
.footer p,
.footer-description {
    font-weight: 300;
}

/* ========================================
   15. Container Alignment Fix
   ======================================== */

/* Ensure all containers use consistent max-width */
.container,
.intro-section-wrapper .container,
.section .container {
    max-width: 1140px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Fix any container-fluid to behave like container */
.container-fluid,
.section .container-fluid,
.mkls-spacing-md .container-fluid,
.pagebuilder-content .container-fluid,
main .container-fluid {
    max-width: 1140px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Responsive container widths */
@media (max-width: 1199.98px) {
    .container,
    .intro-section-wrapper .container,
    .section .container,
    .container-fluid,
    .section .container-fluid,
    .mkls-spacing-md .container-fluid,
    .pagebuilder-content .container-fluid,
    main .container-fluid {
        max-width: 960px !important;
    }
}

@media (max-width: 991.98px) {
    .container,
    .intro-section-wrapper .container,
    .section .container,
    .container-fluid,
    .section .container-fluid,
    .mkls-spacing-md .container-fluid,
    .pagebuilder-content .container-fluid,
    main .container-fluid {
        max-width: 720px !important;
    }
}

@media (max-width: 767.98px) {
    .container,
    .intro-section-wrapper .container,
    .section .container,
    .container-fluid,
    .section .container-fluid,
    .mkls-spacing-md .container-fluid,
    .pagebuilder-content .container-fluid,
    main .container-fluid {
        max-width: 540px !important;
    }
}

@media (max-width: 575.98px) {
    .container,
    .intro-section-wrapper .container,
    .section .container,
    .container-fluid,
    .section .container-fluid,
    .mkls-spacing-md .container-fluid,
    .pagebuilder-content .container-fluid,
    main .container-fluid {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
