/**
* Template Name: Landio
* Template URL: https://bootstrapmade.com/landio-bootstrap-landing-page-template/
* Updated: Sep 06 2025 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", 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: "Nunito", sans-serif;
    --nav-font: "Poppins", 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: #4a4b64; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #242859; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #1c4545; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --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: #4a4b64; /* The default color of the main navmenu links */
    --nav-hover-color: #1c4545; /* 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: #4a4b64; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1c4545; /* 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: #f5f6ff;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #0e1030;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #0f302f;
    --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

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 {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .header-container {
    background: var(--surface-color);
    border-radius: 50px;
    padding: 5px 25px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
}

.header .logo .logo-subtitle {
    font-size: 0.8rem;
    margin-left: 10px;
    opacity: 0.8;
    font-weight: 300;
    color: var(--default-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 20px;
    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%);
}

@media (max-width: 1200px) {
    .header {
        padding-top: 10px;
    }

    .header .header-container {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px 5px 10px 15px;
    }

    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 10px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }

    .header .logo .logo-subtitle {
        display: none;
    }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

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

    .navmenu li {
        position: relative;
    }

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

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

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

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

    .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;
    }
}

/* Navmenu - Mobile */
@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;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .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;
    }

    .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%
        );
    }

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

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

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .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);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    background: var(--background-color);
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    font-size: 14px;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .sitename {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 500;
    color: var(--heading-color);
}

.footer .brand-description {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.6;
    font-size: 15px;
}

.footer .contact-info li {
    margin-bottom: 8px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

.footer-links a {
    display: block;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-decoration: none;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer a {
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer .contact-info {
        padding-left: 0;
    }

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

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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);
    position: relative;
}

.page-title .heading {
    padding: 80px 0;
}

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

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    padding: 20px 0;
}

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

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

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

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

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

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

.section-title h2 {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--accent-color);
}

.section-title p {
    font-size: 1rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    max-width: 900px;
    margin: 0 auto;
    text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding-top: 140px;
    background: radial-gradient(
        ellipse at center,
        color-mix(in srgb, var(--accent-color), transparent 96%) 0%,
        var(--background-color) 70%
    );
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(
        45deg,
        color-mix(in srgb, var(--accent-color), transparent 98%) 0%,
        transparent 40%
    );
    border-radius: 50%;
    pointer-events: none;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero .hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-color);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px
        color-mix(in srgb, var(--default-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-content .hero-badge i {
    color: #ffd700;
    font-size: 0.875rem;
}

.hero .hero-content .hero-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--heading-color);
}

.hero .hero-content .hero-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

@media (max-width: 992px) {
    .hero .hero-content .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero .hero-content .hero-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero .hero-content .hero-title {
        font-size: 2.2rem;
    }
}

.hero .hero-content .hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero .hero-content .hero-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }
}

.hero .hero-content .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

@media (max-width: 576px) {
    .hero .hero-content .hero-actions {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 48px;
    }
}

.hero .hero-content .hero-actions .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.hero .hero-content .hero-actions .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        color-mix(in srgb, var(--contrast-color), transparent 80%),
        transparent
    );
    transition: left 0.6s;
}

.hero .hero-content .hero-actions .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px
        color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-content .hero-actions .btn-primary:hover::before {
    left: 100%;
}

