/**
 * Mhuri - Clean & Friendly Design
 * Inspired by Credmex - Trust, Clarity, Approachability
 */

/*--------------------------------------------------------------
# CSS Variables - Trust & Clarity System
--------------------------------------------------------------*/
:root {
    /* Primary Colors - Trustworthy & Professional */
    --color-primary: #2563EB;
    /* Royal Blue - Trust */
    --color-primary-dark: #1E40AF;
    --color-primary-light: #3B82F6;

    /* Secondary Colors - Fresh & Modern */
    --color-secondary: #0D9488;
    /* Teal - Growth/Stability */
    --color-secondary-light: #14B8A6;

    /* Neutral Palette - Clean & Readable */
    --color-bg-body: #FFFFFF;
    --color-bg-light: #F9FAFB;
    /* Very light gray for sections */
    --color-bg-surface: #FFFFFF;

    /* Text Colors - High Contrast */
    --color-text-main: #111827;
    /* Almost black for headings */
    --color-text-body: #374151;
    /* Dark gray for reading */
    --color-text-muted: #6B7280;
    --color-text-light: #FFFFFF;

    /* Borders & Shadows */
    --color-border: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Spacing & Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 9999px;

    /* Transitions */
    --transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Global Styles
--------------------------------------------------------------*/
body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-body);
    background: var(--color-bg-body);
    line-height: 1.6;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

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

/*--------------------------------------------------------------
# Navigation - Clean & White
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Navigation - Clean & White
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Navigation - Clean & White
--------------------------------------------------------------*/
#header {
    background: transparent;
    /* Transparent initially */
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

#header.header-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

#header .logo img {
    max-height: 50px;
}

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    /* White text on hero */
    white-space: nowrap;
    transition: 0.3s;
}

.header-scrolled .navbar a,
.header-scrolled .navbar a:focus {
    color: var(--color-text-body);
    /* Dark text on scroll */
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.header-scrolled .navbar a:hover,
.header-scrolled .navbar .active,
.header-scrolled .navbar .active:focus,
.header-scrolled .navbar li:hover>a {
    color: var(--color-primary);
    text-shadow: none;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 10px 25px;
    margin-left: 30px;
    border-radius: var(--radius-pill);
    color: #fff !important;
    /* Always white text for button */
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.navbar .getstarted:hover {
    color: #fff;
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    color: #fff;
    /* White toggle on hero */
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    /* Ensure it's above everything */
}

.header-scrolled .mobile-nav-toggle {
    color: var(--color-text-main);
    /* Dark toggle on scroll */
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

/* Mobile Menu - Side Drawer */
.navbar-mobile {
    position: fixed !important;
    /* Force fixed to viewport */
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay backdrop */
    transition: 0.3s;
    z-index: 9999;
    /* Highest z-index */
    overflow: hidden;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--color-text-main);
    z-index: 10000;
    /* Above the drawer content */
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh !important;
    /* Full viewport height */
    width: 280px;
    /* Drawer width */
    background-color: #fff;
    padding: 80px 20px 20px 20px;
    /* More top padding for toggle */
    overflow-y: auto;
    transition: 0.3s;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.3s ease-out forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 12px 20px;
    font-size: 16px;
    color: var(--color-text-main);
    border-bottom: 1px solid #f0f0f0;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--color-primary);
    background: #F8FAFC;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 20px;
    background: var(--color-primary);
    color: #fff !important;
    padding: 12px 30px;
    border-radius: var(--radius-pill);
    text-align: center;
    display: inline-block;
    width: calc(100% - 40px);
}

/*--------------------------------------------------------------
# Hero Section - Friendly & Human
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section - Full Background & Friendly
--------------------------------------------------------------*/
#hero {
    width: 100%;
    min-height: 100vh;
    background: url('../img/hero-friendly.png') top center;
    background-size: cover;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay for white text contrast */
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

#hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #FFFFFF;
    /* White text */
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#hero h2 {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    /* Semi-transparent white bg */
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#hero p {
    font-size: 22px;
    color: #F3F4F6;
    /* Light gray for readability */
    margin: 0 auto 30px auto;
    max-width: 600px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#hero .btn-get-started {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 16px 48px;
    border-radius: var(--radius-pill);
    transition: 0.5s;
    color: #fff;
    background: var(--color-primary);
    box-shadow: var(--shadow-md);
    border: none;
}

#hero .btn-get-started:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/*--------------------------------------------------------------
# Sections General - Framed Style
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
    background-color: #fff !important;
    /* Force white background */
}

