@charset "UTF-8";

/*--------------------------------------------------------------
# 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: "Poppins",  sans-serif;
    --nav-font: "Kanit",  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: #40372e; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #281a0c; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #f87500; /* 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. */
    --background-dark: #100901;
}

/* 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: rgb(21, 20, 26);  /* The default color of the main navmenu links */
    --nav-hover-color: #f87500; /* 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: #40372e; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #f87500; /* 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: #fffbf7;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #100901;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

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

.btn{
    border-radius: 8px;
    padding: .5rem 1rem ;
    font-size: 14px;
}

.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    border-radius: 10px;

    font-weight: 500;
    transition: all 0.3s ease;

}

.btn-primary:hover{
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), black 15%);
    border-color: color-mix(in srgb, var(--accent-color), black 15%);
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn{
    background-color: #443f3a;
    border-color: #443f3a;
}

.alert{
    padding-top: .6rem !important;
    padding-bottom: .6rem !important;
    border: none;
    font-size: 14px;
}

.btn-close{
    width: .6rem;
    height: .6rem;
}


.alert-dismissible .btn-close {
    position: absolute;
    right: 1rem;
    z-index: 2;
    padding: 0;
    bottom: 0;
    top: 1rem;
}


.checkout-badge{
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    padding: 5px 8px;
    border-radius: 4px;
}

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

.delivery-item{
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 8px 15px 8px 15px;
    backdrop-filter: blur(10px);
    display: inline-block;
    position: relative;
    font-size: 15px;
    margin-right: 12px;
    gap: 5px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.livesvg {
    fill: rgb(248, 117, 0);
    max-height: 10px;
    animation: blinking 2000ms infinite;
    margin-right:3px;
}

@keyframes blinking {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.delivery-item.show {
    opacity: 1;
    transform: translateY(0);
}

/*--------------------------------------------------------------
# employees Section
--------------------------------------------------------------*/
.employees .employees-list .employee-entry {
    margin-bottom: 2rem;
}

.employees .employees-list .employee-profile {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
}

.employees .employees-list .employee-profile:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 92%);
    transform: translateY(-3px);
}

.employees .employees-list .employee-profile:hover .employee-photo img {
    transform: scale(1.05);
}

.employees .employees-list .employee-meta {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.employees .employees-list .employee-photo {
    flex-shrink: 0;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.employees .employees-list .employee-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.employees .employees-list .employee-info {
    flex-grow: 1;
}

.employees .employees-list .employee-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--heading-color);
}

.employees .employees-list .employee-info .employee-position {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--accent-color);
    margin-bottom: 3px;
}

.employees .employees-list .employee-info .employee-org {
    display: block;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: .5rem;
}

.employees .employees-list .employee-info .employee-track {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 15%));
    color: var(--contrast-color);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 15px;
}

.employees .employees-list .employee-details .employee-topic {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    padding: 12px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.employees .employees-list .employee-details .employee-topic i {
    color: var(--accent-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.employees .employees-list .employee-details .employee-topic span {
    font-weight: 600;
    font-size: 14px;
    color: var(--heading-color);
    line-height: 1.4;
}

.employees .employees-list .employee-details .employee-summary {
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 20px;
}

.employees .employees-list .employee-details .employee-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.employees .employees-list .employee-details .employee-actions .profile-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.employees .employees-list .employee-details .employee-actions .profile-btn:hover {
    background: color-mix(in srgb, var(--accent-color), #000000 15%);
    transform: translateY(-2px);
}

.employees .employees-list .employee-details .employee-actions .employee-social {
    display: flex;
    gap: 8px;
}

.employees .employees-list .employee-details .employee-actions .employee-social .social-link {
    width: 32px;
    height: 32px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--default-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.employees .employees-list .employee-details .employee-actions .employee-social .social-link:hover {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .employees .employees-list .employee-profile {
        padding: 20px;
    }

    .employees .employees-list .employee-meta {
        gap: 15px;
    }

    .employees .employees-list .employee-photo {
        width: 75px;
        height: 75px;
    }

    .employees .employees-list .employee-info h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .order h4 {
        font-size: 1.2rem !important;
    }

    .employees .employees-list .employee-entry {
        margin-bottom: 1.5rem;
    }

    .employees .employees-list .employee-profile {
        padding: 18px;
    }

    .employees .employees-list .employee-meta {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .employees .employees-list .employee-photo {
        width: 80px;
        height: 80px;
    }

    .employees .employees-list .employee-details .employee-actions {
        flex-direction: column;
        gap: 15px;
    }

    .employees .employees-list .employee-details .employee-actions .profile-btn {
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .employees .employees-list .employee-profile {
        padding: 15px;
    }

    .employees .employees-list .employee-info h4 {
        font-size: 17px;
    }

    .employees .employees-list .employee-info .employee-position {
        font-size: 14px;
    }

    .employees .employees-list .employee-details .employee-topic {
        padding: 10px;
    }

    .employees .employees-list .employee-details .employee-topic span {
        font-size: 13px;
    }

    .employees .employees-list .employee-details .employee-summary {
        font-size: 13px;
    }
}

.mobile-buy{
    color: white !important;
    background: var(--accent-color);
}

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

h3{
    font-size: 1.375rem;
}

/* PHP Email Form Messages
------------------------------*/


.sent-message, .error-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
}

.error-message {
    background: #df1529;
    color: #ffffff;
}

.loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
}

.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);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    transition: all 0.5s;
    z-index: 997;
}

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

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

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

.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), black 15%);
    border-color: color-mix(in srgb, var(--accent-color), black 15%);
}