.hero .hero-content .hero-actions .btn-outline {
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
    color: var(--heading-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.hero .hero-content .hero-actions .btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateY(-3px);
}

.hero .hero-content .hero-metrics {
    display: flex;
    justify-content: center;
    gap: 48px;
}

@media (max-width: 992px) {
    .hero .hero-content .hero-metrics {
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .hero .hero-content .hero-metrics {
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .hero .hero-content .hero-metrics {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

.hero .hero-content .hero-metrics .metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 8px 25px
        color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
}

.hero .hero-content .hero-metrics .metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px
        color-mix(in srgb, var(--default-color), transparent 88%);
}

.hero .hero-content .hero-metrics .metric-item .metric-icon {
    width: 48px;
    height: 48px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .hero-content .hero-metrics .metric-item .metric-icon i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.hero .hero-content .hero-metrics .metric-item .metric-content {
    text-align: left;
}

.hero .hero-content .hero-metrics .metric-item .metric-content .metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1;
}

.hero .hero-content .hero-metrics .metric-item .metric-content .metric-label {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 400;
}

@media (max-width: 1199px) {
    .hero {
        padding: 120px 0 60px 0;
    }
}

@media (max-width: 768px) {
    .hero .hero-content {
        text-align: center !important;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-section {
    position: relative;
}

.about .image-section .primary-image {
    position: relative;
    margin-bottom: 2rem;
}

.about .image-section .primary-image img {
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about .image-section .primary-image .experience-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
    .about .image-section .primary-image .experience-badge {
        top: 1rem;
        right: 1rem;
        padding: 1rem;
    }
}

.about .image-section .primary-image .experience-badge .years {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about .image-section .primary-image .experience-badge .text {
    font-size: 0.75rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about .image-section .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about .image-section .image-grid .grid-img {
    border-radius: 6px;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about .image-section .image-grid .grid-img:hover {
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .about .image-section {
        margin-bottom: 3rem;
    }
}

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

@media (max-width: 992px) {
    .about .content-section {
        padding-left: 0;
    }
}

.about .section-intro {
    margin-bottom: 3rem;
}

.about .section-intro .company-badge {
    display: inline-block;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about .section-intro h2 {
    font-size: 2.125rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .about .section-intro h2 {
        font-size: 1.75rem;
    }
}

.about .section-intro .intro-text {
    font-size: 1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
}

.about .achievement-list {
    margin-bottom: 3rem;
}

.about .achievement-list .achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.about .achievement-list .achievement-item:last-child {
    margin-bottom: 0;
}

.about .achievement-list .achievement-item .achievement-icon {
    width: 50px;
    height: 50px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about .achievement-list .achievement-item .achievement-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.about .achievement-list .achievement-item .achievement-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.about .action-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 576px) {
    .about .action-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.about .action-section .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about .action-section .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%);
    transform: translateY(-1px);
}

.about .action-section .contact-info .contact-label {
    display: block;
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0.25rem;
}

.about .action-section .contact-info .phone-number {
    font-size: 1.125rem;
    color: var(--heading-color);
    font-weight: 600;
}

.about .metrics-section {
    margin-top: 5rem;
    padding: 3rem 0;
    background-color: color-mix(
        in srgb,
        var(--surface-color),
        var(--background-color) 70%
    );
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.about .metrics-section .metric-card {
    padding: 1.5rem 1rem;
}

.about .metrics-section .metric-card .metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .about .metrics-section .metric-card .metric-value {
        font-size: 2rem;
    }
}

.about .metrics-section .metric-card .metric-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 500;
    margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-grid {
    margin-bottom: 5rem;
}

.services .services-grid .featured-service-card {
    background: linear-gradient(
        135deg,
        var(--surface-color) 0%,
        color-mix(in srgb, var(--accent-color), transparent 97%) 100%
    );
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px
        color-mix(in srgb, var(--default-color), transparent 93%);
}

.services .services-grid .featured-service-card .service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #ff6b6b 20%)
    );
    color: var(--contrast-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 15px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .featured-service-card .service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #4facfe 30%)
    );
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    transition: transform 0.4s ease;
}

.services .services-grid .featured-service-card .service-icon-large i {
    font-size: 2rem;
    color: var(--contrast-color);
}

.services .services-grid .featured-service-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.services .services-grid .featured-service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2rem;
}

.services .services-grid .featured-service-card .feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.services
    .services-grid
    .featured-service-card
    .feature-highlights
    .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.services
    .services-grid
    .featured-service-card
    .feature-highlights
    .highlight-item
    i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.services
    .services-grid
    .featured-service-card
    .feature-highlights
    .highlight-item
    span {
    font-size: 0.95rem;
    color: var(--default-color);
    font-weight: 500;
}

.services .services-grid .featured-service-card .btn-primary {
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #667eea 30%)
    );
    border: none;
    color: var(--contrast-color);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .featured-service-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px
        color-mix(in srgb, var(--accent-color), transparent 60%);
    color: var(--contrast-color);
}

.services .services-grid .featured-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px
        color-mix(in srgb, var(--default-color), transparent 88%);
}

.services .services-grid .featured-service-card:hover .service-icon-large {
    transform: scale(1.1);
}

.services .services-grid .service-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px
        color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .services-grid .service-card .service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 85%),
        color-mix(in srgb, var(--accent-color), transparent 90%)
    );
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.services .services-grid .service-card .service-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.services .services-grid .service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.services .services-grid .service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 1.5rem;
}