.section-frame {
    background-color: #F8FAFC;
    border-radius: 32px;
    padding: 60px 40px;
    margin-top: 20px;
    border: 1px solid #F1F5F9;
}

.section-title {
    text-align: center;
    padding-bottom: 40px;
}

.section-title {
    text-align: center;
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    line-height: 1;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary);
    font-family: "Inter", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--color-secondary-light);
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    color: var(--color-text-main);
}

/*--------------------------------------------------------------
# About Section - Modern & Dynamic
--------------------------------------------------------------*/
.about {
    padding: 40px 0;
    background: #fff;
}

.about .content h3 {
    font-weight: 800;
    font-size: 36px;
    color: var(--color-text-main);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about .content .fst-italic {
    font-style: normal !important;
    font-size: 18px;
    color: var(--color-text-body);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Alternating Layout Structure */
.about-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
}

.about-row:last-child {
    margin-bottom: 0;
}

/* Grid Layout for Cards */
.about-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.about-card {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.about-card i {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: block;
}

.about-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.about-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Image Styling */
.about-image {
    flex: 0 0 45%;
    position: relative;
    padding: 20px;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.about-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary-light);
    opacity: 0.1;
    border-radius: var(--radius-lg);
    transform: rotate(-3deg) scale(0.95);
    z-index: 1;
}

/* Content Column */

/*--------------------------------------------------------------
# Services Section - Hybrid Zigzag Layout
--------------------------------------------------------------*/
.services-zigzag {
    padding: 40px 0;
    background: #f8f9fa;
}

.services-zigzag .services-title {
    margin-bottom: 40px;
}

.services-zigzag .services-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.service-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-row.reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

/* Service Image */
.service-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    position: relative;
}

.service-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.service-image img:hover {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Service Content */
.service-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.service-card:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.service-card .card-icon {
    width: 70px;
    height: 70px;
    background: -webkit-gradient(linear, left top, right bottom, from(var(--color-primary)), to(var(--color-primary-light)));
    background: -o-linear-gradient(top left, var(--color-primary) 0%, var(--color-primary-light) 100%);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    /* Floating icon positioning */
    position: absolute;
    top: -35px;
    left: 30px;
}

.service-card:hover .card-icon {
    -webkit-transform: scale(1.1) rotate(5deg);
    -ms-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.service-card .card-icon i {
    font-size: 32px;
    color: #fff;
}

.service-card .card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 15px;
    line-height: 1.3;
    margin-top: 45px;
    /* Space for floating icon */
}

.service-card .card-title a {
    color: var(--color-text-main);
    text-decoration: none;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.service-card .card-title a:hover {
    color: var(--color-primary);
}

.service-card .card-text {
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {

    .service-row,
    .service-row.reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 50px;
    }

    .service-image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .service-content {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .service-card {
        padding: 30px;
    }

    .service-card .card-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .services-zigzag {
        padding: 60px 0;
    }

    .service-card {
        padding: 25px;
    }

    .service-card .card-icon {
        width: 60px;
        height: 60px;
        top: -30px;
        left: 20px;
    }

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

    .service-card .card-title {
        margin-top: 35px;
    }
}

.about-content {
    flex: 1;
}

/* Closing Text with Dividers */
.about-closing {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-closing .divider-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
}

.about-closing p {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text-main);
    margin: 30px 0;
    line-height: 1.7;
    font-style: italic;
}

@media (max-width: 991px) {
    .about-row {
        flex-direction: column;
        gap: 30px;
    }

    .about-image {
        flex: 0 0 100%;
        order: 1;
    }

    .about-content {
        order: 2;
    }

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

/*--------------------------------------------------------------
# Services Cards - Clean & Minimal
--------------------------------------------------------------*/
.about-boxes {
    background: var(--color-bg-light);
}

.about-boxes .card {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 30px;
    overflow: hidden;
}

.about-boxes .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary-light);
}

.about-boxes .card-icon {
    text-align: center;
    margin-top: -32px;
}

.about-boxes .card-icon i {
    font-size: 32px;
    color: #fff;
    width: 64px;
    height: 64px;
    padding-top: 16px;
    text-align: center;
    background-color: var(--color-primary);
    border-radius: 50%;
    text-align: center;
    border: 4px solid #fff;
    transition: 0.3s;
    display: inline-block;
    box-shadow: var(--shadow-sm);
}

.about-boxes .card-body {
    padding: 25px;
}

.about-boxes .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.about-boxes .card-title a {
    color: var(--color-text-main);
}

.about-boxes .card-title a:hover {
    color: var(--color-primary);
}

.about-boxes .card-text {
    color: var(--color-text-body);
    text-align: justify;
}

/*--------------------------------------------------------------
# Features Tabs - Clean
--------------------------------------------------------------*/
.features .nav-tabs {
    border: none;
    margin-bottom: 20px;
    justify-content: center;
}

.features .nav-link {
    border: 1px solid var(--color-border);
    padding: 20px;
    transition: 0.3s;
    color: var(--color-text-main);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin: 0 10px 10px 10px;
    box-shadow: var(--shadow-sm);
}

.features .nav-link i {
    padding-right: 15px;
    font-size: 32px;
    color: var(--color-secondary);
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--color-text-main);
}