.header .btn-getstarted.dark,
.header .btn-getstarted.dark:focus {

    background: var(--background-dark);
}


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



.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(34, 18, 2, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */

.navmenu{
    justify-content: center;
    display: flex;
}

@media (min-width: 992px) {
    .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: 0 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,
    .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: 992px) {
    .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 {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.02);
}

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

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}

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

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.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: var(--nav-color);
    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;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    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;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 0 90px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    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 50%);
}


@media (max-width: 991px) {

    .page-title{
        padding: 60px 0
    }

    .page-title h1 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 80px 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 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    display: flex;
    align-items: center;
}

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

.hero .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 30%) 0%, color-mix(in srgb, var(--background-color), transparent 50%) 100%);
    z-index: 1;
}

.gradient-1{
    position: absolute;
    left: 5%;
    bottom: 25%;
    width: 100%;
    max-width: 390px;
    height: 284px;
    background: var(--accent-color);
    filter: blur(250px);

    opacity: .25;
}
.gradient-2{
    position: absolute;
    right: 15%;
    top: 25%;
    width: 100%;
    max-width: 390px;
    height: 284px;
    background: var(--accent-color);
    filter: blur(250px);
    opacity: .25;
}

@media (max-width: 991px) {
    .gradient-2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 390px;
        height: 284px;
        background: var(--accent-color);
        filter: blur(250px);
        opacity: .25;
    }

    .call-to-action .lead {
        font-size: 1rem !important;
    }
}




.hero .hero-content {

    z-index: 2;
    width: 100%;
    padding: 40px 0 80px;
}

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

.hero .hero-text {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .hero .hero-text {
        margin-bottom: 40px;
    }
}

.hero .hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media (max-width: 1200px) {
    .hero .hero-title {
        font-size: 3rem;
    }
}

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

.hero .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

.hero .feature-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero .feature-details {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

.hero .detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .875rem;
    font-weight: 500;
    color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.hero .detail-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero .detail-item {
        font-size: 1rem;
    }
}


.hero .cta-section {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .hero .cta-section {
        margin-bottom: 50px;
    }
}

.hero .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .hero .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

.hero .btn-cta {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

@media (max-width: 768px) {
    .hero .btn-cta {
        padding: 14px 28px;
        font-size: 1rem;
        min-width: 160px;
    }
}

.hero .btn-cta.btn-primary {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.hero .btn-cta.btn-primary:hover {
    transform: translateY(-2px);
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
}

.hero .btn-cta.btn-secondary {
    background: transparent;
    border: 2px solid var(--default-color);
    color: var(--default-color);
}

.hero .btn-cta.btn-secondary:hover {
    transform: translateY(-2px);
}

.hero .cta-note {
    color: color-mix(in srgb, var(--contrast-color), transparent 30%);
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .hero .cta-note {
        font-size: 0.9rem;
    }
}





/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.intro {
    position: relative;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
    overflow: hidden;
}

.intro::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 70%);
    transform: rotate(-15deg);
    z-index: 1;
}

.intro .container {
    position: relative;
    z-index: 2;
}

.intro .content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background-clip: text;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .intro .content h2 {
        font-size: 32px;
    }

    .intro.section {
        padding-top: 50px;
    }
}

.intro .content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.intro .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.intro .stat-item {
    text-align: center;
    position: relative;
}

.intro .stat-item .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.intro .stat-item .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--heading-color);
}

.intro .stat-item::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
    border-radius: 2px;
}

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

.intro .cta-section .btn {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.intro .cta-section .btn.btn-primary {
    background: var(--accent-color);
    border: none;
    color: var(--contrast-color);
}

.intro .cta-section .btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
}

.intro .cta-section .btn.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.intro .cta-section .btn.btn-outline:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}


.intro .highlight-cards {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

@media (max-width: 550px) {
    .intro .highlight-cards {
        flex-direction: column;
    }

    .intro .cta-section .btn.btn-primary {
       text-align: center !important;
    }
}

.intro .highlight-card {
    flex: 1;
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    transition: all 0.3s ease;
}

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

.intro .highlight-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 30%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro .highlight-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.intro .highlight-card p {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
    line-height: 1.6;
}

.intro .founder-quote {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
    border-radius: 25px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    position: relative;
    overflow: hidden;
}

.intro .founder-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: color-mix(in srgb, var(--accent-color), transparent 85%);
    font-weight: bold;
    line-height: 1;
}

.intro .founder-quote .founder-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.intro .founder-quote blockquote {
    margin: 0;
}

.intro .founder-quote blockquote p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .intro .founder-quote blockquote p {
        font-size: 1.1rem;
    }
}