.services .services-grid .service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.services .services-grid .service-card .service-link i {
    transition: transform 0.3s ease;
}

.services .services-grid .service-card .service-link:hover {
    color: var(--heading-color);
}

.services .services-grid .service-card .service-link:hover i {
    transform: translateX(4px);
}

.services .services-grid .service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px
        color-mix(in srgb, var(--default-color), transparent 90%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .services-grid .service-card:hover .service-icon {
    transform: scale(1.1);
}

.services .services-tabs .nav-pills {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 50px;
    padding: 8px;
    display: inline-flex;
    margin: 0 auto;
}

.services .services-tabs .nav-pills .nav-item .nav-link {
    background: transparent;
    border: none;
    color: var(--default-color);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0;
}

.services .services-tabs .nav-pills .nav-item .nav-link.active {
    background: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 4px 15px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-tabs .nav-pills .nav-item .nav-link:hover:not(.active) {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
}

.services .services-tabs .tab-service-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px
        color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .services-tabs .tab-service-card .service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 85%),
        color-mix(in srgb, var(--accent-color), transparent 90%)
    );
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.services .services-tabs .tab-service-card .service-icon i {
    font-size: 1.6rem;
    color: var(--accent-color);
}

.services .services-tabs .tab-service-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.services .services-tabs .tab-service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 2rem;
}

