/**
* Template Name: Scout
* Template URL: https://bootstrapmade.com/scout-bootstrap-multipurpose-template/
* Updated: May 05 2025 with Bootstrap v5.3.5
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Alexandria", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Alexandria", sans-serif;
    --nav-font: "Alexandria", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #2c3e2d; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #1b5e20; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #1b5e20; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --gold-color: #ffd700; /* Gold color from logo for special elements */
    --gold-light: #ffc107; /* Light gold variant */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #2c3e2d; /* The default color of the main navmenu links */
    --nav-hover-color: #1b5e20; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #2c3e2d; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1b5e20; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f8f5f4;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #343333;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* Header - Simple and Clean */
.header {
    color: var(--default-color);
    background: linear-gradient(
        135deg,
        rgb(248, 249, 250) 0%,
        rgb(232, 245, 233) 25%,
        rgb(241, 248, 233) 50%,
        rgb(255, 249, 230) 75%,
        rgb(248, 249, 250) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    z-index: 1000 !important;
    position: relative !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center;
    width: 100% !important;
    box-sizing: border-box;
    margin: 0 !important;
    min-height: 70px !important;
}

/* Force header visibility - strongest rules */
header#header,
#header.header,
.header {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    min-height: 70px !important;
    z-index: 1000 !important;
}

/* Make header sticky only on desktop/large screens */
@media (min-width: 769px) {
    .header {
        position: sticky;
        top: 0;
    }
}

.header .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 25px;
}

.header .logo {
    flex-shrink: 0;
    min-width: 120px;
}