.features .nav-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary-light);
    background: #F0F9FF;
}

.features .nav-link.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.features .nav-link.active i,
.features .nav-link.active h4 {
    color: #fff;
}

.features .tab-content {
    margin-top: 30px;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.features .tab-pane h3 {
    font-weight: 700;
    font-size: 26px;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Additional Services
--------------------------------------------------------------*/
.services .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.services .icon-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.services .icon-box i {
    float: left;
    color: var(--color-secondary);
    font-size: 40px;
    line-height: 0;
}

.services .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .icon-box h4 a {
    color: var(--color-text-main);
    transition: 0.3s;
}

.services .icon-box h4 a:hover {
    color: var(--color-primary);
}

.services .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px;
}

/* } */

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
    #hero {
        text-align: center;
        padding-top: 100px;
    }

    .hero-container {
        flex-direction: column-reverse;
    }

    .hero-image {
        width: 80%;
        margin-bottom: 30px;
    }

    #hero p {
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 32px;
    }

    #hero h2 {
        font-size: 20px;
    }

    .hero-image {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Features Section - Grid Cards Layout
--------------------------------------------------------------*/
.features-grid-section {
    padding: 40px 0;
    background: #fff;
}

.features-grid-section .features-title {
    margin-bottom: 40px;
}

.features-grid-section .features-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.feature-card .feature-icon i {
    font-size: 36px;
    color: #fff;
}

.feature-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .features-grid-section {
        padding: 60px 0;
    }

    .feature-card {
        padding: 30px;
    }

    .feature-card .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-card .feature-icon i {
        font-size: 32px;
    }

    .feature-card h4 {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Additional Services Section - Horizontal Cards
--------------------------------------------------------------*/
.services-additional-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.services-additional-section .services-additional-title {
    margin-bottom: 40px;
}

.services-additional-section .services-additional-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.services-additional-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-horizontal-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-horizontal-card:last-child {
    margin-bottom: 0;
}

.service-horizontal-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.service-horizontal-card .service-h-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: var(--transition);
}

.service-horizontal-card:hover .service-h-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.service-horizontal-card .service-h-icon i {
    font-size: 32px;
    color: #fff;
}

.service-horizontal-card .service-h-content {
    flex: 1;
}

.service-horizontal-card .service-h-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-horizontal-card .service-h-content p {
    font-size: 15px;
    color: var(--color-text-body);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-additional-section {
        padding: 60px 0;
    }

    .service-horizontal-card {
        /* Keep horizontal layout in mobile, just make it more compact */
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 20px;
        gap: 15px;
    }

    .service-horizontal-card .service-h-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

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

    .service-horizontal-card .service-h-content h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .service-horizontal-card .service-h-content p {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Footer Modern - Compact 2 Columns
--------------------------------------------------------------*/
.footer-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-modern .footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Left Column */
.footer-modern .footer-left {
    flex: 0 0 40%;
}

.footer-modern .footer-logo img {
    max-width: 70px;
    margin-bottom: 15px;
}

.footer-modern .footer-company {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-modern .footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-modern .footer-contact i {
    font-size: 18px;
    color: var(--color-primary-light);
}

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

.footer-modern .footer-contact a:hover {
    color: var(--color-primary-light);
}

/* Right Column */
.footer-modern .footer-right {
    flex: 1;
    display: flex;
    gap: 60px;
}

.footer-modern .footer-links-group h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-modern .footer-links-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-modern .footer-links-group ul li {
    margin-bottom: 10px;
}

.footer-modern .footer-links-group ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-modern .footer-links-group ul li a:hover {
    color: var(--color-primary-light);
    transform: translateX(5px);
}

/* Copyright */
.footer-modern .footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-modern .footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-modern .footer-bottom strong {
    color: var(--color-primary-light);
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-modern .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-modern .footer-left {
        flex: 1;
    }

    .footer-modern .footer-right {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-modern {
        padding: 40px 0 20px;
    }

    .footer-modern .footer-right {
        flex-direction: column;
        gap: 30px;
    }

    .footer-modern .footer-contact p {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Inner Page (Legal Pages)
--------------------------------------------------------------*/
.inner-page {
    padding: 120px 0 60px 0;
    min-height: 80vh;
}

/*--------------------------------------------------------------
# Header Inner Pages (Legal Pages)
--------------------------------------------------------------*/
#header.header-inner-pages {
    background: var(--color-primary);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

/*--------------------------------------------------------------
# Header Inner Pages - Dark & Consistent
--------------------------------------------------------------*/
#header.header-inner-pages {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    /* Match Footer */
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

/* Force white text always for inner pages, even on scroll */
#header.header-inner-pages .navbar a,
#header.header-inner-pages .navbar a:focus {
    color: #ffffff !important;
}

#header.header-inner-pages .navbar a:hover,
#header.header-inner-pages .navbar .active,
#header.header-inner-pages .navbar .active:focus,
#header.header-inner-pages .navbar li:hover>a {
    color: var(--color-primary-light) !important;
}

/* Ensure background stays dark on scroll */
#header.header-inner-pages.header-scrolled {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 40px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.testimonials .section-title {
    margin-bottom: 40px !important;
    padding-bottom: 0 !important;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 0 15px 30px 15px;
    min-height: auto;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #fff;
    border-radius: 15px;
    text-align: center;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #b2c8f1;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #444;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--color-primary);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    background-size: cover;
    padding: 80px 0;
    text-align: center;
}

.cta-section h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-section .cta-btn {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.cta-section .cta-btn:hover {
    background: #fff;
    border: 2px solid #fff;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Cache buster: 1764388428 */
/*--------------------------------------------------------------
# WhatsApp Floating Button
--------------------------------------------------------------*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    margin-top: 3px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}

/*--------------------------------------------------------------
# AI Chatbot Interface
--------------------------------------------------------------*/

/* Chatbot Floating Button */
.chatbot-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: #FFF;
    border: none;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    z-index: 99999;
    cursor: pointer;
    display: flex;
    pointer-events: auto !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

/* Chatbot Container */
.chatbot-container {
    position: fixed;
    bottom: 120px;
    left: 40px;
    width: 380px;
    height: 550px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 998;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chatbot-container.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chatbot Header */
.chatbot-header {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: #fff;
    padding: 8px 12px;
    /* Micro padding */
    display: flex;
    justify-content: flex-end;
    /* Align close button to right */
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 40px;
    /* Fixed small height */
}

/* Content removed for micro header */
.chatbot-header-content,
.chatbot-avatar,
.chatbot-title,
.chatbot-status {
    display: none;
}

.chatbot-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Chatbot Messages */
.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.chatbot-message {
    display: flex;
    gap: 10px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: #64748b;
}

.message-content {
    max-width: 70%;
    background: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.user-message .message-content {
    background: #2563EB;
    color: #fff;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

/* Chatbot Input */
.chatbot-input-container {
    padding: 16px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
}

.chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    font-size: 16px;
    /* Prevents iOS auto-zoom */
    outline: none;
    transition: border-color 0.2s;
}

.chatbot-input:focus {
    border-color: #2563EB;
}

.chatbot-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.chatbot-send:hover {
    transform: scale(1.05);
}

.chatbot-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chatbot-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 24px;
    }

    .chatbot-container {
        left: 20px;
        right: 20px;
        bottom: 90px;
        width: auto;
        height: 500px;
    }
}