.services .services-tabs .tab-service-card .tab-service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.services .services-tabs .tab-service-card .tab-service-link:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.services .services-tabs .tab-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px
        color-mix(in srgb, var(--default-color), transparent 88%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-tabs .tab-service-card:hover .service-icon {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .services .services-grid .featured-service-card {
        margin-bottom: 2rem;
        padding: 2.5rem 2rem;
    }

    .services .services-grid .featured-service-card .feature-highlights {
        margin-bottom: 2rem;
    }

    .services .services-tabs .nav-pills {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .services .services-tabs .nav-pills .nav-item {
        width: 100%;
    }

    .services .services-tabs .nav-pills .nav-item .nav-link {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services .services-grid {
        margin-bottom: 4rem;
    }

    .services .services-grid .featured-service-card {
        padding: 2rem 1.5rem;
    }

    .services .services-grid .featured-service-card .service-icon-large {
        width: 70px;
        height: 70px;
    }

    .services .services-grid .featured-service-card .service-icon-large i {
        font-size: 1.8rem;
    }

    .services .services-grid .featured-service-card h3 {
        font-size: 1.5rem;
    }

    .services
        .services-grid
        .featured-service-card
        .feature-highlights
        .highlight-item {
        justify-content: flex-start;
    }

    .services .services-grid .service-card {
        padding: 1.5rem;
    }

    .services .services-tabs .tab-service-card {
        padding: 2rem 1.5rem;
    }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-content h2 {
    font-size: 36px;
    font-weight: 300;
    color: var(--heading-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.features .features-content .lead {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
}

.features .features-image {
    position: relative;
}

.features .features-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    transition: all 0.3s ease;
}

.features .feature-item:hover {
    transform: translateY(-5px);
}

.features .feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #6c5ce7 30%)
    );
}

.features .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #4834d4 20%)
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.features .feature-icon i {
    font-size: 24px;
    color: var(--contrast-color);
}

.features .feature-content h4 {
    font-size: 20px;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.features .feature-content p {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .features .features-content {
        text-align: center;
    }

    .features .features-content h2 {
        font-size: 28px;
    }

    .features .features-grid {
        margin-top: 60px;
        gap: 30px;
    }

    .features .feature-item {
        gap: 16px;
    }

    .features .feature-icon {
        width: 50px;
        height: 50px;
    }

    .features .feature-icon i {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .features .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .features .features-content h2 {
        font-size: 24px;
    }

    .features .features-content .lead {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .features-list {
    margin-bottom: 30px;
}

.features-2 .features-list .feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--surface-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: left;
    height: 100%;
}

.features-2 .features-list .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.features-2 .features-list .feature-item .feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-2 .features-list .feature-item .feature-icon i {
    font-size: 22px;
    color: var(--accent-color);
}

.features-2 .features-list .feature-item .feature-content {
    flex: 1;
}

.features-2 .features-list .feature-item .feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.features-2 .features-list .feature-item .feature-content p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 12px;
    line-height: 1.5;
}

.features-2 .features-list .feature-item .feature-content .feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.features-2 .features-list .feature-item .feature-content .feature-tags span {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.features-2 .cta-section {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}

.features-2 .cta-section .btn-primary,
.features-2 .cta-section .btn-secondary {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.features-2 .cta-section .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.features-2 .cta-section .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px
        color-mix(in srgb, var(--accent-color), transparent 60%);
}

.features-2 .cta-section .btn-secondary {
    background: transparent;
    color: var(--heading-color);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.features-2 .cta-section .btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .features-2 .features-list .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .features-2 .features-list .feature-item .feature-icon {
        align-self: center;
    }

    .features-2 .cta-section {
        flex-direction: column;
    }

    .features-2 .cta-section .btn-primary,
    .features-2 .cta-section .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .features-2 .features-content h2 {
        font-size: 24px;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 97%) 0%,
        var(--background-color) 100%
    );
}

.testimonials .testimonials-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials .testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.testimonials .testimonial-card {
    background: var(--surface-color);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px
        color-mix(in srgb, var(--default-color), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.testimonials .testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .testimonial-card.featured {
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 94%) 0%,
        var(--surface-color) 100%
    );
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    transform: scale(1.05);
}

.testimonials .testimonial-card.featured .featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(
        135deg,
        var(--accent-color) 0%,
        color-mix(in srgb, var(--accent-color), #007bff 20%) 100%
    );
    color: var(--contrast-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-card.featured .featured-badge i {
    font-size: 0.875rem;
}

.testimonials .rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonials .rating i {
    color: #ffc107;
    font-size: 1rem;
    filter: drop-shadow(0 2px 4px color-mix(in srgb, #ffc107, transparent 60%));
}

.testimonials blockquote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--default-color);
    margin: 0 0 2rem 0;
    position: relative;
    font-style: italic;
}

.testimonials blockquote::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-size: 4rem;
    color: color-mix(in srgb, var(--accent-color), transparent 80%);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials .user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    box-shadow: 0 4px 16px
        color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials .user-info {
    flex: 1;
}

.testimonials .user-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--heading-color);
}

.testimonials .user-info .title {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonials .user-info .company {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

.testimonials .navigation-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonials .nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    background: var(--surface-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.testimonials .nav-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
    box-shadow: 0 8px 24px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .dots-indicator {
    display: flex;
    gap: 0.75rem;
}

.testimonials .dots-indicator .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 70%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials .dots-indicator .dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

@media (max-width: 1199.98px) {
    .testimonials .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials .testimonial-card {
        padding: 2rem;
    }

    .testimonials .testimonial-card.featured {
        transform: scale(1.02);
    }

    .testimonials blockquote {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials .testimonials-carousel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials .testimonial-card {
        padding: 1.5rem;
    }

    .testimonials .testimonial-card.featured {
        transform: none;
    }

    .testimonials .testimonial-card:hover {
        transform: translateY(-8px);
    }

    .testimonials blockquote {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .testimonials blockquote::before {
        font-size: 3rem;
        top: -0.75rem;
    }

    .testimonials .avatar {
        width: 50px;
        height: 50px;
    }

    .testimonials .user-info h4 {
        font-size: 1rem;
    }

    .testimonials .user-info .title {
        font-size: 0.85rem;
    }

    .testimonials .user-info .company {
        font-size: 0.8rem;
    }

    .testimonials .navigation-controls {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .testimonials .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
    --card-border-radius: 20px;
}

.pricing .row {
    justify-content: center;
}

.pricing .pricing-card {
    height: 100%;
    background: var(--surface-color);
    border-radius: var(--card-border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transition: all 0.4s;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
    border: 2px solid var(--accent-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .pricing-card .popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 40px;
    transform: rotate(45deg);
}

.pricing .plan-header {
    padding: 30px 30px 20px;
    text-align: center;
}

.pricing .plan-header .plan-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.pricing .plan-header .plan-icon i {
    font-size: 28px;
    color: var(--accent-color);
}

.pricing .plan-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing .plan-header p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing .plan-pricing {
    text-align: center;
    padding: 10px 30px 20px;
    position: relative;
}

.pricing .plan-pricing .currency {
    font-size: 24px;
    vertical-align: top;
    line-height: 1;
    color: var(--heading-color);
    font-weight: 600;
}

.pricing .plan-pricing .amount {
    font-size: 60px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
}

.pricing .plan-pricing .period {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .plan-features {
    padding: 20px 30px;
    flex: 1;
}

.pricing .plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing .plan-features ul li {
    padding: 12px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.pricing .plan-features ul li.disabled {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-features ul li i {
    font-size: 18px;
}

.pricing .plan-features ul li i.bi-check-circle-fill {
    color: var(--accent-color);
}

.pricing .plan-features ul li i.bi-x-circle-fill {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-cta {
    padding: 10px 30px 30px;
    text-align: center;
}

.pricing .plan-cta .btn-plan {
    display: inline-block;
    width: 100%;
    padding: 14px 32px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    color: var(--default-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.pricing .plan-cta .btn-plan:hover {
    background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
    .pricing .pricing-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .pricing .plan-pricing .amount {
        font-size: 48px;
    }

    .pricing .plan-header {
        padding: 25px 20px 15px;
    }

    .pricing .plan-features,
    .pricing .plan-pricing,
    .pricing .plan-cta {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
    background-color: color-mix(in srgb, var(--surface-color), #f8f9fa 50%);
}

.faq .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq .faq-item {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 8px;
    margin-bottom: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px
        color-mix(in srgb, var(--default-color), transparent 95%);
}

.faq .faq-item:hover {
    box-shadow: 0 4px 16px
        color-mix(in srgb, var(--default-color), transparent 90%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-item .question-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.faq .faq-item .icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.faq .faq-item .icon-wrapper i {
    color: var(--accent-color);
    font-size: 24px;
}

.faq .faq-item .content-wrapper {
    flex: 1;
    min-width: 0;
}

.faq .faq-item .question {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    font-family: var(--heading-font);
}

.faq .faq-item .answer p {
    color: var(--default-color);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq .faq-item {
        padding: 24px 20px;
    }

    .faq .faq-item .question-wrapper {
        gap: 16px;
    }

    .faq .faq-item .icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .faq .faq-item .icon-wrapper i {
        font-size: 20px;
    }

    .faq .faq-item .question {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .faq .faq-item .answer p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .faq .faq-item {
        padding: 20px 16px;
    }

    .faq .faq-item .question-wrapper {
        gap: 12px;
    }

    .faq .faq-item .icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .faq .faq-item .icon-wrapper i {
        font-size: 18px;
    }

    .faq .faq-item .question {
        font-size: 15px;
    }

    .faq .faq-item .answer p {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-panel {
    background: linear-gradient(
        135deg,
        var(--accent-color) 0%,
        color-mix(in srgb, var(--accent-color), #000 20%) 100%
    );
    height: 100%;
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

.contact .contact-info-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../img/misc/misc-1.webp") center/cover;
    opacity: 0.1;
    z-index: 1;
}

.contact .contact-info-panel .panel-content {
    position: relative;
    z-index: 2;
    padding: 80px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .contact .contact-info-panel .panel-content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .contact .contact-info-panel .panel-content {
        padding: 40px 30px;
    }
}

.contact .contact-info-panel .info-header {
    margin-bottom: 50px;
}

.contact .contact-info-panel .info-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--contrast-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .contact .contact-info-panel .info-header h2 {
        font-size: 32px;
    }
}

.contact .contact-info-panel .info-header p {
    font-size: 18px;
    color: color-mix(in srgb, var(--contrast-color), transparent 15%);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact .contact-info-panel .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
    flex: 1;
}

.contact .contact-info-panel .info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: color-mix(in srgb, var(--contrast-color), transparent 90%);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact .contact-info-panel .info-card:hover {
    background: color-mix(in srgb, var(--contrast-color), transparent 85%);
    transform: translateX(10px);
}

.contact .contact-info-panel .info-card .card-icon {
    width: 50px;
    height: 50px;
    background: var(--contrast-color);
    color: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact .contact-info-panel .info-card .card-icon i {
    font-size: 22px;
}

.contact .contact-info-panel .info-card .card-content {
    flex: 1;
}

.contact .contact-info-panel .info-card .card-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--contrast-color);
    margin-bottom: 8px;
}

.contact .contact-info-panel .info-card .card-content p {
    font-size: 14px;
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    margin-bottom: 0;
    line-height: 1.5;
}

.contact .contact-info-panel .social-section {
    border-top: 1px solid
        color-mix(in srgb, var(--contrast-color), transparent 80%);
    padding-top: 30px;
}

.contact .contact-info-panel .social-section h5 {
    font-size: 16px;
    color: var(--contrast-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.contact .contact-info-panel .social-section .social-icons {
    display: flex;
    gap: 15px;
}

.contact .contact-info-panel .social-section .social-icons .social-icon {
    width: 44px;
    height: 44px;
    background: color-mix(in srgb, var(--contrast-color), transparent 85%);
    color: var(--contrast-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact .contact-info-panel .social-section .social-icons .social-icon i {
    font-size: 18px;
}

.contact .contact-info-panel .social-section .social-icons .social-icon:hover {
    background: var(--contrast-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.contact .contact-form-wrapper {
    background: var(--surface-color);
    padding: 80px 60px;
    height: 100%;
    min-height: 650px;
}

@media (max-width: 992px) {
    .contact .contact-form-wrapper {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .contact .contact-form-wrapper {
        padding: 40px 30px;
    }
}

.contact .contact-form-wrapper .form-header {
    margin-bottom: 50px;
}

.contact .contact-form-wrapper .form-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .contact .contact-form-wrapper .form-header h3 {
        font-size: 26px;
    }
}

.contact .contact-form-wrapper .form-header .header-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.contact .contact-form-wrapper .modern-form .form-group {
    margin-bottom: 25px;
}

.contact .contact-form-wrapper .modern-form .form-group .form-control {
    width: 100%;
    padding: 18px 25px;
    font-size: 16px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    background: var(--surface-color);
    color: var(--default-color);
    transition: all 0.3s ease;
}

.contact .contact-form-wrapper .modern-form .form-group .form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px
        color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact
    .contact-form-wrapper
    .modern-form
    .form-group
    .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form-wrapper .modern-form .form-group textarea.form-control {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.contact .contact-form-wrapper .modern-form .submit-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact .contact-form-wrapper .modern-form .submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        color-mix(in srgb, var(--contrast-color), transparent 80%),
        transparent
    );
    transition: left 0.5s ease;
}

.contact .contact-form-wrapper .modern-form .submit-btn:hover {
    background: color-mix(in srgb, var(--accent-color), #000 10%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .modern-form .submit-btn:hover::before {
    left: 100%;
}

.contact .contact-form-wrapper .modern-form .submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.contact .contact-form-wrapper .modern-form .submit-btn .btn-text,
.contact .contact-form-wrapper .modern-form .submit-btn .btn-icon {
    position: relative;
    z-index: 2;
}

.contact .contact-form-wrapper .modern-form .submit-btn .btn-icon {
    transition: transform 0.3s ease;
}

.contact .contact-form-wrapper .modern-form .submit-btn .btn-icon i {
    font-size: 16px;
}

@media (max-width: 992px) {
    .contact .contact-info-panel {
        min-height: auto;
    }

    .contact .contact-form-wrapper {
        min-height: auto;
    }
}

/*--------------------------------------------------------------
# Custom SIREPO Components
--------------------------------------------------------------*/

/* Team Cards */
.team-card {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.team-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #374151;
}

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

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

.team-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.team-info span {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.staff-card {
    padding: 20px 15px;
}

.staff-card .team-img {
    width: 120px;
    height: 120px;
}

/* Berita Cards */
.berita-card {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.berita-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.berita-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.berita-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.berita-content {
    padding: 25px;
}

.berita-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.berita-content p {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.berita-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.berita-link:hover {
    gap: 10px;
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Custom Button Styles */
.btn-sirepo {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-sirepo:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.btn-sirepo-outline {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-sirepo-outline:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-card,
    .staff-card {
        margin-bottom: 30px;
    }

    .berita-card {
        margin-bottom: 30px;
    }

    .team-img {
        width: 120px;
        height: 120px;
    }

    .staff-card .team-img {
        width: 100px;
        height: 100px;
    }
}

/*--------------------------------------------------------------
# Contact Section - Redesigned
--------------------------------------------------------------*/
.contact-method-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px
        color-mix(in srgb, var(--default-color), transparent 95%);
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #667eea 30%)
    );
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px
        color-mix(in srgb, var(--default-color), transparent 88%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-method-card .contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 90%),
        color-mix(in srgb, var(--accent-color), transparent 95%)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-method-card .contact-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.contact-method-card:hover .contact-icon {
    transform: scale(1.1);
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #667eea 30%)
    );
}

.contact-method-card:hover .contact-icon i {
    color: var(--contrast-color);
}

.contact-method-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.contact-details {
    text-align: left;
    margin-bottom: 1.5rem;
}

.campus-location,
.schedule-item,
.support-channel {
    margin-bottom: 1.25rem;
}

.campus-location:last-child,
.schedule-item:last-child,
.support-channel:last-child {
    margin-bottom: 0;
}

.campus-location strong,
.schedule-item strong {
    display: block;
    color: var(--heading-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.campus-location p,
.schedule-item p {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.5;
    margin: 0;
}

.support-channel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.support-channel:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateX(5px);
}

.support-channel .channel-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-channel .channel-icon i {
    font-size: 1rem;
    color: var(--contrast-color);
}

.support-channel .channel-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--heading-color);
    margin-bottom: 0.25rem;
}

.support-channel .channel-info p {
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 6px;
}

.contact-link:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

/* WhatsApp Action Card */
.whatsapp-action-card {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px color-mix(in srgb, #25d366, transparent 70%);
    position: relative;
    overflow: hidden;
}

.whatsapp-action-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle,
        color-mix(in srgb, white, transparent 80%) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.action-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.action-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-icon i {
    font-size: 1.8rem;
    color: #25d366;
}

.action-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.action-text p {
    font-size: 1rem;
    line-height: 1.5;
    color: color-mix(in srgb, white, transparent 15%);
    margin: 0;
}

.btn-whatsapp {
    background: white;
    color: #25d366;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.btn-whatsapp:hover {
    background: color-mix(in srgb, white, black 5%);
    color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Social Media Section */
.social-media-section {
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.social-media-section h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.social-link i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .action-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .action-text {
        text-align: center;
    }

    .col-lg-4.text-lg-end {
        text-align: center !important;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-method-card {
        padding: 2rem 1.5rem;
    }

    .whatsapp-action-card {
        padding: 2rem 1.5rem;
    }

    .action-text h3 {
        font-size: 1.3rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact-method-card .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-method-card .contact-icon i {
        font-size: 1.5rem;
    }

    .whatsapp-action-card {
        padding: 1.5rem;
    }

    .btn-whatsapp {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 200px;
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Search Documents Page Styles
--------------------------------------------------------------*/

/* Page Header Section */
.page-header-section {
    padding: 80px 0 40px;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 97%) 0%,
        var(--background-color) 100%
    );
}

.page-header-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.page-header-content .lead {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.6;
}

.search-stats .stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 500;
}

/* Search Box */
.search-box {
    max-width: 800px;
    margin: 0 auto;
}

.search-input {
    height: 60px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-right: none;
    border-radius: 12px 0 0 12px;
    font-size: 1.1rem;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

.search-btn {
    height: 60px;
    padding: 0 30px;
    border-radius: 0 12px 12px 0;
    font-weight: 600;
    font-size: 1.1rem;
    background: var(--accent-color);
    border-color: var(--accent-color);
    transition: all 0.3s ease;
}

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

/* Responsive Design untuk Search Box */
@media (max-width: 768px) {
    .search-input {
        height: 50px;
        font-size: 1rem;
    }

    .search-btn {
        height: 50px;
        padding: 0 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .search-box .input-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .search-input {
        border-radius: 12px !important;
        border-right: 2px solid
            color-mix(in srgb, var(--default-color), transparent 80%) !important;
        margin-bottom: 0;
        width: 100%;
    }

    .search-btn {
        border-radius: 12px !important;
        width: 100%;
    }
}

/* Filter Card */
.filter-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0 4px 15px
        color-mix(in srgb, var(--default-color), transparent 95%);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.filter-header h5 {
    color: var(--heading-color);
    font-weight: 600;
}

.filter-select {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.filter-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px
        color-mix(in srgb, var(--accent-color), transparent 90%);
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.results-header h4 {
    color: var(--heading-color);
    font-weight: 600;
}

.results-count {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.9rem;
}

.count-number,
.total-number {
    font-weight: 600;
    color: var(--accent-color);
}

/* Document Cards */
.document-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px
        color-mix(in srgb, var(--default-color), transparent 95%);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.document-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px
        color-mix(in srgb, var(--default-color), transparent 88%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.document-badge {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.document-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.document-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.document-meta {
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.meta-item i {
    color: var(--accent-color);
    width: 16px;
    text-align: center;
}

.document-excerpt {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.document-actions {
    padding: 1rem 1.5rem;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
    background: color-mix(
        in srgb,
        var(--surface-color),
        var(--background-color) 50%
    );
}

.document-actions .btn {
    width: 100%;
    justify-content: center;
}

/* Pagination */
.pagination .page-item .page-link {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--default-color);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.pagination .page-item .page-link:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

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

    .page-header-content h1 {
        font-size: 2rem;
    }

    .search-input {
        height: 50px;
        font-size: 1rem;
    }

    .search-btn {
        height: 50px;
        padding: 0 20px;
        font-size: 1rem;
    }

    .filter-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .results-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .document-content {
        padding: 1.25rem;
    }

    .document-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-header-content h1 {
        font-size: 1.75rem;
    }

    .search-box .input-group {
        flex-direction: column;
    }

    .search-input {
        border-radius: 12px;
        border-right: 2px solid
            color-mix(in srgb, var(--default-color), transparent 80%);
        margin-bottom: 1rem;
    }

    .search-btn {
        border-radius: 12px;
        width: 100%;
    }

    .filter-body .row {
        margin: 0 -0.5rem;
    }

    .filter-body .col-md-3 {
        padding: 0 0.5rem;
    }
}

/* Navigation Active States */
.navmenu ul li a.active {
    color: var(--nav-hover-color);
}

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

/* Mobile navigation active state */
@media (max-width: 1199px) {
    .navmenu a.active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
}

.struktur-image-container {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.struktur-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.struktur-image:hover {
    transform: scale(1.02);
}

/* CSS Baru untuk Hero Section - Terpisah dari CSS lama */
.hero-wrapper {
    background: linear-gradient(135deg, #1c4545 0%, #163636 100%);
    padding-top: 50px; /* offset tinggi navbar, bisa disesuaikan */
    padding-bottom: 40px;
}

.hero-section {
    padding-top: 40px;
    padding-bottom: 80px;
}

.gradient-bg {
    background: linear-gradient(135deg, #1c4545 0%, #163636 100%);
}

.text-yellow-400 {
    color: #fbbf24;
}

.bg-yellow-500 {
    background-color: #f59e0b;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.metric-card {
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-number {
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
}

.metric-icon {
    color: #fbbf24;
}

/* Pastikan teks berwarna putih */
.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6,
.hero-section p,
.hero-section span:not(.badge) {
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 30px;
        padding-bottom: 60px;
        margin-top: 70px;
    }

    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        margin-top: 60px;
        padding-top: 20px;
    }

    .mb-4.pt-4 {
        padding-top: 1rem !important;
    }
}
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}