.header .navmenu {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.header .logo {
    line-height: 1;
    display: flex;
    align-items: center;
}

.header .logo img {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.header .logo .sitename {
    display: none;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 20px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
}

.btn-language {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-language i {
    font-size: 16px;
}

.btn-language:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-color: var(--accent-color);
    transform: translateY(-1px);
}

.btn-language span {
    font-size: 13px;
}

.header-actions .btn {
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.header-actions .btn-login {
    color: var(--accent-color);
    background: transparent;
    border: 2px solid var(--accent-color);
}

.header-actions .btn-login:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.header-actions .btn-quote {
    color: #ffffff;
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.header-actions .btn-quote:hover {
    background: #2e7d32;
    border-color: #2e7d32;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

/* Join as Marketer Button - Premium 3D Gold Design */
.header-actions .btn-join-marketer {
    position: relative;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 50%, #ff8c00 100%);
    color: #1a1a1a;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4),
        0 8px 25px rgba(255, 165, 0, 0.3), inset 0 -3px 0 rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.header-actions .btn-join-marketer::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffa500, #ffd700);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.header-actions .btn-join-marketer i {
    font-size: 1.1em;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: scale(1.2) rotate(10deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    75% {
        transform: scale(1.2) rotate(-10deg);
        opacity: 0.8;
    }
}

.header-actions .btn-join-marketer:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6),
        0 12px 35px rgba(255, 165, 0, 0.5), inset 0 -4px 0 rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    color: #0a0a0a;
}

.header-actions .btn-join-marketer:hover::before {
    opacity: 1;
}

.header-actions .btn-join-marketer:hover i {
    animation: sparkle-fast 1s ease-in-out infinite;
}

@keyframes sparkle-fast {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.3) rotate(180deg);
    }
}

.header-actions .btn-join-marketer:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.header-actions .btn-career {
    color: var(--accent-color);
    background: var(--gold-color);
    border: 2px solid var(--gold-color);
    font-weight: 600;
}

.header-actions .btn-career:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* User Button with Avatar */
.header-actions .btn-user {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 50% !important;
    width: 48px;
    height: 48px;
    min-width: 48px;
    max-width: 48px;
    min-height: 48px;
    max-height: 48px;
    overflow: hidden !important;
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
}

.header-actions .btn-user:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-actions .btn-user .user-avatar {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 50% !important;
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Fallback icon when avatar image fails to load */
.header-actions .btn-user .user-avatar-fallback {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: white;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.header-actions .btn-user .user-avatar-fallback i {
    font-size: 24px;
    color: white;
}

/* User Info in Dropdown */
.dropdown-menu .dropdown-header {
    padding: 12px 16px;
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.dropdown-menu .user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-menu .user-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--heading-color);
    margin: 0;
}

.dropdown-menu .user-type {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

@media (max-width: 1200px) {
    .header .container-fluid {
        flex-wrap: wrap;
        gap: 15px;
    }

    .header .logo {
        order: 3;
        min-width: auto;
        margin-left: auto;
    }

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

    .header .navmenu {
        order: 1;
        width: auto;
        margin: 0;
        flex-shrink: 0;
    }

    .header-actions {
        order: 2;
        margin-left: auto;
        margin-right: auto;
        gap: 8px;
        flex: 1;
        justify-content: center;
    }

    .header-actions .btn {
        padding: 6px 15px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .header .logo img {
        max-height: 40px;
    }

    .header-actions {
        gap: 6px;
    }

    .header-actions .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    html {
        height: auto;
        min-height: 100%;
    }

    body {
        padding-bottom: 5px;
        height: auto;
        min-height: 100%;
    }

    .footer {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    /* Remove padding-top from main since header is no longer sticky */
    .main {
        padding-top: 0;
        padding-bottom: 20px;
        overflow: visible;
    }

    /* Header on mobile - simple and clean */
    .header,
    header#header,
    #header.header {
        position: relative !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center;
        padding: 10px 0;
        min-height: 70px !important;
        width: 100% !important;
        z-index: 1000 !important;
        top: 0 !important;
        margin-top: 0 !important;
        /* Support for iOS safe area */
        padding-top: max(10px, constant(safe-area-inset-top));
        padding-top: max(10px, env(safe-area-inset-top));
    }

    .header-actions .btn-join-marketer {
        display: none !important;
    }

    .header .container-fluid {
        gap: 8px;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        overflow: visible;
        padding: 0 15px;
        width: 100%;
        position: relative;
        max-width: 100%;
        box-sizing: border-box;
    }

    .header .logo {
        order: 3;
        flex-shrink: 0;
        min-width: 80px;
        max-width: 120px;
        margin-left: 0;
    }

    .header .logo img {
        max-height: 35px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .header .company-name {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: 10px;
        font-weight: 600;
        line-height: 1.3;
        max-width: 130px;
        min-width: 80px;
        margin-right: 8px;
        color: var(--heading-color);
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
        white-space: normal;
    }

    [dir="ltr"] .header .company-name {
        margin-right: 0;
        margin-left: 8px;
    }

    .header-actions {
        order: 2;
        margin-left: 0;
        margin-right: 0;
        gap: 4px;
        flex-wrap: nowrap;
        align-items: center;
        flex-shrink: 1;
        display: flex !important;
        overflow: visible !important;
        visibility: visible !important;
        flex: 1 1 auto;
        justify-content: center;
        min-width: 0;
    }

    .header-actions .btn {
        padding: 6px 10px;
        font-size: 11px;
        white-space: nowrap;
        min-height: 32px;
        max-height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .header-actions .btn-login {
        padding: 6px 8px;
        font-size: 10px;
    }

    .header-actions .btn-quote {
        padding: 6px 8px;
        font-size: 10px;
    }

    .header-actions .btn-join-marketer {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .header-actions .btn-join-marketer i {
        font-size: 1em;
    }

    .header-actions .btn-career {
        display: none; /* Hide career button on mobile to save space */
    }

    /* User Profile Icon - Clean and Professional */
    .header-actions .btn-user {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
    }

    .header-actions .btn-user .user-avatar {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 50% !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    /* Fallback icon when avatar image fails to load - Mobile */
    .header-actions .btn-user .user-avatar-fallback {
        width: 100% !important;
        height: 100% !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: linear-gradient(
            135deg,
            #1b5e20 0%,
            #2e7d32 100%
        ) !important;
        color: white !important;
        margin: 0 !important;
        padding: 0 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    .header-actions .btn-user .user-avatar-fallback i {
        font-size: 20px !important;
        color: white !important;
    }

    /* Language Icon - Clean and Professional */
    .header-actions .btn-language {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
        padding: 0 !important;
        border-radius: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        border: none !important;
        background: transparent !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header-actions .btn-language i {
        font-size: 18px !important;
        color: var(--accent-color) !important;
        display: block !important;
        margin: 0 !important;
    }

    .header-actions .btn-language span {
        display: none !important;
    }

    /* Ensure icons are together */
    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
        justify-content: end !important;
    }

    .header .navmenu {
        order: 1;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        width: auto;
        margin: 0;
        position: static;
    }

    .header .navmenu ul {
        display: none; /* Hide navmenu list on mobile */
    }

    /* Improve mobile nav toggle button */
    .mobile-nav-toggle {
        font-size: 22px;
        padding: 6px 8px;
        margin: 0;
        color: var(--accent-color);
        background: transparent;
        border: 2px solid var(--accent-color);
        border-radius: 6px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .mobile-nav-toggle:hover {
        background: var(--accent-color);
        color: white;
    }

    /* WhatsApp Float Button - Mobile */
    .whatsapp-float {
        bottom: -15px;
    }

    .whatsapp-float.active {
        bottom: 70px;
    }
}

@media (max-width: 576px) {
    html {
        height: auto;
        min-height: 100%;
    }

    body {
        padding-bottom: 5px;
        height: auto;
        min-height: 100%;
    }

    .footer {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .main {
        padding-top: 0;
        padding-bottom: 15px;
        overflow: visible;
    }

    /* Header on mobile - simple and clean */
    .header,
    header#header,
    #header.header {
        position: relative !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center;
        padding: 8px 0;
        min-height: 70px !important;
        width: 100% !important;
        z-index: 1000 !important;
        top: 0 !important;
        margin-top: 0 !important;
        /* Support for iOS safe area */
        padding-top: max(8px, constant(safe-area-inset-top));
        padding-top: max(8px, env(safe-area-inset-top));
    }

    .header .container-fluid {
        gap: 5px;
        flex-wrap: nowrap;
        padding: 0 12px;
        overflow: visible;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .header .logo {
        min-width: 70px;
        max-width: 100px;
        flex-shrink: 1;
    }

    .header .logo img {
        max-height: 30px;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .header-actions {
        gap: 4px;
        flex-wrap: nowrap;
        flex-shrink: 0;
    }

    .header-actions .btn {
        padding: 5px 8px;
        font-size: 10px;
        min-height: 30px;
        max-height: 30px;
        min-width: 30px;
    }

    .header-actions .btn-login {
        padding: 5px 6px;
        font-size: 9px;
    }

    .header-actions .btn-quote {
        padding: 5px 6px;
        font-size: 9px;
    }

    .header-actions .btn-join-marketer {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
    }

    .header-actions .btn-career {
        display: none; /* Hide one button on very small screens */
    }

    /* User Profile Icon - Same as 768px but smaller */
    .header-actions .btn-user {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        min-height: 36px !important;
        max-height: 36px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
    }

    .header-actions .btn-user .user-avatar {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 50% !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    /* Language Icon - Same as 768px but smaller */
    .header-actions .btn-language {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        min-height: 36px !important;
        max-height: 36px !important;
        padding: 0 !important;
        border-radius: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        border: none !important;
        background: transparent !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header-actions .btn-language i {
        font-size: 16px !important;
        color: var(--accent-color) !important;
        display: block !important;
        margin: 0 !important;
    }

    .header-actions .btn-language span {
        display: none !important;
    }

    .header-actions .btn-user .user-avatar {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 50% !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    .header-actions .btn-user i {
        font-size: 16px;
    }

    /* Improve mobile nav toggle on very small screens */
    .mobile-nav-toggle {
        font-size: 18px;
        padding: 5px 6px;
        width: 32px;
        height: 32px;
    }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    background-color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Ensure scrolled header is NOT sticky on mobile */
@media (max-width: 768px) {
    .scrolled .header,
    body.scrolled .header,
    body.scrolled header#header,
    body.scrolled #header.header {
        position: relative !important;
        top: auto !important;
    }
}

/* Make scrolled header sticky only on desktop/large screens */
@media (min-width: 769px) {
    .scrolled .header {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0 !important;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
        flex: 1;
        display: flex;
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .navmenu li {
        position: relative;
    }

    .navmenu > ul > li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu > ul > li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

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

    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--accent-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover > a:before {
        visibility: visible;
        width: 100%;
    }

    /* Hide underline for active link */
    .navmenu .active:before {
        visibility: hidden !important;
        width: 0 !important;
    }

    .navmenu li:hover > a {
        color: var(--nav-hover-color);
    }

    /* Active menu item - Button style with gradient */
    .navmenu .active,
    .navmenu .active:focus {
        color: #ffffff !important;
        background: linear-gradient(
            135deg,
            var(--accent-color) 0%,
            var(--gold-color) 100%
        );
        border-radius: 30px;
        padding: 8px 20px !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        white-space: nowrap;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(27, 94, 32, 0.3);
    }

    .navmenu .active:hover {
        box-shadow: 0 4px 12px rgba(27, 94, 32, 0.4);
        transform: translateY(-1px);
    }

    /* Logo inside active menu item - hidden on desktop */
    .navmenu .active .nav-logo {
        display: none !important;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
        position: relative;
    }

    .navmenu li {
        position: relative;
        pointer-events: auto;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100vh - 70px);
        padding: 20px 15px;
        margin: 0;
        border-radius: 0;
        background-color: var(--nav-mobile-background-color);
        border: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: 0.3s;
        z-index: 9999;
        pointer-events: none;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        z-index: 10000;
        pointer-events: auto;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
        pointer-events: auto;
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover {
        color: var(--nav-dropdown-hover-color);
    }

    /* Active menu item - Button style with gradient on mobile */
    .navmenu .active,
    .navmenu .active:focus {
        color: #ffffff !important;
        background: linear-gradient(
            135deg,
            var(--accent-color) 0%,
            var(--gold-color) 100%
        );
        border-radius: 25px;
        padding: 10px 18px !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        white-space: nowrap;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(27, 94, 32, 0.3);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: transparent;
        color: #ffffff;
        transform: none;
    }

    /* Logo inside active menu item on mobile - on the right */
    .navmenu .active .nav-logo,
    .navmenu .active:focus .nav-logo {
        width: 22px;
        height: 22px;
        object-fit: contain;
        margin: 0;
        margin-left: 8px;
        flex-shrink: 0;
        display: block;
        order: 1; /* Ensure logo appears after text (on the right) */
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 10001;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
        pointer-events: auto;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
        pointer-events: auto;
    }

    .mobile-nav-active {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: fixed;
        font-size: 28px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 10002;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        pointer-events: auto;
    }

    .mobile-nav-active .mobile-nav-toggle:hover {
        background: rgba(0, 0, 0, 0.5);
        transform: rotate(90deg);
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: visible;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(33, 37, 41, 0.85);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        transition: 0.3s;
        z-index: 9998;
        pointer-events: auto;
    }

    .mobile-nav-active .navmenu > ul {
        display: block !important;
        z-index: 9999;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100vh - 70px);
        padding: 20px 15px;
        margin: 0;
        pointer-events: auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Hide header and header-actions when mobile menu is active */
    .mobile-nav-active .header,
    .mobile-nav-active #header,
    .mobile-nav-active header.header {
        z-index: 9990 !important;
    }

    .mobile-nav-active .header-actions {
        z-index: 9990 !important;
        pointer-events: none !important;
    }

    .mobile-nav-active .header-actions .dropdown,
    .mobile-nav-active .header-actions .user-menu,
    .mobile-nav-active .header-actions .language-switcher {
        z-index: 9990 !important;
        pointer-events: none !important;
    }

    /* Hide quote and career buttons on mobile */
    .header-actions .btn-quote,
    .header-actions .btn-career {
        display: none !important;
    }

    /* Fix dropdown menus visibility on mobile */
    .header-actions .dropdown {
        position: relative !important;
        z-index: 10010 !important;
        overflow: visible !important;
    }

    .header-actions .user-menu {
        z-index: 10010 !important;
        position: relative !important;
    }

    .header-actions .language-switcher {
        z-index: 10010 !important;
        position: relative !important;
    }

    .header-actions .dropdown-menu {
        z-index: 10010 !important;
        position: fixed !important;
        pointer-events: none !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        min-width: 200px !important;
        max-width: min(90vw, 250px) !important;
        max-height: calc(100vh - 100px) !important;
        top: auto !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        margin-top: 0 !important;
        transform: translateX(0) translateY(0) !important;
        will-change: transform !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        border-radius: 8px !important;
        background-color: #ffffff !important;
        transition: opacity 0.15s linear, visibility 0.15s linear !important;
    }

    .header-actions .dropdown-menu.show {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .header-actions .dropdown-menu-end {
        right: auto !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
    }

    /* Improve language dropdown items display on mobile */
    .header-actions .dropdown-menu .dropdown-item {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 10px 16px !important;
        font-size: 15px !important;
        white-space: nowrap !important;
        min-height: 44px !important;
        line-height: 1.5 !important;
    }

    /* Style icons in dropdown items */
    .header-actions .dropdown-menu .dropdown-item i {
        font-size: 18px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        width: 24px !important;
        height: 24px !important;
    }
}

/*--------------------------------------------------------------
# Global Footer - Professional Design
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
    padding: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    overflow: visible;
}

.footer .footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 92%);
}

.footer .footer-section {
    height: 100%;
}

/* Footer Logo */
.footer .footer-logo {
    display: inline-block;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.footer .footer-logo:hover {
    transform: translateY(-3px);
}

.footer .footer-logo img {
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* Footer Description */
.footer .footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 30px;
    max-width: 100%;
    padding: 0 20px;
}

/* Footer Title */
.footer .footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    display: block;
    width: 100%;
}

.footer .footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), transparent 30%)
    );
    border-radius: 2px;
}

/* Footer Menu */
.footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-menu li {
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.footer .footer-menu li:hover {
    transform: translateX(5px);
}

.footer .footer-menu li:last-child {
    margin-bottom: 0;
}

.footer .footer-menu a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 0;
}

.footer .footer-menu a::before {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.footer .footer-menu a:hover {
    color: var(--accent-color);
    padding-right: 20px;
}

.footer .footer-menu a:hover::before {
    width: 12px;
}

/* Contact Info */
.footer .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0;
}

.footer .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer .contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 90%),
        color-mix(in srgb, var(--accent-color), transparent 95%)
    );
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer .contact-info-item:hover .contact-icon {
    background: var(--accent-color);
    transform: scale(1.1) rotate(5deg);
}

.footer .contact-icon i {
    color: var(--accent-color);
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer .contact-info-item:hover .contact-icon i {
    color: var(--contrast-color);
}

.footer .contact-text {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 40px;
}

.footer .contact-text span,
.footer .contact-text a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .contact-text a:hover {
    color: var(--accent-color);
}

/* Social Links */
.footer .footer-social-links {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.footer .social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer .social-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.footer .social-link i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.footer .social-link:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px
        color-mix(in srgb, var(--accent-color), transparent 40%);
}

.footer .social-link:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.footer .social-link:hover i {
    color: var(--contrast-color);
}

/* Footer Bottom */
.footer .footer-bottom {
    background-color: color-mix(in srgb, var(--background-color), #000 2%);
    padding: 25px 0;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 92%);
    display: block;
    visibility: visible;
    overflow: visible;
    min-height: 60px;
    margin-top: 0;
}

.footer .copyright-content {
    text-align: center;
}

.footer .copyright-text {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer .copyright-text .company-link,
.footer .copyright-text .designer-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer .copyright-text .company-link:hover,
.footer .copyright-text .designer-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer .copyright-text .company-name {
    color: var(--accent-color);
    font-weight: 700;
    padding: 0 5px;
}

.footer .tagline-text {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
    font-style: italic;
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
    .footer .footer-top {
        padding: 50px 0 35px;
    }

    .footer .footer-about {
        margin-top: 40px;
    }

    .footer .footer-logo img {
        max-height: 90px;
    }
}

@media (max-width: 768px) {
    .footer .container {
        overflow: visible;
    }

    .footer .row {
        overflow: visible;
    }

    .footer .footer-top {
        padding: 45px 0 50px;
        text-align: center;
        margin-bottom: 0;
        overflow: visible;
    }

    .footer .footer-section {
        margin-bottom: 40px;
    }

    .footer .footer-section:last-child {
        margin-bottom: 0;
    }

    .footer .footer-logo {
        display: block;
        margin: 0 auto 25px;
    }

    .footer .footer-logo img {
        max-height: 85px;
    }

    .footer .footer-description {
        text-align: center;
        margin: 0 auto 30px;
        max-width: 500px;
        padding: 0 15px;
    }

    .footer .footer-title {
        display: block;
        width: 100%;
    }

    .footer .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }

    .footer .footer-menu {
        display: inline-block;
        text-align: center;
    }

    .footer .footer-menu li {
        text-align: center;
    }

    .footer .footer-menu a:hover {
        padding-right: 0;
        padding-left: 0;
    }

    .footer .footer-menu a::before {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    .footer .footer-menu a:hover::before {
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    .footer .footer-contact-info {
        align-items: center;
        max-width: 400px;
        margin: 30px auto;
    }

    .footer .contact-info-item {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
    }

    .footer .contact-text {
        text-align: center;
        justify-content: center;
    }

    .footer .footer-social-links {
        justify-content: center;
    }

    .footer .footer-bottom {
        padding: 20px 0;
        display: block;
        visibility: visible;
        overflow: visible;
        min-height: 50px;
        margin-top: 0;
    }

    .footer .copyright-content {
        padding: 0 15px;
    }

    .footer .copyright-text {
        font-size: 13px;
        padding: 0 10px;
    }

    .footer .tagline-text {
        font-size: 12px;
    }

    /* Mobile Footer Badges - Commercial Register and Business Platform */
    .footer .footer-mobile-badges {
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid
            color-mix(in srgb, var(--default-color), transparent 92%);
    }

    .footer .footer-mobile-badges > .col-12 > .row {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .footer .footer-mobile-badges .col-6 {
        padding: 0 5px;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .footer .footer-mobile-badges img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .footer .container {
        overflow: visible;
    }

    .footer .row {
        overflow: visible;
    }

    .footer .footer-top {
        padding: 40px 0 40px;
        margin-bottom: 0;
        overflow: visible;
    }

    .footer .footer-logo img {
        max-height: 70px;
    }

    .footer .footer-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .footer .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer .footer-menu {
        text-align: center;
    }

    .footer .footer-menu li {
        text-align: center;
    }

    .footer .footer-menu a {
        font-size: 14px;
    }

    .footer .footer-contact-info {
        gap: 15px;
        margin: 25px auto;
    }

    .footer .contact-icon {
        width: 36px;
        height: 36px;
    }

    .footer .contact-icon i {
        font-size: 16px;
    }

    .footer .contact-text span,
    .footer .contact-text a {
        font-size: 14px;
    }

    .footer .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer .footer-bottom {
        padding: 15px 0;
        display: block;
        visibility: visible;
        overflow: visible;
        min-height: 45px;
        margin-top: 0;
    }

    .footer .copyright-content {
        padding: 0 10px;
    }

    .footer .copyright-text {
        font-size: 12px;
        line-height: 1.8;
        padding: 0 5px;
    }

    .footer .tagline-text {
        font-size: 11px;
    }

    /* Mobile Footer Badges - Commercial Register and Business Platform */
    .footer .footer-mobile-badges {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid
            color-mix(in srgb, var(--default-color), transparent 92%);
    }

    .footer .footer-mobile-badges .row {
        margin: 0;
    }

    .footer .footer-mobile-badges > .col-12 > .row {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .footer .footer-mobile-badges .col-6 {
        padding: 0 8px;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .footer .footer-mobile-badges img {
        max-width: 100%;
        height: auto;
    }

    .footer .footer-mobile-badges .row.flex {
        margin: 0;
    }
}

/* RTL Support */
[dir="rtl"] .footer .footer-menu a::before {
    right: auto;
    left: -15px;
}

[dir="rtl"] .footer .footer-menu a:hover {
    padding-right: 0;
    padding-left: 20px;
}

[dir="rtl"] .footer .footer-menu a:hover::before {
    left: -20px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.footer .footer-about .logo:hover {
    transform: scale(1.05);
}

.footer .footer-about .logo img {
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer .footer-about .logo .sitename {
    display: none;
}

.footer .footer-about .footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 0;
}

.footer .footer-about .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer .footer-about .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: color 0.3s ease;
}

.footer .footer-about .contact-item:hover {
    color: var(--accent-color);
}

.footer .footer-about .contact-item i {
    color: var(--accent-color);
    font-size: 18px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer .footer-about .contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .footer-about .contact-item a:hover {
    color: var(--accent-color);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .social-links a:hover {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px
        color-mix(in srgb, var(--accent-color), transparent 50%);
}

.footer h4 {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.footer h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), transparent 50%)
    );
    border-radius: 2px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

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

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# WhatsApp Floating Button
--------------------------------------------------------------*/
.whatsapp-float {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99998;
    background-color: #25d366;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 24px;
    color: #ffffff;
    line-height: 0;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float.active {
    visibility: visible;
    opacity: 1;
    bottom: 70px; /* Above scroll-top button (15px + 44px + 11px gap) */
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
}

.page-title h1 {
    font-size: 24px;
    font-weight: 700;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/* Mobile Responsive for Page Title */
@media (max-width: 768px) {
    .page-title {
        padding: 20px 0;
    }

    .page-title h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .page-title .breadcrumbs ol {
        font-size: 13px;
    }

    .page-title .breadcrumbs ol li + li {
        padding-left: 8px;
    }

    .page-title .breadcrumbs ol li + li::before {
        padding-right: 8px;
    }
}

@media (max-width: 576px) {
    .page-title {
        padding: 15px 0;
    }

    .page-title h1 {
        font-size: 18px;
    }

    .page-title .breadcrumbs ol {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 82px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 63px;
    }
}

/* Mobile Responsive for Sections */
@media (max-width: 768px) {
    section,
    .section {
        padding: 40px 0;
        scroll-margin-top: 90px;
        overflow: visible;
    }
}

@media (max-width: 576px) {
    section,
    .section {
        padding: 30px 0;
        scroll-margin-top: 85px;
        overflow: visible;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/* Mobile Responsive for Section Titles */
@media (max-width: 768px) {
    .section-title {
        padding-bottom: 40px;
    }

    .section-title h2 {
        font-size: 24px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .section-title h2:after {
        width: 40px;
        height: 2px;
    }

    .section-title p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .section-title {
        padding-bottom: 30px;
    }

    .section-title h2 {
        font-size: 20px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .section-title h2:after {
        width: 35px;
    }

    .section-title p {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(
        135deg,
        #f8f9fa 0%,
        #e8f5e9 25%,
        #f1f8e9 50%,
        #fff9e6 75%,
        #f8f9fa 100%
    );
    overflow: hidden;
}

/* Override dark-background for hero section */
.hero.dark-background {
    --background-color: transparent;
    --default-color: #2c3e2d;
    --heading-color: #1b5e20;
    --surface-color: rgba(255, 255, 255, 0.95);
    --contrast-color: #1b5e20;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 50%,
            rgba(27, 94, 32, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(255, 215, 0, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 20%,
            rgba(46, 125, 50, 0.03) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(27, 94, 32, 0.02) 2px,
            rgba(27, 94, 32, 0.02) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 215, 0, 0.02) 2px,
            rgba(255, 215, 0, 0.02) 4px
        );
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero .hero-content {
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .hero .hero-content {
        margin-bottom: 0;
    }
}

.hero .hero-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.1);
    border: 1px solid rgba(27, 94, 32, 0.1);
}

.hero .hero-tag i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.hero .hero-tag span {
    color: var(--accent-color);
    font-weight: 600;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1b5e20;
    text-shadow: none;
}

.hero h1 .highlight {
    color: var(--accent-color);
}

@media (min-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

.hero .lead {
    color: #2c3e2d;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: none;
    line-height: 1.8;
}

.hero .hero-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.hero .hero-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.hero .hero-features li {
    color: #1b5e20;
    text-shadow: none;
    font-weight: 500;
}

.hero .hero-features li i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    filter: none;
}

.hero .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero .hero-cta .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero .hero-cta .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
    color: #ffffff;
}

.hero .hero-cta .btn-link {
    color: #2c3e2d;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(27, 94, 32, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero .hero-cta .btn-link i {
    margin-right: 0.5rem;
}

.hero .hero-cta .btn-link:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.15);
}

.hero .hero-image-wrapper {
    position: relative;
    padding: 0 40px;
}

.hero .hero-image-wrapper .hero-image {
    border-radius: 10px;
}

.hero .hero-image-wrapper .stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 150px;
    border: 1px solid rgba(27, 94, 32, 0.1);
}

.hero .hero-image-wrapper .stat-card.top-right {
    top: 40px;
    right: 0px;
}

.hero .hero-image-wrapper .stat-card.bottom-left {
    bottom: 40px;
    left: 0px;
}

.hero .hero-image-wrapper .stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.hero .hero-image-wrapper .stat-card .stat-label {
    font-size: 0.875rem;
    color: #1b5e20;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero .hero-image-wrapper .stat-card .stat-icon {
    align-self: flex-end;
    font-size: 1.25rem;
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

/* Mobile Responsive for Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .hero .lead {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    .hero .hero-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .hero .hero-tag i {
        font-size: 14px;
        margin-right: 0.4rem;
    }

    .hero .hero-features {
        margin-bottom: 1.5rem;
    }

    .hero .hero-features li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .hero .hero-features li i {
        font-size: 14px;
    }

    .hero .hero-cta {
        gap: 0.75rem;
        flex-direction: column;
        width: 100%;
    }

    .hero .hero-cta .btn-primary,
    .hero .hero-cta .btn-link {
        width: 100%;
        padding: 0.7rem 1.25rem;
        font-size: 0.95rem;
        justify-content: center;
    }

    .hero .hero-image-wrapper {
        padding: 0 20px;
        margin-top: 2rem;
        height: auto;
        min-height: 300px;
    }

    .hero .hero-image-wrapper .hero-image {
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
    }

    .hero .hero-image-wrapper .stat-card {
        min-width: 120px;
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .hero .hero-image-wrapper .stat-card .stat-value {
        font-size: 1.25rem;
    }

    .hero .hero-image-wrapper .stat-card .stat-label {
        font-size: 0.75rem;
    }

    .hero .hero-image-wrapper .stat-card .stat-icon {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .hero .lead {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero .hero-tag {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }

    .hero .hero-features li {
        font-size: 0.85rem;
    }

    .hero .hero-cta .btn-primary,
    .hero .hero-cta .btn-link {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }

    .hero .hero-image-wrapper {
        padding: 0;
        margin-top: 1.5rem;
        height: auto;
        min-height: 250px;
    }

    .hero .hero-image-wrapper .hero-image {
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
    }

    .hero .hero-image-wrapper .stat-card {
        position: relative;
        min-width: 100px;
        padding: 0.6rem;
        margin-bottom: 1rem;
    }

    .hero .hero-image-wrapper .stat-card.top-right,
    .hero .hero-image-wrapper .stat-card.bottom-left {
        inset: auto;
        margin-top: 20px;
        position: relative;
        display: inline-block;
        width: calc(50% - 5px);
        vertical-align: top;
    }

    .hero .hero-image-wrapper .stat-card .stat-value {
        font-size: 1.1rem;
    }

    .hero .hero-image-wrapper .stat-card .stat-label {
        font-size: 0.7rem;
    }
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.hero-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
    background: transparent;
}

.hero-slider .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Smooth slide transition */
.hero-slider .swiper-slide {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Fade effect for better transition */
.hero-slider .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.3;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slider .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Particles Effect for Hero Slider */
.hero-slider-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(
            2px 2px at 20% 30%,
            rgba(27, 94, 32, 0.15),
            transparent
        ),
        radial-gradient(
            2px 2px at 60% 70%,
            rgba(255, 215, 0, 0.15),
            transparent
        ),
        radial-gradient(1px 1px at 50% 50%, rgba(46, 125, 50, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(27, 94, 32, 0.1), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(255, 215, 0, 0.1), transparent),
        radial-gradient(
            1px 1px at 33% 60%,
            rgba(46, 125, 50, 0.15),
            transparent
        ),
        radial-gradient(2px 2px at 10% 80%, rgba(27, 94, 32, 0.12), transparent),
        radial-gradient(
            1px 1px at 70% 90%,
            rgba(255, 215, 0, 0.12),
            transparent
        );
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%, 25% 25%,
        75% 75%, 50% 50%;
    animation: particlesMove 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

@keyframes particlesMove {
    0%,
    100% {
        background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%,
            25% 25%, 75% 75%, 50% 50%;
    }
    25% {
        background-position: 10% 10%, 90% 10%, 10% 90%, 90% 90%, 60% 60%,
            35% 35%, 65% 65%, 60% 60%;
    }
    50% {
        background-position: 20% 20%, 80% 20%, 20% 80%, 80% 80%, 50% 50%,
            25% 25%, 75% 75%, 50% 50%;
    }
    75% {
        background-position: 15% 15%, 85% 15%, 15% 85%, 85% 85%, 55% 55%,
            30% 30%, 70% 70%, 55% 55%;
    }
}

.hero-slider .swiper-slide {
    height: auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: transparent;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero-slider .swiper-slide-active {
    opacity: 1;
}

.hero-slider .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(248, 249, 250, 0.05) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.hero-slider .swiper-slide .container {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Smooth transition for slide content */
.hero-slider .swiper-slide:not(.swiper-slide-active) .hero-content,
.hero-slider .swiper-slide:not(.swiper-slide-active) .hero-image-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-slider .swiper-slide-active .hero-content,
.hero-slider .swiper-slide-active .hero-image-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-slider .swiper-slide-active .hero-image-wrapper {
    transition-delay: 0.3s;
}

/* Hero Slider Navigation Arrows */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(27, 94, 32, 0.15);
    pointer-events: all;
    z-index: 11;
    border: 1px solid rgba(27, 94, 32, 0.1);
}

.hero-slider-prev {
    right: 30px;
}

.hero-slider-next {
    left: 30px;
}

.hero-slider-prev i,
.hero-slider-next i {
    font-size: 24px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.4);
    border-color: var(--accent-color);
}

.hero-slider-prev:hover i,
.hero-slider-next:hover i {
    color: #ffffff !important;
}

/* Hero Slider Pagination Dots */
.hero-slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0.7;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
    border: 2px solid rgba(27, 94, 32, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-slider-pagination .swiper-pagination-bullet:hover {
    opacity: 1;
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.9);
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
    border-color: var(--accent-color);
    width: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.4);
}

/* RTL Support for Hero Slider */
[dir="rtl"] .hero-slider-prev {
    right: auto;
    left: 30px;
}

[dir="rtl"] .hero-slider-next {
    left: auto;
    right: 30px;
}

/* Responsive Design for Hero Slider */
@media (max-width: 991px) {
    .hero-slider .swiper-slide {
        min-height: 500px;
        padding: 60px 0;
    }

    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
    }

    .hero-slider-prev {
        right: 15px;
    }

    .hero-slider-next {
        left: 15px;
    }

    .hero-slider-prev i,
    .hero-slider-next i {
        font-size: 20px;
    }

    [dir="rtl"] .hero-slider-prev {
        left: 15px;
    }

    [dir="rtl"] .hero-slider-next {
        right: 15px;
    }

    .hero-slider-pagination {
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .hero-slider .swiper-slide {
        min-height: auto;
        padding: 50px 0;
    }

    .hero-slider-prev,
    .hero-slider-next {
        width: 35px;
        height: 35px;
        display: none; /* Hide arrows on mobile for cleaner look */
    }

    .hero-slider-pagination {
        bottom: 15px;
    }

    .hero-slider-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }

    .hero-slider-pagination .swiper-pagination-bullet-active {
        width: 25px;
    }

    /* Improve hero content on mobile */
    .hero-slider .swiper-slide .hero-content {
        text-align: center;
        padding: 0 15px;
    }

    .hero-slider .swiper-slide .hero-image-wrapper {
        margin-top: 2rem;
        padding: 0 15px;
        height: auto;
        min-height: 300px;
    }

    .hero-slider .swiper-slide .hero-image-wrapper .hero-image {
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
    }
}

@media (max-width: 576px) {
    .hero-slider .swiper-slide {
        padding: 40px 0;
    }

    .hero-slider-pagination {
        bottom: 10px;
    }

    .hero-slider-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 2px;
    }

    .hero-slider-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-heading {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
}

.about .section-heading:after {
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about .lead {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about .feature-box {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about .feature-box:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    z-index: -1;
    transition: height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    border-radius: 12px;
}

.about .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: none;
}

.about .feature-box:hover:before {
    height: 100%;
}

.about .feature-box:hover .icon-container {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.about .feature-box .icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px
        color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about .feature-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.about .feature-box p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about .about-content-box {
    padding: 2rem;
}

.about .about-content-box h3 {
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.about .about-content-box p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about .about-content-box .progress-item {
    margin-bottom: 1.2rem;
}

.about .about-content-box .progress-item .progress-title {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 1rem;
}

.about .about-content-box .progress-item .progress-percent {
    font-weight: 700;
    color: var(--accent-color);
}

.about .about-content-box .progress-item .progress {
    height: 8px;
    border-radius: 4px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    margin-top: 0.5rem;
    overflow: hidden;
}

.about .about-content-box .progress-item .progress .progress-bar {
    background-color: var(--accent-color);
    border-radius: 4px;
}

.about .about-content-box .btn-discover {
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about .about-content-box .btn-discover:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: color-mix(in srgb, var(--accent-color), #000 15%);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 30px;
}

.about .about-content-box .btn-discover:hover {
    box-shadow: 0 8px 25px
        color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about .about-content-box .btn-discover:hover:before {
    width: 100%;
}

/* About Actions Buttons - Unified Professional Design */
.about .about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about .about-actions .btn-action-primary,
.about .about-actions .btn-action-secondary {
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Primary Action Button - Green */
.about .about-actions .btn-action-primary {
    background: var(--accent-color);
    color: #ffffff;
}

.about .about-actions .btn-action-primary:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: color-mix(in srgb, var(--accent-color), #000 15%);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 30px;
}

.about .about-actions .btn-action-primary:hover {
    color: #ffffff;
    box-shadow: 0 8px 25px
        color-mix(in srgb, var(--accent-color), transparent 80%);
    transform: translateY(-2px);
}

.about .about-actions .btn-action-primary:hover:before {
    width: 100%;
}

/* Secondary Action Button - Gold */
.about .about-actions .btn-action-secondary {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #1b5e20;
}

.about .about-actions .btn-action-secondary:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 30px;
}

.about .about-actions .btn-action-secondary:hover {
    color: #1b5e20;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.about .about-actions .btn-action-secondary:hover:before {
    width: 100%;
}

/* Join as Marketer Button in About Section - Same as Header */
.about .about-actions .btn-join-marketer {
    position: relative;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 50%, #ff8c00 100%);
    color: #1a1a1a;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4),
        0 8px 25px rgba(255, 165, 0, 0.3), inset 0 -3px 0 rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.about .about-actions .btn-join-marketer::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffa500, #ffd700);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.about .about-actions .btn-join-marketer i {
    font-size: 1.1em;
    animation: sparkle 2s ease-in-out infinite;
}

.about .about-actions .btn-join-marketer:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6),
        0 12px 35px rgba(255, 165, 0, 0.5), inset 0 -4px 0 rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    color: #0a0a0a;
}

.about .about-actions .btn-join-marketer:hover::before {
    opacity: 1;
}

.about .about-actions .btn-join-marketer:hover i {
    animation: sparkle-fast 1s ease-in-out infinite;
}

.about .about-actions .btn-join-marketer:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 576px) {
    .about .about-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .about .about-actions .btn-action-primary,
    .about .about-actions .btn-action-secondary,
    .about .about-actions .btn-join-marketer {
        width: 100%;
        justify-content: center;
    }
}

.about .about-image-grid {
    position: relative;
    height: 540px;
    margin: 0 2rem;
}

.about .about-image-grid .img-grid-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.about .about-image-grid .img-grid-secondary {
    position: absolute;
    bottom: 0;
    right: 30%;
    width: 50%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.about .about-image-grid .img-grid-tertiary {
    position: absolute;
    left: 0;
    bottom: 70px;
    width: 40%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.about .about-image-grid .experience-badge {
    position: absolute;
    right: 10px;
    bottom: 30px;
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 4;
}

.about .about-image-grid .experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.about .about-image-grid .experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
    max-width: 90px;
    line-height: 1.2;
}

@media (max-width: 1199px) {
    .about .about-image-grid {
        height: 480px;
    }

    .about .about-image-grid .img-grid-main {
        height: 300px;
    }

    .about .about-image-grid .img-grid-secondary {
        height: 200px;
    }

    .about .about-image-grid .img-grid-tertiary {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .about .section-heading {
        font-size: 2.2rem;
    }

    .about .about-content-box {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .about .about-content-box h3 {
        font-size: 1.8rem;
    }

    .about .about-image-grid {
        height: 450px;
        margin: 0 auto;
        max-width: 500px;
    }

    .about .about-image-grid .experience-badge {
        width: 100px;
        height: 100px;
    }

    .about .about-image-grid .experience-badge .years {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .about {
        padding: 40px 0;
    }

    .about .section-heading {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        padding-bottom: 15px;
    }

    .about .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .about .feature-box {
        padding: 1.8rem 1rem;
        margin-bottom: 1.5rem;
    }

    .about .feature-box .icon-container {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .about .feature-box h4 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .about .feature-box p {
        font-size: 0.9rem;
    }

    .about .about-content-box {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .about .about-content-box h3 {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }

    .about .about-content-box p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .about .about-content-box .progress-item {
        margin-bottom: 1rem;
    }

    .about .about-content-box .progress-item .progress-title {
        font-size: 0.95rem;
    }

    .about .about-image-grid {
        height: 380px;
        margin-bottom: 2rem;
    }

    .about .about-image-grid .img-grid-main {
        width: 75%;
        height: 240px;
    }

    .about .about-image-grid .img-grid-secondary {
        width: 55%;
        height: 170px;
    }

    .about .about-image-grid .img-grid-tertiary {
        width: 40%;
        height: 170px;
    }

    .about .about-image-grid .experience-badge {
        width: 90px;
        height: 90px;
        right: 5px;
        bottom: 20px;
    }

    .about .about-image-grid .experience-badge .years {
        font-size: 1.75rem;
    }

    .about .about-image-grid .experience-badge .text {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .about .section-heading {
        font-size: 1.5rem;
    }

    .about .feature-box {
        padding: 1.5rem 0.9rem;
    }

    .about .feature-box .icon-container {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .about .feature-box h4 {
        font-size: 1.05rem;
    }

    .about .about-content-box h3 {
        font-size: 1.4rem;
    }

    .about .about-image-grid {
        height: 350px;
    }

    .about .about-image-grid .img-grid-main {
        width: 70%;
        height: 220px;
    }

    .about .about-image-grid .img-grid-secondary {
        width: 50%;
        height: 150px;
    }

    .about .about-image-grid .img-grid-tertiary {
        width: 38%;
        height: 150px;
    }

    .about .about-image-grid .experience-badge {
        width: 80px;
        height: 80px;
    }

    .about .about-image-grid .experience-badge .years {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-overview {
    height: 100%;
    padding: 30px;
}

.stats .stats-overview h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.stats .stats-overview h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .stats .stats-overview h3::after {
        margin: 0;
    }
}

.stats .stats-overview p {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.7;
    margin-bottom: 0;
}

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

.stats .stats-card {
    background: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats .stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stats .stats-card .stats-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.stats .stats-card .stats-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

/* Fix for bi-person-shield icon - create custom icon using existing icons */
.bi-person-shield {
    position: relative;
    display: inline-block;
}

.bi-person-shield::before {
    content: "\f4e1"; /* bi-person */
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
}

.bi-person-shield::after {
    content: "\f52f"; /* bi-shield-check */
    position: absolute;
    font-size: 0.5em;
    bottom: -2px;
    right: -2px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 0.85em;
    height: 0.85em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0.08em;
    box-sizing: border-box;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    vertical-align: -0.125em;
}

.stats .stats-card .stats-content {
    flex-grow: 1;
}

.stats .stats-card .stats-content .stats-number {
    display: flex;
    align-items: baseline;
}

.stats .stats-card .stats-content .stats-number .purecounter {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
    line-height: 1;
}

.stats .stats-card .stats-content .stats-number .plus {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-left: 2px;
}

.stats .stats-card .stats-content p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 5px 0 0;
    font-weight: 500;
    font-family: var(--heading-font);
}

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

    .stats .stats-overview {
        padding: 20px 15px;
        text-align: center;
        margin-bottom: 2rem;
    }

    .stats .stats-overview h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .stats .stats-overview p {
        font-size: 14px;
    }

    .stats .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stats .stats-card {
        padding: 18px;
    }

    .stats .stats-card .stats-icon {
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }

    .stats .stats-card .stats-icon i {
        font-size: 20px;
    }

    .stats .stats-card .stats-content .stats-number .purecounter {
        font-size: 26px;
    }

    .stats .stats-card .stats-content .stats-number .plus {
        font-size: 18px;
    }

    .stats .stats-card .stats-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .stats .stats-overview h3 {
        font-size: 20px;
    }

    .stats .stats-card {
        padding: 15px;
    }

    .stats .stats-card .stats-icon {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }

    .stats .stats-card .stats-icon i {
        font-size: 18px;
    }

    .stats .stats-card .stats-content .stats-number .purecounter {
        font-size: 24px;
    }

    .stats .stats-card .stats-content .stats-number .plus {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
    padding-top: 60px;
    padding-bottom: 30px;
}

.services .services-row {
    position: relative;
}

.services .services-headline .services-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.services .services-headline .services-title {
    color: var(--heading-color);
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.services .services-description {
    margin-bottom: 30px;
}

.services .services-description p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.services .services-image-container {
    position: relative;
    margin-bottom: 30px;
}

.services .services-image-container .services-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 460px;
}

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

.services .services-grid {
    margin-left: 50px;
}

@media (max-width: 991px) {
    .services .services-grid {
        margin-left: 0;
        margin-top: 70px;
    }
}

.services .service-card {
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 25px;
    padding: 30px 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(154, 154, 154, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.services .service-card:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.services .service-card:hover .service-icon {
    color: var(--contrast-color);
    transform: scale(0.95);
}

.services .service-card:hover .service-info h3 a,
.services .service-card:hover .service-info p {
    color: var(--contrast-color);
    transform: scale(0.95);
}

.services .service-card:hover .service-content .read-more-btn {
    background-color: color-mix(
        in srgb,
        var(--contrast-color),
        transparent 84%
    );
    color: var(--contrast-color);
}

.services .service-content .service-icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    margin: 0 auto;
    font-size: 48px;
    color: var(--heading-color);
    transition: all 0.3s ease;
}

.services .service-content .service-info h3 {
    font-size: 1.4rem;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.services .service-content .service-info h3 a {
    color: var(--heading-color);
    text-decoration: none;
}

.services .service-content .service-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.services .service-content .service-action {
    margin-top: 20px;
}

.services .service-content .service-action .read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(27, 94, 32, 0.2);
    border: none;
    cursor: pointer;
}

.services .service-content .service-action .read-more-btn:hover {
    background-color: #155116;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.services .service-content .service-action .read-more-btn i {
    margin-left: 5px;
}

@media (max-width: 767px) {
    .services {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .services .services-headline {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .services .services-headline .services-subtitle {
        font-size: 16px;
    }

    .services .services-headline .services-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }

    .services .services-description {
        text-align: center;
        margin-bottom: 2rem;
    }

    .services .services-description p {
        font-size: 1rem;
    }

    .services .services-image-container {
        margin-bottom: 2rem;
    }

    .services .services-image-container .services-image {
        height: 300px;
    }

    .services .services-grid {
        margin-top: 2rem;
    }

    .services .service-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .services .service-content .service-icon {
        width: 55px;
        height: 55px;
        line-height: 55px;
        font-size: 40px;
    }

    .services .service-content .service-info h3 {
        font-size: 1.2rem;
        margin: 12px 0;
    }

    .services .service-content .service-info p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .services .service-content .service-action .read-more-btn {
        padding: 7px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .services .services-headline .services-title {
        font-size: 1.5rem;
    }

    .services .services-image-container .services-image {
        height: 250px;
    }

    .services .service-card {
        padding: 20px 15px;
    }

    .services .service-content .service-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 36px;
    }

    .services .service-content .service-info h3 {
        font-size: 1.1rem;
    }

    .services .service-content .service-info p {
        font-size: 0.9rem;
    }
}

/*--------------------------------------------------------------
# Clients Section - Swiper Slider
--------------------------------------------------------------*/
.clients {
    padding: 60px 0;
    background-color: #f9fafb;
    overflow: hidden;
}

.clients-swiper {
    width: 100%;
    padding: 20px 0;
}

.clients-swiper .swiper-slide {
    width: auto !important;
}

.clients-slide {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 20px;
}

.clients-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.clients-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.clients-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .clients {
        padding: 50px 0;
    }

    .clients-slide {
        width: 180px;
        height: 110px;
        padding: 18px;
    }
}

@media (max-width: 767px) {
    .clients {
        padding: 40px 0;
    }

    .clients-slide {
        width: 150px;
        height: 90px;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .clients {
        padding: 30px 0;
    }

    .clients-slide {
        width: 130px;
        height: 80px;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .clients {
        padding: 25px 0;
    }

    .clients .clients-slide {
        width: 120px;
        height: 60px;
        margin: 0 10px;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
    color: #ffd700;
}

.testimonials .testimonial-item .stars i {
    margin-right: 2px;
}

.testimonials .testimonial-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--default-color);
}

.testimonials .testimonial-item .testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author {
    display: flex;
    align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
}

.testimonials
    .testimonial-item
    .testimonial-footer
    .testimonial-author
    div
    span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 36px;
    color: color-mix(in srgb, var(--accent-color), transparent 70%);
    line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
    transform: scaleX(-1);
}

@media (max-width: 768px) {
    .testimonials .testimonial-item {
        padding: 25px 20px;
    }

    .testimonials .testimonial-item p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .testimonials
        .testimonial-item
        .testimonial-footer
        .testimonial-author
        img {
        width: 45px;
        height: 45px;
    }

    .testimonials
        .testimonial-item
        .testimonial-footer
        .testimonial-author
        div
        h5 {
        font-size: 16px;
    }

    .testimonials
        .testimonial-item
        .testimonial-footer
        .testimonial-author
        div
        span {
        font-size: 13px;
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .testimonials .testimonial-item {
        padding: 20px 15px;
    }

    .testimonials
        .testimonial-item
        .testimonial-footer
        .testimonial-author
        img {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work .steps-wrapper {
    position: relative;
    padding: 20px 0;
}

.how-we-work .steps-wrapper::before {
    content: "";
    position: absolute;
    width: 2px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.how-we-work .step-item {
    margin-bottom: 50px;
    width: 100%;
    position: relative;
}

.how-we-work .step-item:last-child {
    margin-bottom: 0;
}

.how-we-work .step-item:nth-child(even) .step-content {
    flex-direction: row-reverse;
}

.how-we-work .step-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.how-we-work .step-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    transition: all 0.3s ease-in-out;
}

.how-we-work .step-icon i {
    font-size: 32px;
    color: var(--accent-color);
    transition: transform 0.3s ease-in-out;
}

.how-we-work .step-info {
    flex: 1;
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
}

.how-we-work .step-info:hover {
    transform: translateY(-5px);
}

.how-we-work .step-number {
    display: inline-block;
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.how-we-work h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--heading-color);
}

.how-we-work p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .how-we-work .steps-wrapper::before {
        left: 25px;
    }

    .how-we-work .step-item .step-content {
        flex-direction: row !important;
    }

    .how-we-work .step-icon {
        width: 60px;
        height: 60px;
    }

    .how-we-work .step-icon i {
        font-size: 24px;
    }

    .how-we-work .step-info {
        padding: 20px;
    }

    .how-we-work h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .how-we-work {
        padding: 40px 0;
    }

    .how-we-work .steps-wrapper {
        padding: 15px 0;
    }

    .how-we-work .steps-wrapper::before {
        left: 20px;
    }

    .how-we-work .step-item {
        margin-bottom: 30px;
    }

    .how-we-work .step-content {
        gap: 15px;
    }

    .how-we-work .step-icon {
        width: 50px;
        height: 50px;
    }

    .how-we-work .step-icon i {
        font-size: 20px;
    }

    .how-we-work .step-info {
        padding: 18px;
    }

    .how-we-work .step-number {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .how-we-work h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .how-we-work p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .how-we-work .steps-wrapper::before {
        left: 15px;
    }

    .how-we-work .step-item {
        margin-bottom: 25px;
    }

    .how-we-work .step-content {
        gap: 12px;
    }

    .how-we-work .step-icon {
        width: 45px;
        height: 45px;
    }

    .how-we-work .step-icon i {
        font-size: 18px;
    }

    .how-we-work .step-info {
        padding: 15px;
    }

    .how-we-work h3 {
        font-size: 1.1rem;
    }

    .how-we-work p {
        font-size: 0.85rem;
    }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-tabs .nav-pills {
    display: inline-flex;
    padding: 8px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 50px;
}

.faq .faq-tabs .nav-pills .nav-item {
    margin: 0 5px;
}

.faq .faq-tabs .nav-pills .nav-item:first-child {
    margin-left: 0;
}

.faq .faq-tabs .nav-pills .nav-item:last-child {
    margin-right: 0;
}

.faq .faq-tabs .nav-pills .nav-link {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--default-color);
    transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link:hover {
    color: var(--accent-color);
}

.faq .faq-tabs .nav-pills .nav-link.active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq .faq-tabs .nav-pills .nav-link i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .faq .faq-tabs .nav-pills {
        flex-wrap: wrap;
        justify-content: center;
    }

    .faq .faq-tabs .nav-pills .nav-item {
        margin: 5px;
    }
}

.faq .faq-list .faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: var(--surface-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq .faq-list .faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq .faq-list .faq-item h3 {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--surface-color);
    transition: all 0.3s ease;
    position: relative;
}

.faq .faq-list .faq-item h3:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.faq .faq-list .faq-item h3 .num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 15px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.faq .faq-list .faq-item h3 .question {
    flex: 1;
}

.faq .faq-list .faq-item h3 .faq-toggle {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-left: 15px;
}

.faq .faq-list .faq-item .faq-content {
    padding: 15px;
    display: none;
}

.faq .faq-list .faq-item .faq-content p {
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.faq .faq-list .faq-item .faq-content p:last-child {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-list .faq-item.faq-active h3 {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faq .faq-list .faq-item.faq-active h3 .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
    display: block;
}

.faq .faq-cta {
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    padding: 30px;
    border-radius: 10px;
}

.faq .faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.faq .faq-cta .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq .faq-cta .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 15%);
    border-color: color-mix(in srgb, var(--accent-color), #000 15%);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .faq .faq-list .faq-item h3 {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq .faq-list .faq-item h3 .num {
        width: 24px;
        height: 24px;
        margin-right: 10px;
        font-size: 0.8rem;
    }

    .faq .faq-list .faq-item .faq-content .content-inner {
        padding: 0 20px;
    }

    .faq .faq-list .faq-item .faq-content.faq-active .content-inner {
        padding: 15px 20px;
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .cta-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: var(--surface-color);
    border-radius: 1rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.call-to-action .cta-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.call-to-action .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.call-to-action .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.9;
}

.call-to-action .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.call-to-action .cta-buttons .btn-primary {
    padding: 0.8rem 2rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.call-to-action .cta-buttons .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 15%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action .cta-buttons .btn-outline {
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--default-color);
    border: 2px solid var(--default-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.call-to-action .cta-buttons .btn-outline:hover {
    background-color: var(--contrast-color);
    color: var(--heading-color);
    transform: translateY(-3px);
}

.call-to-action .cta-image {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-to-action .cta-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.call-to-action .cta-image img:hover {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .call-to-action .cta-wrapper {
        flex-direction: column;
        padding: 2.5rem;
    }

    .call-to-action .cta-content {
        text-align: center;
    }

    .call-to-action .cta-content h2 {
        font-size: 2rem;
    }

    .call-to-action .cta-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .call-to-action .cta-buttons {
        justify-content: center;
    }

    .call-to-action .cta-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .call-to-action .cta-wrapper {
        padding: 2rem;
    }

    .call-to-action .cta-content h2 {
        font-size: 1.8rem;
    }

    .call-to-action .cta-content p {
        font-size: 1rem;
    }

    .call-to-action .cta-buttons .btn-primary,
    .call-to-action .cta-buttons .btn-outline {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .row {
    align-items: center;
}

@media (max-width: 991px) {
    .team .team-intro {
        margin-bottom: 40px;
    }
}

.team .team-intro .team-intro-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.team .team-intro .team-intro-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.team .team-intro .team-intro-content h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.team .team-intro .team-intro-content p {
    margin-bottom: 30px;
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-intro .team-navigation {
    display: flex;
    gap: 10px;
}

.team .team-intro .team-navigation button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team .team-intro .team-navigation button:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.team .member-card {
    display: flex;
    flex-direction: column;
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team .member-card:hover {
    transform: translateY(-10px);
}

.team .member-card:hover .member-image:before {
    opacity: 0.7;
}

.team .member-card .member-image {
    position: relative;
    overflow: visible;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.team .member-card .member-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    opacity: 0.4;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team .member-card .member-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.team .member-card .member-info {
    padding: 25px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team .member-card .member-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.team .member-card .member-info span {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.team .member-card .member-social {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.team .member-card .member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.team .member-card .member-social a:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

.team .member-card .member-bio p {
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
}

.team .team-carousel-wrap {
    overflow-x: hidden;
    padding: 30px 20px;
}

.team .team-carousel {
    overflow: visible;
}

.team .team-carousel .swiper-slide {
    height: auto;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
}

.contact .container {
    max-width: 1200px;
}

.contact .contact-main-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 992px) {
    .contact .contact-main-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr;
        grid-template-areas:
            "map contact-info"
            "map contact-form";
        gap: 30px;
        min-height: 600px;
        align-items: start;
    }
}

.contact .map-wrapper {
    height: 300px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    order: 2; /* Second in mobile: after contact cards */
}

@media (min-width: 992px) {
    .contact .map-wrapper {
        grid-area: map;
        grid-row: 1 / -1;
        height: 100%;
        min-height: 600px;
        position: sticky;
        top: 100px;
        order: unset;
    }
}

.contact .contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    order: 1; /* First in mobile: contact cards */
}

.contact .contact-form-wrapper {
    order: 3; /* Third in mobile: form */
}

@media (min-width: 992px) {
    .contact .contact-content {
        grid-area: contact-info;
        order: unset;
    }

    .contact .contact-form-wrapper {
        grid-area: contact-form;
        order: unset;
    }
}

.contact .contact-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 576px) {
    .contact .contact-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact .contact-card {
    background-color: var(--surface-color);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact .contact-card .icon-box i {
    font-size: 22px;
    color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading-color);
}

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

.contact .contact-form-container {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
    position: relative;
    padding-left: 15px;
}

.contact .contact-form-container h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.contact .contact-form-container > p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
    height: auto;
    padding: 14px 20px;
    border-radius: 10px;
    background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
    transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
    background-color: var(--surface-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px
        color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
    min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact {
        padding: 40px 0;
    }

    .contact .contact-main-wrapper {
        gap: 25px;
    }

    .contact .map-wrapper {
        height: 250px;
        border-radius: 12px;
    }

    .contact .contact-content {
        gap: 25px;
    }

    .contact .contact-cards-container {
        gap: 12px;
    }

    .contact .contact-card {
        padding: 18px;
        gap: 12px;
    }

    .contact .contact-card .icon-box {
        width: 45px;
        height: 45px;
    }

    .contact .contact-card .icon-box i {
        font-size: 20px;
    }

    .contact .contact-card .contact-text h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .contact .contact-card .contact-text p {
        font-size: 13px;
    }

    .contact .contact-form-container {
        padding: 25px 20px;
    }

    .contact .contact-form-container h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .contact .contact-form-container .form-header h3 {
        font-size: 20px;
    }

    .contact .contact-form-container .form-header p {
        font-size: 14px;
    }

    .contact .contact-form-container .php-email-form .form-control {
        padding: 12px 16px;
        font-size: 14px;
    }

    .contact .contact-form-container .php-email-form textarea.form-control {
        min-height: 120px;
    }

    .contact .contact-form-container .php-email-form button {
        padding: 11px 24px;
        font-size: 14px;
        width: 100%;
    }

    .contact .contact-form-container .php-email-form .social-links {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .contact .message-type-group .form-label {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .contact .radio-group {
        gap: 10px;
        flex-direction: column;
    }

    .contact .radio-option {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact .map-wrapper {
        height: 200px;
    }

    .contact .contact-cards-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact .contact-card {
        padding: 15px;
        gap: 10px;
    }

    .contact .contact-card .icon-box {
        width: 40px;
        height: 40px;
    }

    .contact .contact-card .icon-box i {
        font-size: 18px;
    }

    .contact .contact-card .contact-text h4 {
        font-size: 15px;
    }

    .contact .contact-card .contact-text p {
        font-size: 12px;
    }

    .contact .contact-form-container {
        padding: 20px 15px;
    }

    .contact .contact-form-container h3 {
        font-size: 18px;
    }

    .contact .contact-form-container .form-header h3 {
        font-size: 18px;
    }

    .contact .contact-form-container .php-email-form .form-control {
        padding: 11px 14px;
        font-size: 13px;
    }

    .contact .contact-form-container .php-email-form textarea.form-control {
        min-height: 100px;
    }

    .contact .contact-form-container .php-email-form .form-submit {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .contact .contact-form-container .php-email-form button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .contact .contact-form-container .php-email-form .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

.contact .contact-form-container .php-email-form button {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px
        color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
    display: flex;
    gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
    color: var(--heading-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

/* Professional Form Styles */
.contact .contact-form-container .form-header {
    margin-bottom: 30px;
}

.contact .contact-form-container .form-header h3 {
    margin-bottom: 10px;
}

.contact .contact-form-container .form-header p {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* Message Type Radio Buttons */
.contact .message-type-group {
    margin-bottom: 25px;
}

.contact .message-type-group .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.contact .message-type-group .form-label i {
    color: var(--accent-color);
    font-size: 18px;
}

.contact .radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact .radio-option {
    flex: 1;
    min-width: 150px;
}

.contact .radio-option input[type="radio"] {
    display: none;
}

.contact .radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact .radio-label::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.contact .radio-label:hover::before {
    left: 100%;
}

.contact .radio-label:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact .radio-option input[type="radio"]:checked + .radio-label {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px
        color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .radio-option input[type="radio"]:checked + .radio-label .radio-icon {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

.contact .radio-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 10px;
    color: var(--accent-color);
    transition: all 0.3s ease;
    font-size: 18px;
}

.contact .radio-text {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 15px;
}

/* Input Wrapper with Label */
.contact .input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.contact .input-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--heading-color);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact .input-label i {
    color: var(--accent-color);
    font-size: 16px;
}

.contact .input-wrapper:focus-within .input-label {
    color: var(--accent-color);
}

.contact .input-wrapper:focus-within .input-label i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.contact .input-focus {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), transparent 50%)
    );
    transition: width 0.3s ease;
    border-radius: 2px;
}

.contact .input-wrapper:focus-within .input-focus {
    width: 100%;
}

.contact .php-email-form .form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact .php-email-form .form-control:focus {
    outline: none;
    background-color: var(--surface-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px
        color-mix(in srgb, var(--accent-color), transparent 85%);
    transform: translateY(-1px);
}

.contact .php-email-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

/* Form Messages */
.contact .form-messages {
    margin: 20px 0;
    min-height: 50px;
}

.contact .loading-message,
.contact .error-message,
.contact .sent-message {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 500;
    animation: slideInDown 0.3s ease;
}

.contact .loading-message {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .error-message {
    background-color: color-mix(in srgb, #dc3545, transparent 95%);
    color: #dc3545;
    border: 1px solid color-mix(in srgb, #dc3545, transparent 80%);
}

.contact .sent-message {
    background-color: color-mix(in srgb, #28a745, transparent 95%);
    color: #28a745;
    border: 1px solid color-mix(in srgb, #28a745, transparent 80%);
}

.contact .loading-message.show,
.contact .error-message.show,
.contact .sent-message.show {
    display: flex;
}

.contact .loading-message i,
.contact .error-message i,
.contact .sent-message i {
    font-size: 20px;
}

/* Spinner */
.contact .spinner {
    width: 20px;
    height: 20px;
    border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.contact .spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit Button */
.contact .submit-btn {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #000 10%)
    );
    color: var(--contrast-color);
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px
        color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .submit-btn::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 ease, height 0.6s ease;
}

.contact .submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.contact .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px
        color-mix(in srgb, var(--accent-color), transparent 50%);
}

.contact .submit-btn:active {
    transform: translateY(-1px);
}

.contact .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact .btn-text,
.contact .btn-loader {
    position: relative;
    z-index: 1;
}

.contact .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Social Links */
.contact .social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--background-color), #f5f8fd 20%),
        color-mix(in srgb, var(--background-color), #f5f8fd 40%)
    );
    color: var(--heading-color);
    font-size: 17px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact .social-links a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.contact .social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.contact .social-links a i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.contact .social-links a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px
        color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .social-links a:hover i {
    color: var(--contrast-color);
}

/* Phone Field Animation */
.contact #phone-field {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .contact .contact-form-container {
        padding: 25px 20px;
    }

    .contact .contact-form-container h3 {
        font-size: 22px;
    }

    .contact .radio-group {
        flex-direction: column;
    }

    .contact .radio-option {
        min-width: 100%;
    }

    .contact .form-submit {
        flex-direction: column;
        align-items: stretch;
    }

    .contact .social-links {
        justify-content: center;
        margin-top: 15px;
    }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
    height: auto !important;
}

.service-details .service-sidebar {
    position: sticky;
    top: 100px;
}

.service-details .service-sidebar .service-overview {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.service-details .service-sidebar .service-overview .overview-header {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-details .service-sidebar .service-overview .overview-header i {
    font-size: 24px;
}

.service-details .service-sidebar .service-overview .overview-header h3 {
    color: var(--contrast-color);
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.service-details .service-sidebar .service-overview .overview-content {
    padding: 30px;
}

.service-details .service-sidebar .service-overview .overview-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.service-details .service-sidebar .service-overview .overview-content p {
    margin-bottom: 25px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details
    .service-sidebar
    .service-overview
    .overview-content
    .cta-button
    .btn-get-started {
    display: inline-block;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
    width: 100%;
}

.service-details
    .service-sidebar
    .service-overview
    .overview-content
    .cta-button
    .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-sidebar .key-benefits {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .key-benefits h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-details .service-sidebar .key-benefits h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.service-details .service-sidebar .key-benefits ul {
    padding-left: 0;
    list-style: none;
}

.service-details .service-sidebar .key-benefits ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .key-benefits ul li i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 12px;
}

.service-details .service-sidebar .contact-card {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-card .contact-header {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-details .service-sidebar .contact-card .contact-header i {
    font-size: 24px;
}

.service-details .service-sidebar .contact-card .contact-header h4 {
    color: var(--contrast-color);
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.service-details .service-sidebar .contact-card .contact-info {
    padding: 30px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-details
    .service-sidebar
    .contact-card
    .contact-info
    .info-row:last-child {
    margin-bottom: 0;
}

.service-details .service-sidebar .contact-card .contact-info .info-row i {
    font-size: 20px;
    color: var(--accent-color);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
}

.service-details
    .service-sidebar
    .contact-card
    .contact-info
    .info-row
    div
    span {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 5px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div p {
    margin: 0;
    font-weight: 600;
    color: var(--heading-color);
}

.service-details .service-content .image-gallery {
    margin-bottom: 40px;
}

.service-details .service-content .image-gallery .service-details-slider {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details
    .service-content
    .image-gallery
    .service-details-slider
    .swiper-pagination {
    bottom: 20px;
}

.service-details
    .service-content
    .image-gallery
    .service-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--contrast-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.service-details
    .service-content
    .image-gallery
    .service-details-slider
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

.service-details
    .service-content
    .image-gallery
    .service-details-slider
    .swiper-button-next,
.service-details
    .service-content
    .image-gallery
    .service-details-slider
    .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--contrast-color);
    transition: 0.3s;
}

.service-details
    .service-content
    .image-gallery
    .service-details-slider
    .swiper-button-next::after,
.service-details
    .service-content
    .image-gallery
    .service-details-slider
    .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.service-details
    .service-content
    .image-gallery
    .service-details-slider
    .swiper-button-next:hover,
.service-details
    .service-content
    .image-gallery
    .service-details-slider
    .swiper-button-prev:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    transform: scale(1.1);
}

.service-details .service-content .section-header {
    margin-bottom: 25px;
}

.service-details .service-content .section-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-details .service-content .section-header .divider {
    width: 70px;
    height: 3px;
    background: var(--accent-color);
}

.service-details .service-content .details-content {
    margin-bottom: 40px;
}

.service-details .service-content .details-content p {
    margin-bottom: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
}

.service-details .service-content .details-content p:last-child {
    margin-bottom: 0;
}

.service-details .service-content .service-features {
    margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-details .service-content .service-features .feature-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    z-index: -1;
    transition: 0.4s;
}

.service-details .service-content .service-features .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .service-features .feature-card:hover:before {
    height: 100%;
}

.service-details
    .service-content
    .service-features
    .feature-card:hover
    .icon-wrapper {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

.service-details
    .service-content
    .service-features
    .feature-card
    .icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    font-size: 26px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-details .service-content .service-features .feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-details .service-content .service-features .feature-card p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container {
    position: relative;
}

.service-details .service-content .implementation-steps .step-container:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 18px;
    width: 2px;
    background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .implementation-steps .step-container .step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.service-details
    .service-content
    .implementation-steps
    .step-container
    .step:last-child {
    margin-bottom: 0;
}

.service-details
    .service-content
    .implementation-steps
    .step-container
    .step
    .step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 700;
    border-radius: 50%;
    margin-right: 20px;
    z-index: 2;
    font-size: 14px;
}

.service-details
    .service-content
    .implementation-steps
    .step-container
    .step
    .step-content {
    flex: 1;
}

.service-details
    .service-content
    .implementation-steps
    .step-container
    .step
    .step-content
    h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-details
    .service-content
    .implementation-steps
    .step-container
    .step
    .step-content
    p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .service-details .service-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .service-details .service-content .service-features .feature-card {
        margin-bottom: 20px;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

/*--------------------------------------------------------------
# RTL Support for Arabic
--------------------------------------------------------------*/
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .header .logo img {
    margin-right: 0;
    margin-left: 8px;
}

[dir="rtl"] .header-actions {
    margin-left: 0;
    margin-right: 80px;
}

[dir="rtl"] .header .btn-getstarted {
    margin: 0 30px 0 0;
}

[dir="rtl"] .navmenu a i,
[dir="rtl"] .navmenu a:focus i {
    margin-left: 0;
    margin-right: 5px;
}

[dir="rtl"] .hero .hero-tag i {
    margin-right: 0;
    margin-left: 0.5rem;
}

[dir="rtl"] .hero .hero-features li i {
    margin-right: 0;
    margin-left: 0.5rem;
}

[dir="rtl"] .hero .hero-cta .btn-link i {
    margin-right: 0;
    margin-left: 0.5rem;
}

[dir="rtl"] .about .about-image-grid .img-grid-main {
    right: auto;
    left: 0;
}

[dir="rtl"] .about .about-image-grid .img-grid-secondary {
    right: auto;
    left: 30%;
}

[dir="rtl"] .about .about-image-grid .img-grid-tertiary {
    left: auto;
    right: 0;
}

[dir="rtl"] .about .about-image-grid .experience-badge {
    right: auto;
    left: 10px;
}

[dir="rtl"] .stats .stats-card .stats-icon {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .stats .stats-card .stats-content .stats-number .plus {
    margin-left: 2px;
    margin-right: 0;
}

/* Force LTR for numbers to display correctly in RTL */
[dir="rtl"] .stats .stats-card .stats-content .stats-number {
    direction: ltr;
    justify-content: flex-start;
}

[dir="rtl"] .services .services-grid {
    margin-left: 0;
    margin-right: 50px;
}

[dir="rtl"]
    .testimonials
    .testimonial-item
    .testimonial-footer
    .testimonial-author
    img {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .how-we-work .steps-wrapper::before {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

[dir="rtl"] .how-we-work .step-item:nth-child(even) .step-content {
    flex-direction: row;
}

[dir="rtl"] .how-we-work .step-item:nth-child(odd) .step-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .faq .faq-list .faq-item h3 .num {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .faq .faq-list .faq-item h3 .faq-toggle {
    margin-left: 0;
    margin-right: 15px;
}

[dir="rtl"] .team .member-card .member-social {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact .contact-form-container h3:before {
    left: auto;
    right: 0;
}

[dir="rtl"] .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: row-reverse;
}

[dir="rtl"]
    .service-details
    .service-content
    .implementation-steps
    .step-container:before {
    left: auto;
    right: 18px;
}

[dir="rtl"]
    .service-details
    .service-content
    .implementation-steps
    .step-container
    .step
    .step-number {
    margin-right: 0;
    margin-left: 20px;
}

[dir="rtl"] .footer .footer-about .logo img {
    margin-right: 0;
    margin-left: 6px;
}

[dir="rtl"] .footer .social-links a {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .footer .footer-links ul i {
    padding-right: 0;
    padding-left: 2px;
}

[dir="rtl"] .page-title .breadcrumbs ol li + li {
    padding-left: 0;
    padding-right: 10px;
}

[dir="rtl"] .page-title .breadcrumbs ol li + li::before {
    padding-right: 0;
    padding-left: 10px;
}

@media (max-width: 991px) {
    [dir="rtl"] .services .services-grid {
        margin-right: 0;
    }

    [dir="rtl"] .how-we-work .steps-wrapper::before {
        right: auto;
        left: 25px;
    }
}