.intro .founder-quote blockquote cite {
    display: block;
    text-align: left;
}

.intro .founder-quote blockquote cite strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.25rem;
}

.intro .founder-quote blockquote cite span {
    color: var(--accent-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .intro .founder-quote {
        text-align: center;
    }

    .intro .founder-quote .founder-img {
        margin-bottom: 2rem;
    }

    .intro .founder-quote blockquote cite {
        text-align: center;
    }
}

@media (max-width: 768px) {

    .intro .cta-section {
        justify-content: center;
    }

    .intro .cta-section .btn {
        flex: 1;
        justify-content: center;
        margin-bottom: 30px;
    }
}


/*--------------------------------------------------------------
# Dashboard  Section
--------------------------------------------------------------*/

.dashboard{
    background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 5%);
}

.dashboard-wrapper {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.dashboard .order-info{
    text-align: center;
    border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    padding-bottom: 30px;
}



.dashboard .heading{
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

/*.dashboard .btn.btn-primary{*/
/*    background: var(--accent-color);*/
/*    border-color: var(--accent-color);*/
/*    color: var(--contrast-color);*/
/*    height: 48px;*/
/*    border-radius: 10px;*/
/*    font-size: 14px;*/
/*    font-weight: 500;*/
/*    transition: all 0.3s ease;*/
/*}*/


/*.dashboard .btn.btn-primary:hover{*/
/*    color: var(--contrast-color);*/
/*    background: color-mix(in srgb, var(--accent-color), black 15%);*/
/*    border-color: color-mix(in srgb, var(--accent-color), black 15%);*/
/*}*/

.dashboard .back{
    color: var(--heading-color);
}

.dashboard .back:hover{

    color: color-mix(in srgb, var(--heading-color), transparent 35%);
}

.dashboard .form-check-input{
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    outline: none;
}
.dashboard .form-check-input:focus{
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}
.dashboard .form-check-input:checked{
    background-color: var(--accent-color);
}

input,
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
select::placeholder,
textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%) !important;
}

input,
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
select,
textarea{
    color: var(--heading-color) !important;
}

.form-label {
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 8px !important;
    font-size: 14px;
    display: block;
}

.form-control {
    height: auto;
    border-radius: 8px;
    padding: 12px 20px;

    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    color: var(--default-color);
    font-size: 14px;
    outline: none;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
    outline: none;
    background: white !important;
}


@media (max-width: 768px) {
    .dashboard .dashboard-wrapper {
        padding: 25px 20px;
    }
}

.nav-pills .nav-item {
    width: 100%;
    margin-bottom: 5px;
}

.nav-pills .nav-item .nav-link.active, .nav-pills .nav-item .nav-link.active:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.nav-pills .nav-item .nav-link {
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--default-color);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}
.nav-pills .nav-item .nav-link:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.order-status{
    text-align: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 25px;
    border: 2px solid  var(--accent-color);

    border-radius: 10px;
    transition: all 0.3s ease;
}
.order-status-title{
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.order-card {
    background-color: var(--surface-color);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}
.order-card:last-of-type {
    margin-bottom: 0;
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 575.98px) {
    .order-header {
        flex-direction: column;
        gap: 8px;
    }
}

.order-date {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.order-content {
    margin-bottom: 20px;
}

.order-info .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 8px;
}

.info-row .status.pending {
    background-color: #dbdbdb;
    color: #323232;
}

.info-row .status.processing {
    background-color: #fff7ed;
    color: #f97316;
}

.info-row .status.complete {
    background-color: #d8f2e1;
    color: #19884b;;
}

.info-row .status {
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.order-footer {
    display: flex;
    gap: 12px;
}
.order-footer a{
    flex: 1;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    align-content: center;
}

.order-footer .btn-track {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
}
.order-footer .btn-details {
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--default-color);
    transition: all 0.3s ease;
    width: 100%;
}
.order-footer .btn-details:hover{
    border-color: var(--accent-color);
    color: var(--accent-color);

}


/*--------------------------------------------------------------
# About  Section
--------------------------------------------------------------*/

.about .content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background-clip: text;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .bout-section .content h2 {
        font-size: 2.5rem;
    }
}

.about .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}


/*--------------------------------------------------------------
# How Section
--------------------------------------------------------------*/

.how-section h3{font-weight: 600;}

.how-section .counter{
    background: var(--accent-color);
    color: white;
    display: inline-block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 28px;
    line-height: 40px;
    padding: 16px;
    text-align: center;
    font-family: Poppins;
    margin-bottom:20px;
}

.how-section .cta-money-back {
    background: #252525;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/

.faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 15px;
    overflow: hidden;
}

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

.faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq-container .faq-active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}



/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
.schedule .schedule-tabs .nav-pills .nav-item {
    margin: 0 8px;
}

.schedule .schedule-tabs .nav-pills .nav-item .nav-link {
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--default-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.schedule .schedule-tabs .nav-pills .nav-item .nav-link:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.schedule .schedule-tabs .nav-pills .nav-item .nav-link.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.schedule .track-headers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 60px;
}

.schedule .track-headers .track-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--contrast-color);
}

.schedule .track-headers .track-header i {
    margin-right: 8px;
    font-size: 18px;
}

.schedule .track-headers .track-header.development {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.schedule .track-headers .track-header.design {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.schedule .track-headers .track-header.business {
    background: linear-gradient(135deg, #059669, #0891b2);
}

@media (max-width: 768px) {
    .schedule .track-headers {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

.schedule .schedule-timeline .time-slot {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.schedule .schedule-timeline .time-slot .time-label {
    text-align: right;
    padding-top: 20px;
    position: sticky;
    top: 100px;
}

.schedule .schedule-timeline .time-slot .time-label .time {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
}

.schedule .schedule-timeline .time-slot .time-label .duration {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-top: 4px;
}

.schedule .schedule-timeline .time-slot .sessions-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.keynote {
    grid-column: 1/-1;
    border-left-color: #fbbf24;
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, #fbbf24, transparent 95%));
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.keynote .session-type {
    color: #f59e0b;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.development {
    border-left-color: #4f46e5;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.development .session-type {
    color: #4f46e5;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.design {
    border-left-color: #ef4444;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.design .session-type {
    color: #ef4444;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.business {
    border-left-color: #059669;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.business .session-type {
    color: #059669;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.break {
    grid-column: 1/-1;
    border-left-color: #6b7280;
    background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.break .session-type {
    color: #6b7280;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.break h4 {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.workshop {
    grid-column: 1/-1;
    border-left-color: #8b5cf6;
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, #8b5cf6, transparent 95%));
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.workshop .session-type {
    color: #8b5cf6;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-type {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-type i {
    margin-right: 6px;
    font-size: 14px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 16px;
    line-height: 1.4;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .speaker {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .speaker .speaker-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .speaker .speaker-details h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .speaker .speaker-details span {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 16px;
    line-height: 1.5;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .venue {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: flex;
    align-items: center;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .venue:before {
    content: "\f3c5";
    font-family: "bootstrap-icons";
    margin-right: 4px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .level {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .level.beginner {
    background: color-mix(in srgb, #10b981, transparent 85%);
    color: #059669;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .level.intermediate {
    background: color-mix(in srgb, #f59e0b, transparent 85%);
    color: #d97706;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .level.advanced {
    background: color-mix(in srgb, #ef4444, transparent 85%);
    color: #dc2626;
}

.schedule .schedule-timeline .time-slot.break-slot .sessions-row {
    grid-template-columns: 1fr;
}

@media (max-width: 992px) {
    .schedule .schedule-timeline .time-slot .sessions-row {
        grid-template-columns: 1fr;
    }

    .schedule .schedule-timeline .time-slot .sessions-row .session-card.keynote,
    .schedule .schedule-timeline .time-slot .sessions-row .session-card.workshop {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .schedule .schedule-timeline .time-slot {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }

    .schedule .schedule-timeline .time-slot .time-label {
        text-align: left;
    }

    .schedule .schedule-timeline .time-slot .time-label .time {
        font-size: 16px;
    }
}

.schedule .download-cta {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.schedule .download-cta h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.schedule .download-cta p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 24px;
}

.schedule .download-cta .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.schedule .download-cta .cta-buttons .btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.schedule .download-cta .cta-buttons .btn i {
    margin-right: 8px;
}

.schedule .download-cta .cta-buttons .btn.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.schedule .download-cta .cta-buttons .btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.schedule .download-cta .cta-buttons .btn.btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.schedule .download-cta .cta-buttons .btn.btn-outline-primary:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    position: relative;
    overflow: hidden;
}

.call-to-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../img/events/showcase-1.webp") center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.call-to-action .container {
    position: relative;
    z-index: 2;
}

.call-to-action .display-4 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.call-to-action .lead {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400;
}

.call-to-action .stats-wrapper {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.call-to-action .stat-item {
    text-align: center;
    padding: 1rem 0;
}

.call-to-action .stat-item .stat-icon {
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.call-to-action .stat-item .stat-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.call-to-action .stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.call-to-action .stat-item .stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.call-to-action .stat-item:hover .stat-icon {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.call-to-action .stat-item:hover .stat-icon i {
    color: var(--contrast-color);
}

.call-to-action .cta-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.call-to-action .cta-content p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 1.125rem;
    line-height: 1.6;
}

.call-to-action .cta-buttons {
    margin-bottom: 2rem;
}

.call-to-action .cta-buttons .btn {
    border-radius: 50px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-width: 2px;
}

.call-to-action .cta-buttons .btn.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    border-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.call-to-action .cta-buttons .btn.btn-outline-secondary {
    color: var(--default-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 70%);
    background: transparent;
}

.call-to-action .cta-buttons .btn.btn-outline-secondary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.call-to-action .security-note {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-top: 1rem;
}

.call-to-action .security-note small {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.call-to-action .security-note small i {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .call-to-action .display-4 {
        font-size: 2rem;
    }

    .call-to-action .stats-wrapper {
        padding: 2rem 1rem;
    }

    .call-to-action .stat-item {
        margin-bottom: 2rem;
    }

    .call-to-action .stat-item .stat-number {
        font-size: 2rem;
    }

    .call-to-action .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .call-to-action .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    display: flex;
    height: auto;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    height: 100%;
}

.testimonials {
    position: relative;
    overflow: hidden;
    /* Swiper Navigation */
    /* Swiper Pagination */
    /* Responsive Styles */
}

.testimonials .testimonial-slider {
    position: relative;
    padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
    height: auto !important;
}

.testimonials .testimonial-item {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
    border-radius: 20px;
    padding: 0;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.testimonials .testimonial-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
    border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
    transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
    transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.testimonials .testimonial-header {
    position: relative;
    text-align: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.testimonials .testimonial-header .rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonials .testimonial-body {
    padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
    font-style: italic;
    text-align: center;
    position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0.6;
    font-family: serif;
    position: absolute;
}

.testimonials .testimonial-body p::before {
    top: -12px;
    left: -10px;
}

.testimonials .testimonial-body p::after {
    bottom: -20px;
    right: -5px;
}

.testimonials .testimonial-footer {
    padding: 20px 30px 30px;
    text-align: center;
    position: relative;
}

.testimonials .testimonial-footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: block;
    margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
    position: absolute;
    bottom: 15px;
    right: 25px;
    color: color-mix(in srgb, var(--accent-color), transparent 60%);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
    position: relative;
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    position: static;
    width: 45px;
    height: 45px;
    margin: 0 10px;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--contrast-color);
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
    background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
    transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
    font-size: 16px;
    font-weight: 600;
}

.testimonials .swiper-pagination {
    position: static;
    margin-top: 30px;
    text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: color-mix(in srgb, var(--default-color), transparent 70%);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--accent-color);
    transform: scale(1.2);
}

@media (max-width: 1199px) {
    .testimonials .testimonial-item .testimonial-header {
        padding: 25px 25px 15px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 70px;
        height: 70px;
    }

    .testimonials .testimonial-item .testimonial-body,
    .testimonials .testimonial-item .testimonial-footer {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 991px) {
    .testimonials .testimonial-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .testimonials .testimonial-item .testimonial-header {
        padding: 20px 20px 10px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 60px;
        height: 60px;
    }

    .testimonials .testimonial-item .testimonial-header .rating i {
        font-size: 0.8rem;
    }

    .testimonials .testimonial-item .testimonial-body {
        padding: 0 20px 15px;
    }

    .testimonials .testimonial-item .testimonial-body p {
        font-size: 0.95rem;
    }

    .testimonials .testimonial-item .testimonial-footer {
        padding: 15px 20px 20px;
    }

    .testimonials .testimonial-item .testimonial-footer h5 {
        font-size: 1rem;
    }

    .testimonials .testimonial-item .testimonial-footer span {
        font-size: 0.8rem;
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
        font-size: 1.3rem;
        bottom: 10px;
        right: 15px;
    }

    .testimonials .swiper-button-prev,
    .testimonials .swiper-button-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .testimonials .swiper-button-prev::after,
    .testimonials .swiper-button-next::after {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .testimonials .testimonial-slider {
        padding-bottom: 30px;
    }

    .testimonials .testimonial-item .testimonial-header {
        padding: 15px 15px 10px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 55px;
        height: 55px;
    }

    .testimonials .testimonial-item .testimonial-body {
        padding: 0 15px 10px;
    }

    .testimonials .testimonial-item .testimonial-body p {
        font-size: 0.9rem;
    }

    .testimonials .testimonial-item .testimonial-footer {
        padding: 10px 15px 15px;
    }

    .testimonials .testimonial-item .testimonial-footer h5 {
        font-size: 0.95rem;
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
        font-size: 1.2rem;
    }

    .testimonials .swiper-navigation {
        margin-top: 10px;
    }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.3s;
}

.gallery .gallery-links {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    line-height: 1.2;
    margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
    color: #ffffff;
}

.gallery .gallery-links .details-link {
    font-size: 30px;
    line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
    opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
    margin-top: 0;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.glightbox-clean .gslide-description {
    background: #272727;
}

.glightbox-clean .gslide-title {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about .image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    position: relative;
    transition: all 0.3s ease;
}

.about .image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}



.about .image-wrapper .floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
    color: var(--contrast-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about .content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about .content .lead {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 1.5rem;
}

.about .content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}



.about .stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about .stats-grid .stat-card {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);

}

.about .stats-grid .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .stats-grid .stat-card .stat-icon {
    margin-bottom: 1rem;
}

.about .stats-grid .stat-card .stat-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.about .stats-grid .stat-card .stat-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.about .stats-grid .stat-card .stat-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
    font-size: 0.9rem;
}



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

    .about .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about .image-wrapper img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

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


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/

.pricing-section{
    position: relative;
    margin-top: -150px; z-index: 100; background: transparent
}

.pricing-section .buy-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    height: 100%;
}


.pricing-section .buy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-section .buy-card.featured:hover {
    transform: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.buy-container{
    transform: scale(1.05);
    border-radius: 16px;
    background: white;
    transition: all 0.3s ease;
}

.pricing-section .buy-container:hover {
    transform: translateY(-5px) scale(1.05);
}

@media (max-width: 768px) {
    .pricing-section .buy-card:hover, .pricing-section .buy-card.featured:hover {
        transform: none !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .pricing-section .buy-card{
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .buy-container{
        transform: none;
        border-radius: 16px;
        background: white;
        transition: all 0.3s ease;
    }

    .pricing-section .buy-container:hover {
        transform:none;
    }
}


.pricing-section .buy-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

.pricing-section .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-section .buy-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-section .buy-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.pricing-section .buy-header .buy-price {
    margin-bottom: 10px;
}

.pricing-section .buy-header .buy-price .currency {
    font-size: 20px;
    color: var(--accent-color);
    font-weight: 600;
    vertical-align: top;
}

.pricing-section .buy-header .buy-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.pricing-section .buy-header .buy-price .period {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

.pricing-section .buy-header .buy-price .original-price {
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    text-decoration: line-through;
    margin-right: 10px;
}

.pricing-section .buy-header .buy-duration {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.pricing-section .buy-body {
    margin-bottom: 30px;
}

.pricing-section .buy-body .buy-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-section .buy-body .buy-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--default-color);
}

.pricing-section .buy-body .buy-features li i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-section .buy-body .buy-features li:last-child {
    margin-bottom: 0;
}

.pricing-section .buy-footer {
    text-align: center;
}

.pricing-section .buy-footer .btn-buy {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    width: 100%;
    margin-bottom: 15px;
}

.pricing-section .buy-footer .btn-buy:hover {
    background: var(--contrast-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.pricing-section .buy-footer .availability-info {
    margin: 0;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}



@media (max-width: 768px) {
    .pricing-section .buy-card {
        padding: 30px 20px;
    }

    .pricing-section .buy-card.featured {
        transform: none;
    }

    .pricing-section .buy-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-section .buy-header .buy-price .amount {
        font-size: 36px;
    }

}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/


.contact .form-group {
    margin-bottom: 15px;
}


.contact .form-submit {
    margin-top: 30px;
}

.contact .form-submit .btn-submit {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact .form-submit .btn-submit:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    border-color: color-mix(in srgb, var(--accent-color), black 15%);
}

.contact .form-submit .btn-submit:active {
    transform: translateY(0);
}


/*--------------------------------------------------------------
# Buy orders Section
--------------------------------------------------------------*/
.order {
    background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 5%);
}

.order .order-form-wrapper {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.order .nav-link.disabled{
    background: white;
}


.order .order-info h3 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
}

.order .order-info .order-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.order .order-info .order-meta span {
    display: flex;
    align-items: center;
    color: var(--default-color);
    font-size: 14px;
}

.order .order-info .order-meta span i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .order .order-info .order-meta {
        flex-direction: column;
        gap: 15px;
    }
}

.order .order-types {
    margin-bottom: 40px;
}

.order h4 {
    color: var(--heading-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
}


.order .order-option.form-check{
    padding: 0;
}

.order .order-types .order-option {
    margin-bottom: 20px;
}

.order .order-types .order-option input[type=radio] {
    display: none;
}

.order .order-types .order-option .order-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--surface-color);
}

.order .order-types .order-option .order-label:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.order .order-types .order-option input[type=radio]:checked+.order-label {
    border-color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.order .order-types .order-option .order-info {
    flex: 1;
}

.order .order-types .order-option .order-info .order-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.order .order-types .order-option .order-info .order-description {
    color: var(--default-color);
    font-size: 14px;
    margin-bottom: 12px;
}

.order .order-types .order-option .order-info .order-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.order .order-types .order-option .order-info .order-benefits span {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    padding: 4px 8px;
    border-radius: 4px;
}

.order .order-types .order-option .order-price {
    text-align: right;
}

.order .order-types .order-option .order-price .original-price {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    text-decoration: line-through;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.order .order-types .order-option .order-price .current-price {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .order .order-types .order-option .order-label {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .order .order-types .order-option .order-benefits {
        justify-content: center;
    }
}

.order .order-form .form-group {
    margin-bottom: 25px;
}

.order .order-form .form-group label {
    color: var(--heading-color);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.order .order-form .form-group input[type=text],
.order .order-form .form-group input[type=email],
.order .order-form .form-group input[type=tel],
.order .order-form .form-group select,
.order .order-form .form-group textarea {
    color: var(--default-color);
    background-color: var(--surface-color);
    font-size: 14px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    padding: 12px 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.order .order-form .form-group input[type=text]:focus,
.order .order-form .form-group input[type=email]:focus,
.order .order-form .form-group input[type=tel]:focus,
.order .order-form .form-group select:focus,
.order .order-form .form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.order .order-form .form-group input[type=text]::placeholder,
.order .order-form .form-group input[type=email]::placeholder,
.order .order-form .form-group input[type=tel]::placeholder,
.order .order-form .form-group select::placeholder,
.order .order-form .form-group textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.order .order-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.order .pricing-summary {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.order .pricing-summary h5 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.order .pricing-summary .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--default-color);
}

.order .pricing-summary .summary-row.total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
}

.order .pricing-summary .summary-row.total .total-price {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.order .pricing-summary .tax-note {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

.order .terms-checkbox,
.order .newsletter-checkbox {
    margin-bottom: 20px;
}

.order .terms-checkbox input[type=checkbox],
.order .newsletter-checkbox input[type=checkbox] {
    margin-right: 10px;
}

.order .terms-checkbox label,
.order .newsletter-checkbox label {
    color: var(--default-color);
    font-size: 14px;
    cursor: pointer;
}

.order .terms-checkbox label a,
.order .newsletter-checkbox label a {
    color: var(--accent-color);
    text-decoration: none;
}

.order .terms-checkbox label a:hover,
.order .newsletter-checkbox label a:hover {
    text-decoration: underline;
}

.order .form-submit {
    text-align: center;
    margin-top: 30px;
}

.order .form-submit .btn-submit {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
    color: var(--contrast-color);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}
.order .form-submit .btn-submit{
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
    color: var(--contrast-color);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}

.order .form-submit .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.order .form-submit .btn-submit.btn-success{
    background: #28a745;
}

.order .form-submit .btn-submit.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px color-mix(in srgb, #28a745, transparent 85%);
}


.order .form-submit .btn-submit:active {
    transform: translateY(0);
}

.order .security-info {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-top: 30px;
}

.order .security-info .security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.order .security-info .security-badges .badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 14px;
}

.order .security-info .security-badges .badge-item i {
    color: var(--accent-color);
    font-size: 18px;
}

.order .security-info .payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.order .security-info .payment-methods .payment-label {
    color: var(--default-color);
    font-size: 14px;
    font-weight: 500;
}

.order .security-info .payment-methods .payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order .security-info .payment-methods .payment-icons i {
    color: var(--accent-color);
    font-size: 24px;
}

.order .security-info .payment-methods .payment-icons .payment-text {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 13px;
}

@media (max-width: 768px) {
    .order .security-info .security-badges {
        flex-direction: column;
        gap: 15px;
    }

    .order .security-info .payment-methods {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .order .order-form-wrapper {
        padding: 25px 20px;
    }
}

/*--------------------------------------------------------------
# Venue 2 Section
--------------------------------------------------------------*/
.venue-2 .venue-content h3 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.venue-2 .venue-content .venue-address {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 500;
}

.venue-2 .venue-content .venue-address i {
    font-size: 1.2rem;
}

.venue-2 .venue-content p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.venue-2 .venue-image {
    position: relative;
}

.venue-2 .venue-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.venue-2 .venue-image .venue-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.venue-2 .venue-features {
    margin-bottom: 30px;
}

.venue-2 .venue-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.venue-2 .venue-features .feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
}

.venue-2 .venue-features .feature-item span {
    font-weight: 500;
}

.venue-2 .venue-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.venue-2 .venue-actions .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.venue-2 .venue-actions .btn.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.venue-2 .venue-actions .btn.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(-2px);
}

.venue-2 .venue-actions .btn.btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

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

.venue-2 .venue-map h4 {
    color: var(--heading-color);
    margin-bottom: 25px;
    text-align: center;
}

.venue-2 .venue-map .map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.venue-2 .venue-map .map-container iframe {
    width: 100%;
    height: 400px;
}

.venue-2 .travel-info {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--surface-color);
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s ease;
}

.venue-2 .travel-info:hover {
    transform: translateY(-5px);
}

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

.venue-2 .travel-info .travel-icon i {
    font-size: 1.8rem;
    color: var(--contrast-color);
}

.venue-2 .travel-info h5 {
    color: var(--heading-color);
    margin-bottom: 15px;
}

.venue-2 .travel-info p {
    margin: 0;
    line-height: 1.6;
}

.venue-2 .accommodation-section h4 {
    color: var(--heading-color);
    margin-bottom: 30px;
    text-align: center;
}

.venue-2 .accommodation-section .hotel-card {
    background-color: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.venue-2 .accommodation-section .hotel-card:hover {
    transform: translateY(-5px);
}

.venue-2 .accommodation-section .hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.venue-2 .accommodation-section .hotel-card .hotel-info {
    padding: 20px;
}

.venue-2 .accommodation-section .hotel-card .hotel-info h6 {
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.venue-2 .accommodation-section .hotel-card .hotel-info .hotel-distance {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.venue-2 .accommodation-section .hotel-card .hotel-info .hotel-distance i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.venue-2 .accommodation-section .hotel-card .hotel-info .hotel-price {
    font-weight: 600;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .venue-2 .venue-actions {
        justify-content: center;
    }

    .venue-2 .venue-actions .btn {
        flex: 1;
        min-width: 150px;
    }

    .venue-2 .venue-map .map-container iframe {
        height: 300px;
    }

    .venue-2 .travel-info {
        margin-bottom: 30px;
    }

    .venue-2 .hotel-card {
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/
.sponsors .clients-wrap {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.sponsors .client-logo {
    background-color: var(--surface-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    overflow: hidden;
}

.sponsors .client-logo img {
    padding: 50px;
    max-width: 80%;
    transition: 0.3s;
}

@media (max-width: 640px) {
    .sponsors .client-logo img {
        padding: 30px;
        max-width: 50%;
    }
}

.sponsors .client-logo:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
    background-color: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact .contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.contact .contact-info-box .icon-box i {
    font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
    margin-bottom: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 15px;
    line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
    margin-bottom: 0;
}

.contact .map-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.contact .map-section iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact .form-container-overlap {
    position: relative;
    margin-top: -150px;
    margin-bottom: 60px;
    z-index: 10;
}

.contact .contact-form-wrapper {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.contact .contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.contact .contact-form-wrapper h2:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

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

.contact .contact-form-wrapper .form-group .input-with-icon {
    position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 18px;
    z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
    top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
    top: 25px;
    transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
    border-radius: 8px;
    padding: 12px 15px 12px 45px;
    height: 3.5rem;
    color: var(--default-color);
    background-color: var(--surface-color);
    font-size: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
    height: 180px;
    resize: none;
    padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
    margin-top: 10px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact .form-container-overlap {
        margin-top: -120px;
    }

    .contact .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact .contact-info-box {
        margin-bottom: 20px;
    }

    .contact .form-container-overlap {
        margin-top: -100px;
    }

    .contact .contact-form-wrapper {
        padding: 25px;
    }

    .contact .contact-form-wrapper h2 {
        font-size: 24px;
    }

    .contact .map-section {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .contact .form-container-overlap {
        margin-top: -80px;
    }

    .contact .contact-form-wrapper {
        padding: 20px;
    }

    .contact .btn-submit {
        width: 100%;
    }

    .contact .map-section {
        height: 400px;
    }
}





/*--------------------------------------------------------------
# legal Section
--------------------------------------------------------------*/
.legal {
    font-size: 1rem;
    line-height: 1.7;
}

.legal .legal-header {
    margin-bottom: 60px;
    text-align: center;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-bottom: 40px;
}

.legal .legal-header .header-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal .legal-header .header-content .last-updated {
    display: inline-block;
    padding: 8px 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 30px;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.legal .legal-header .header-content h1 {
    font-size: 2.8rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.legal .legal-header .header-content .intro-text {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
}

.legal .legal-content {
    max-width: 800px;
    margin: 0 auto ;
}

.legal .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.legal .legal-content .content-section {
    margin-bottom: 50px;
}

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

.legal .legal-content .content-section h2 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.legal .legal-content .content-section h3 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin: 30px 0 20px;
    font-weight: 500;
}

.legal .legal-content .content-section p {
    margin-bottom: 20px;
}

.legal .legal-content .content-section p:last-child {
    margin-bottom: 0;
}

.legal .legal-content .content-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.legal .legal-content .content-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.legal .legal-content .content-section ul li:last-child {
    margin-bottom: 0;
}

.legal .legal-content .content-section ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--accent-color);
}



.legal .contact-box {
    padding-top: 40px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}



@media print {
    .legal {
        font-size: 12pt;
        line-height: 1.5;
    }

    .legal .legal-header {
        text-align: left;
        border-bottom: 1pt solid #000;
        padding-bottom: 20pt;
        margin-bottom: 30pt;
    }

    .legal h1 {
        font-size: 24pt;
    }

    .legal h2 {
        font-size: 18pt;
        page-break-after: avoid;
    }

    .legal h3 {
        font-size: 14pt;
        page-break-after: avoid;
    }

    .legal p,
    .legal ul {
        page-break-inside: avoid;
    }

    .legal .contact-details {
        border: 1pt solid #000;
        padding: 15pt;
    }
}

@media (max-width: 767px) {
    .legal .legal-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .legal .legal-header .header-content h1 {
        font-size: 2.2rem;
    }

    .legal .legal-header .header-content .intro-text {
        font-size: 1.1rem;
    }

    .legal .legal-content .content-section {
        margin-bottom: 40px;
    }

    .legal .legal-content .content-section h2 {
        font-size: 1.6rem;
    }

    .legal .legal-content .content-section h3 {
        font-size: 1.3rem;
    }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    padding: 80px 0;
    margin: 0 auto;
}

.error-404 .error-icon {
    font-size: 5rem;
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: color-mix(in srgb, var(--heading-color), transparent 10%);
    font-family: var(--heading-font);
    line-height: 1;
}

.error-404 .error-title {
    font-size: 2rem;
    color: var(--heading-color);
    font-weight: 600;
}

.error-404 .error-text {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    max-width: 600px;
    margin: 0 auto;
}

.error-404 .search-box {
    max-width: 500px;
    margin: 0 auto;
}

.error-404 .search-box .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
}

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

    .error-404 .error-code {
        font-size: clamp(4rem, 12vw, 8rem);
    }

    .error-404 .error-title {
        font-size: 1.5rem;
    }

    .error-404 .error-text {
        font-size: 1rem;
        padding: 0 20px;
    }

    .error-404 .search-box {
        margin: 0 20px;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}
