/**
* Template Name: TheEvent
* Template URL: https://bootstrapmade.com/theevent-conference-event-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway",  sans-serif;
    --nav-font: "Raleway",  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: #2f3138; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #0e1b4d; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #f82249; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    /*--nav-color: rgba(255, 255, 255, 0.65);  /* The default color of the main navmenu links */
    /*--nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */

    --nav-color: rgb(255 0 0, 0.65);  /* The default color of the main navmenu links */
    --nav-hover-color: #ff0000; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #f82249; /* 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: #ffffff;
    /*  --background-color: #f2f2f3;*/
    --surface-color: #ffffff;
}

.dark-background {
    /*  --background-color: #000820;*/
    --background-color: #ffffff;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #001553;
    --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}
/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}
.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}
.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}       
/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

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

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

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

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

    100% {
        transform: rotate(360deg);
    }
}
/*----------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --background-color: #000000;
    --heading-color: var(--contrast-color);
    --default-color: var(--contrast-color);
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    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%);
}

/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.speakers {
    --default-color: #ffffff;
}

.speakers .member {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.speakers .member .member-info {
    /*  position: absolute;
      padding: 15px 0;*/
    position: relative;
    padding: 0 10%;
    inset: auto 0 -44px 0;
    background: rgba(0, 0, 0, 0.6);
    transition: 0.4s;
}

.speakers .member .member-info-content h4 {
    color: var(--contrast-color);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 16px;
}

.speakers .member .member-info-content h4 a {
    color: var(--contrast-color);
}

.speakers .member .member-info-content h4 a:hover {
    color: var(--accent-color);
}

.speakers .member .member-info-content span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.speakers .member .social {
    text-align: center;
    padding-top: 10px;
}

.speakers .member .social a {
    transition: color 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0 4px;
    display: inline-block;
}

.speakers .member .social a:hover {
    color: var(--default-color);
}

.speakers .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.speakers .member:hover .member-info {
    bottom: 0;
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
.schedule {
    --background-color: color-mix(in srgb, var(--alt-background-color), transparent 95%);
}

.schedule .nav-tabs {
    text-align: center;
    margin: auto;
    display: block;
    border-bottom: 0;
    margin-bottom: 30px;
}

.schedule .nav-tabs li {
    display: inline-block;
    margin-bottom: 0;
}

.schedule .nav-tabs a {
    border: none;
    border-radius: 50px;
    font-weight: 600;
    background-color: var(--heading-color);
    color: var(--contrast-color);
    padding: 10px 100px;
}

@media (max-width: 991px) {
    .schedule .nav-tabs a {
        padding: 8px 60px;
    }
}

@media (max-width: 767px) {
    .schedule .nav-tabs a {
        padding: 8px 50px;
    }
}

@media (max-width: 480px) {
    .schedule .nav-tabs a {
        padding: 8px 30px;
    }
}

.schedule .nav-tabs a.active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.schedule .sub-heading {
    text-align: center;
    font-size: 18px;
    font-style: italic;
    margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
    .schedule .sub-heading {
        width: 75%;
    }
}

.schedule .tab-pane {
    transition: ease-in-out 0.2s;
}

.schedule .schedule-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding-top: 15px;
    padding-bottom: 15px;
    transition: background-color ease-in-out 0.3s;
}

.schedule .schedule-item time {
    padding-bottom: 5px;
    display: inline-block;
}

.schedule .schedule-item .speaker {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    float: left;
    margin: 0 10px 10px 0;
}

.schedule .schedule-item .speaker img {
    height: 100%;
    transform: translateX(-50%);
    margin-left: 50%;
    transition: all ease-in-out 0.3s;
}

.schedule .schedule-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.schedule .schedule-item h4 span {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-weight: normal;
    font-size: 16px;
}

.schedule .schedule-item p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hotels Section
--------------------------------------------------------------*/
.hotels .card {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    position: relative;
    border-radius: 0;
}

.hotels .card .card-img {
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 0;
}

.hotels .card .card-img img {
    transition: 0.3s ease-in-out;
}

.hotels .card h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
    padding: 0 20px;
}

.hotels .card a {
    color: var(--heading-color);
    transition: 0.3;
}

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

.hotels .card .stars {
    padding: 0 20px;
    margin-bottom: 5px;
}

.hotels .card .stars i {
    color: #ffc107;
}

.hotels .card p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-style: italic;
    font-size: 15px;
}

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
    overflow: hidden;
}

.gallery .swiper-wrapper {
    height: auto;
}

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

.gallery .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--background-color);
    border: 1px solid var(--accent-color);
    width: 12px;
    height: 12px;
    opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
    text-align: center;
}

@media (min-width: 992px) {
    .gallery .swiper-wrapper {
        padding: 40px 0;
    }

    .gallery .swiper-slide-active {
        background: var(--background-color);
        border: 6px solid var(--accent-color);
        padding: 4px;
        z-index: 1;
        transform: scale(1.2);
        transition: none;
    }
}

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

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

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

.faq .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 .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

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

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

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

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

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

.faq .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 .faq-container .faq-active h3 {
    color: var(--accent-color);
}

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

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

/*--------------------------------------------------------------
# Buy Tickets Section
--------------------------------------------------------------*/
.buy-tickets .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
    position: relative;
}

.buy-tickets .pricing-item h3 {
    font-weight: 700;
    margin-bottom: 0;
    font-size: 24px;
}

.buy-tickets .pricing-item h4 {
    font-size: 48px;
    color: var(--accent-color);
    font-weight: 400;
    font-family: var(--heading-font);
    margin-bottom: 25px;
    text-align: center;
}

.buy-tickets .pricing-item h4 sup {
    font-size: 28px;
}

.buy-tickets .pricing-item h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 18px;
}

.buy-tickets .pricing-item ul {
    padding: 20px 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-align: left;
    line-height: 20px;
}

.buy-tickets .pricing-item ul li {
    padding-top: 15px;
    display: flex;
    align-items: center;
}

.buy-tickets .pricing-item ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
}

.buy-tickets .pricing-item ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.buy-tickets .pricing-item ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.buy-tickets .pricing-item ul .na span {
    text-decoration: line-through;
}

.buy-tickets .buy-btn {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    display: inline-block;
    padding: 12px 40px;
    border-radius: 4px;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    font-family: var(--heading-font);
}

.buy-tickets .buy-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.buy-tickets .featured {
    background: var(--accent-color);
}

.buy-tickets .featured h3,
.buy-tickets .featured h4,
.buy-tickets .featured h4 span,
.buy-tickets .featured ul,
.buy-tickets .featured ul .na,
.buy-tickets .featured ul i,
.buy-tickets .featured ul .na i {
    color: var(--contrast-color);
}

.buy-tickets .featured .buy-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--contrast-color);
}

.buy-tickets .featured .buy-btn:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .details h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.events .details .social {
    margin-bottom: 15px;
}

.events .details .social a {
    background: color-mix(in srgb, var(--default-color), transparent 92%);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.events .details .social a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.events .details .social a i {
    font-size: 16px;
    line-height: 0;
}

.events .details p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 15px;
    margin-bottom: 10px;
}
/*----------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------
# Starter Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}
/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
.venue .container-fluid {
    margin-bottom: 3px;
}
.venue .venue-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}
.venue .venue-info {
    /*    background: url("../img/venue-info-bg.jpg") top center no-repeat;*/
    background: top center no-repeat;
    /*    background-size: cover;*/
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}
.venue .venue-info:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.venue .venue-info h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--contrast-color);
}
@media (max-width: 574px) {
    .venue .venue-info h3 {
        font-size: 24px;
    }
}
.venue .venue-info p {
    color: var(--contrast-color);
    margin-bottom: 0;
}
.venue .venue-gallery-container {
    padding-right: 12px;
}
.venue .venue-gallery {
    overflow: hidden;
    border-right: 3px solid var(--background-color);
    border-bottom: 3px solid var(--background-color);
}
.venue .venue-gallery img {
    transition: all ease-in-out 0.4s;
}
.venue .venue-gallery:hover img {
    transform: scale(1.1);
}
/*--------------------------------------------------------------
# xhtml (CLEAR)
--------------------------------------------------------------*/
/* ---------- NEWSARTICLES ---------- */
.parent-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 8px;
}
.tags-button-radius {
    height: 40px!important;
    border-radius: 50px!important;
}
.unactive{
    height: 40px!important;
    border-radius: 50px!important;
    color: #7A7A7A!important;
    background-color: #F6F6F7!important;
    border: 0!important;
}
.tag-status{
    border-radius: 50px!important;
    color: #7A7A7A!important;
    background-color: #F0F3FA!important;
    border: 0!important;
    padding: 8px 12px;
}
.parent-tags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 8px;
}
.parent-tags .div1 p{
    font-size: 24px;
    font-weight: 700;
}
.card-img, .hotels .card{
    border-radius: 8px!important;
    border: none;
}
.red, .orange, .yellow, .gray {
    border-radius: 50px;
    padding: .5rem;
    color: white; /* สีข้อความเริ่มต้น */
}
.red {
    background-color: #FF0000; /* สีแดง */
}
.orange {
    background-color: #FFA500; /* สีส้ม */
    color: white; /* สีข้อความ */
}
.yellow {
    background-color: #FFFF00; /* สีเหลือง */
    color: black; /* ปรับสีข้อความ */
}
.gray {
    background-color: #808080; /* สีเทา */
}
.red, .orange, .yellow, .gray {
    border-radius: 50px;
    padding: .5rem;
    font-weight: 500; /* ทำให้ฟอนต์หนาขึ้น */
}
.red {
    background-color: #FF3B3B; /* สีแดงหลัก */
    color: #FFFFFF; /* สีฟอนต์ขาว */
}
.orange {
    background-color: #FF6F61; /* สีส้มอ่อน */
    color: #FFFFFF; /* สีฟอนต์เข้ม */
}
.yellow {
    background-color: #FFC107; /* สีเหลืองสด */
    color: #FFFFFF; /* สีฟอนต์เข้ม */
}
.gray {
    background-color: #B0BEC5; /* สีเทาอ่อน */
    color: #FFFFFF; /* สีฟอนต์เข้ม */
}
/* ---------- DESCRIBENEWSARTICLES ---------- */
.parent-describe {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}
.div1 {
    grid-column: 1;
}
.div2 {
    grid-column: 2;
    position: sticky;
    top: 20px;
}
.div1 .card {
    background: white;
    border: none !important;
    box-shadow: none;
    padding: 0;
}
.div1 .card img {
    width: 100%;
    height: 100%;
    border-radius: 12px !important;
    object-fit: cover;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.div1 .card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0 !important;
    line-height: 1.2;
}
.div1 .card h3 a {
    color: #333;
    text-decoration: none;
}
.div1 .card p:first-of-type {
    display: flex;
    align-items: center;
    color: #7A7A7A !important;
    font-size: 0.9rem;
    margin: 0 0 20px 0 !important;
}
.div1 .card p:first-of-type i {
    margin-right: 8px;
    color: #666;
}
.div1 .card p:last-of-type {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
}
.div2 > div {
    background-color: white !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: 12px !important;
    padding: 25px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.div2 h3 {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin-bottom: 15px !important;
    margin-top: 10px !important;
    padding-left: 10px !important;
    border-left: 4px solid #f44336 !important;
}
.div2 div[onclick] {
    padding: 15px 0;
    border-bottom: 1px solid #F0F0F0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}
.div2 div[onclick]:last-of-type {
    border-bottom: none;
}
.div2 div[onclick]:hover {
    background: #F9F9F9 !important;
    padding-left: 10px;
    border-radius: 8px !important;
}
.div2 div[onclick] p {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    line-height: 1.4;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
}
.div2 div[onclick] span {
    font-size: 0.8rem;
    color: #888;
}
.limit_text_2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.botton-tags {
    display: inline-block !important;
    background: #F6F6F7 !important;
    color: #666 !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent !important;
    margin: 0 8px 8px 0 !important;
}
.botton-tags:hover {
    background: #E8F5E8 !important;
    color: #4CAF50 !important;
    border-color: #4CAF50 !important;
    transform: translateY(-1px);
}
.tag-status {
    background: #E3F2FD !important;
    color: #1976D2 !important;
}
/* Responsive Design */
@media (max-width: 1440px) {
    .parent-describe {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .div1 {
        order: 1;
    }
    .div2 {
        display: none;
    }
}
@media (max-width: 768px) {
    .parent-describe {
        gap: 50px;
    }
    .div1 .card h3 {
        font-size: 1.5rem;
    }
    .div1 .card img {
        height: 250px;
    }
    .div2 {
        display: none;
    }
}
/*--------------------------------------------------------------
# goldplus.xhtml (CLEAR)
--------------------------------------------------------------*/
.reasons-section {
    padding: clamp(40px, 8vw, 60px) clamp(5%, 10vw, 10%);
    text-align: center;
}
.reasons-section h2 {
    font-size: clamp(24px, 4vw, 30px);
    margin-bottom: clamp(50px, 10vw, 75px);
    color: #333;
    font-weight: 600;
}
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(30px, 6vw, 80px);
    margin-top: clamp(30px, 5vw, 40px);
    padding-left: 5%;
    padding-right: 5%;
}
.reason-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.reason-icon {
    background: #fff;
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(15px, 3vw, 20px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.reason-icon img {
    width: clamp(30px, 5vw, 40px);
    height: clamp(30px, 5vw, 40px);
}
.reason-title {
    font-weight: bold;
    margin-bottom: clamp(8px, 2vw, 10px);
    font-size: clamp(18px, 3vw, 22px);
    color: #333;
}
.reason-desc {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #666;
    line-height: 1.5;
}
.steps-section {
    background: linear-gradient(135deg, #e52d27 0%, #b31217 100%);
    color: white;
    padding: clamp(40px, 8vw, 60px) 0;
    text-align: center;
}
.steps-title {
    font-size: clamp(24px, 4vw, 30px);
    margin-bottom: clamp(30px, 5vw, 40px);
    font-weight: 600;
    color: white;
}
.steps-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: clamp(15px, 3vw, 20px);
}
.step-card {
    background: white;
    border-radius: clamp(8px, 1.5vw, 10px);
    padding: clamp(20px, 4vw, 30px) clamp(15px, 3vw, 20px);
    width: calc(25% - 15px);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    min-height: clamp(220px, 35vw, 260px);
}
.step-number {
    font-size: clamp(32px, 6vw, 42px);
    color: #beb1b1;
    font-weight: 300;
    margin-bottom: clamp(10px, 2vw, 15px);
}
.step-title {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    color: #333;
    margin-bottom: clamp(10px, 2vw, 15px);
}
.step-description {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #666;
    flex-grow: 1;
}
.programs-section {
    text-align: center;
    position: relative;
    overflow: hidden;
}
.programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="25" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="25" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}
.programs-title {
    font-size: clamp(24px, 4vw, 30px);
    margin-bottom: clamp(35px, 6vw, 50px);
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.programs-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 10vw, 80px);
    height: clamp(3px, 0.5vw, 4px);
    background: linear-gradient(90deg, #E52D27, #ff6b6b);
    border-radius: 2px;
}
.programs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 40vw, 300px), 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin: 0 auto;
}
.program-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: clamp(15px, 2.5vw, 20px);
    padding: 0;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}
.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.3s; }
.program-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}
.program-card:hover::before {
    left: 100%;
}
.program-card:hover {
    transform: translateY(calc(-1vw - 5px)) scale(1.02);
    box-shadow: 0 clamp(15px, 3vw, 25px) clamp(30px, 6vw, 50px) rgba(0,0,0,0.15);
}
.program-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: clamp(15px, 2.5vw, 20px);
    transition: all 0.3s ease;
}
.program-card:hover img {
    transform: scale(1.05);
}
.program-card:focus {
    outline: 3px solid #E52D27;
    outline-offset: 2px;
}
.program-card {
    cursor: pointer;
}
.program-card:active {
    transform: translateY(calc(-0.5vw - 3px)) scale(0.98);
}
.program-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 45, 39, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: clamp(15px, 2.5vw, 20px);
    pointer-events: none;
}
.program-card:hover::after {
    opacity: 1;
}
.form-title {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: bold;
    margin-bottom: clamp(15px, 3vw, 20px);
}
.form-group {
    margin-bottom: clamp(12px, 2vw, 15px);
}
.form-control {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: clamp(4px, 0.5vw, 5px);
}
.submit-button {
    width: 100%;
    padding: clamp(10px, 2vw, 12px);
    background-color: #FF5353;
    color: white;
    border: none;
    border-radius: clamp(4px, 0.5vw, 5px);
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: bold;
    cursor: pointer;
    margin-top: clamp(8px, 1.5vw, 10px);
}
.submit-button:hover {
    background-color: #e64545;
}
.form-footer {
    font-size: clamp(10px, 1.5vw, 12px);
    color: #999;
    text-align: center;
    margin-top: clamp(12px, 2vw, 15px);
}
.policy-link {
    color: #FF5353;
    text-decoration: none;
}
.policy-link:hover {
    text-decoration: underline;
}
.reason-item .feature-icon {
    margin-bottom: clamp(15px, 3vw, 20px);
}
.reason-text {
    margin-top: clamp(12px, 2vw, 15px);
}
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(30px, 6vw, 80px);
    margin-top: clamp(30px, 5vw, 40px);
}
.reason-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.reason-item .reason-title {
    margin-top: clamp(12px, 2vw, 15px);
    margin-bottom: clamp(12px, 2vw, 15px);
}
/*--------------------------------------------------------------
# Index.jsp (CLEAR)
--------------------------------------------------------------*/
/* ---------- BANNER SECTION ---------- */
.banner-section {
    margin-top: calc(1vw + 1rem);
    background-color: #fff;
    overflow: hidden;
}
.banner-container {
    display: flex;
    padding: 0 5%;
    margin-bottom: calc(0.6vw + 1rem);
    gap: calc(0.3vw + 0.5rem);
}
.banner-header {
    background-color: #000;
    color: #FFD700;
    text-align: center;
    padding: calc(0.8vw + 1.5rem);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.banner-header-text {
    text-align: left;
    flex: 1;
}
.banner-header h2 {
    font-size: calc(0.8vw + 1.5rem);
    font-weight: bold;
    margin-bottom: calc(0.2vw + 0.3rem);
}
.banner-header p {
    font-size: calc(0.6vw + 0.7rem);
    color: #fff;
}
.banner-header-image {
    width: calc(4vw + 8rem);
    height: calc(4vw + 8rem);
    position: relative;
}
/* Main Banner Content */
.main-banner {
    flex: 8;
    height: clamp(300px, 25vw, 400px);
    position: relative;
    overflow: hidden;
    width: 100%;
}
.banner-content {
    padding: calc(1vw + 2rem);
    width: 50%;
    z-index: 1;
}
.banner-content h2 {
    font-size: calc(0.8vw + 1.5rem);
    font-weight: bold;
    margin-bottom: calc(0.3vw + 0.5rem);
    color: #fff;
}
.banner-content p {
    font-size: calc(0.8vw + 0.9rem);
    margin-bottom: calc(0.5vw + 1rem);
}
.banner-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}
.banner-image img, .percent-image {
    width: 100%;
    height: 100%;
}
.banner-image img { object-fit: cover; }
@media (max-width: 1439px) {
    .banner-image {
        overflow: hidden;
    }

    .banner-image img {
        object-position: left;
    }
}
.percent-image { object-fit: contain; }
.banner-dots {
    position: absolute;
    bottom: calc(0.5vw + 1rem);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: calc(0.2vw + 0.4rem);
    z-index: 10;
}
.banner-dot {
    width: calc(0.3vw + 0.6rem);
    height: calc(0.3vw + 0.6rem);
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.banner-dot.active {
    background-color: #FF5353;
    transform: scale(1.2);
}
.banner-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.banner-slide {
    min-width: 100%;
    height: 100%;
}
/* ---------- QR CODE SECTION ---------- */
.qr-section {
    flex: 2.5;
    height: clamp(300px, 25vw, 400px);
}
.qr-container {
    background-color: #e02020;
    padding: calc(0.5vw + 1rem);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.qr-code {
    width: clamp(200px, 20vw, 220px);
    height: clamp(200px, 20vw, 220px);
    margin: 0 auto calc(0.4vw + 0.8rem);
}
.qr-text {
    font-size: calc(0.4vw + 1.2rem));
    font-weight: 600;
    color: #fff;
    margin-bottom: calc(0.4vw + 0.8rem);
    white-space: nowrap;
}
.app-buttons {
    display: flex;
    justify-content: center;
    margin-top: calc(0.4vw + 0.8rem);
}
.app-button {
    display: inline-block;
    width: calc(3vw + 8rem);
    height: calc(1.2vw + 2.4rem);
}
.app-button img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}
/* ---------- FEATURES SECTION ---------- */
.features-section { 
    padding: calc(0.8vw + 1.5rem) 5%;
}
.features-row {
    display: flex;
    justify-content: space-between;
}
.feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    border-radius: calc(0.2vw + 0.5rem);
    padding: calc(0.4vw + 0.8rem) calc(0.5vw + 1rem);
    position: relative;
}
.feature-item:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: calc(0.01vw + 0.01rem);
    background-color: #ddd;
}
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: calc(0.3vw + 0.5rem);
}
.feature-icon img {
    width: calc(2vw + 4rem);
    height: calc(2vw + 4rem);
}
.feature-text { display: flex; flex-direction: column; }
.feature-title {
    font-weight: bold;
    margin-bottom: calc(0.05vw + 0.1rem);
    font-size: calc(0.8vw + 0.9rem);
}
.feature-desc {
    font-size: calc(0.5vw + 0.5rem);
    color: #666;
}
/* ---------- PROMOTIONAL BANNER ---------- */
.promo-banner {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    max-height: calc(5vw + 9rem);
    overflow: hidden;
}
.promo-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* ---------- PRODUCTS SECTION ---------- */
.products-container {
    position: relative;
    padding: 0 5%;
    margin: calc(0.6vw + 1rem) 0;
}
.news-container {
    position: relative;
    padding: 0 5%;
    margin: calc(0.6vw + 1rem) 0;
}
.product-row {
    display: flex;
    gap: calc(0.4vw + 0.8rem);
    width: 100%;
    transition: transform 0.5s ease;
}
/* --------- PRODUCT PROMOTION SECTION --------- */
.products-section { 
    padding: calc(0.5vw + 1rem) 0;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: calc(0.4vw + 0.8rem);
    margin-bottom: calc(0.6vw + 1rem);
}
.product-card {
    background: #fff;
    border: none;
    border-radius: calc(0.2vw + 0.5rem);
    overflow: hidden;
    text-align: left;
    padding: calc(0.3vw + 0.5rem);
}
.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: calc(0.2vw + 0.5rem);
    position: relative;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.discount-badge {
    position: absolute;
    top: calc(0.3vw + 0.5rem);
    left: calc(0.3vw + 0.5rem);
    background-color: #ff5353;
    color: #fff;
    font-size: calc(0.3vw + 0.6rem);
    padding: calc(0.1vw + 0.2rem) calc(0.2vw + 0.4rem);
    border-radius: calc(0.1vw + 0.2rem);
}
.product-info {
    padding: calc(0.3vw + 0.5rem) 0;
    text-align: left;
}
.product-price {
    font-weight: bold;
    color: #ff5353;
    font-size: calc(0.4vw + 1.2rem);
}
.original-price {
    font-size: calc(0.4vw + 0.8rem);
    color: #c5b4b4;
    text-decoration: line-through;
}
.sold-count {
    font-size: calc(0.5vw + 0.5rem);
    color: #968484;
    margin-top: calc(0.1vw + 0.2rem);
}
.product-name {
    font-size: calc(0.6vw + 0.7rem);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.8vw + 3.3rem);
}
.product-price2 {
    font-weight: bold;
    color: #ff5353;
    font-size: calc(0.6vw + 0.7rem);
}
.original-price2 {
    font-size: calc(0.3vw + 0.5rem);
    color: #c5b4b4;
    text-decoration: line-through;
}
.sold-count2 {
    font-size: calc(0.5vw + 0.5rem);
    color: #968484;
    margin-top: calc(0.1vw + 0.2rem);
}
.custom-carousel .p-carousel-content { position: relative; overflow: hidden; }
.custom-carousel .p-carousel-items-container {
    overflow: hidden;
    width: 100%;
}
.custom-carousel .p-carousel-items-content {
    display: flex;
    transition: transform 0.3s;
}
.custom-carousel .p-carousel-item { 
    flex: 0 0 calc(20% - 0.8rem);
    margin-right: calc(0.4vw + 0.8rem); 
}
.recommended-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.recommended-item {
    background: #fff;
    border: none;
    border-radius: calc(0.2vw + 0.5rem);
    overflow: hidden;
    padding: 0 calc(0.5vw + 1rem);
    text-align: left;
}
.recommended-section { 
    padding: calc(0.5vw + 1rem) 0;
}
/* ---------- CATEGORIES SECTION ---------- */
.categories-section { 
    padding: calc(0.5vw + 1rem) 0;
}
.categories-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0 5%;
    margin: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.categories-container::-webkit-scrollbar {
    display: none;
}
.category-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: calc(4vw + 8rem);
}
.category-icon {
    width: calc(3.5vw + 3em);
    height: calc(3.5vw + 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.category-name {
    font-size: calc(0.2vw + 1rem);
    text-align: center;
    color: #333;
    font-weight: 500;
}
.show-more-button {
    display: none;
    width: 100%;
    text-align: center;
    padding: calc(0.3vw + 0.5rem);
    background-color: #f5f5f5;
    color: #000000;
    font-size: calc(0.5vw + 1rem);
    font-weight: 600;
    border: none;
    border-radius: calc(0.2vw + 0.3rem);
    margin-top: calc(0.4vw + 0.8rem);
    cursor: pointer;
}
.show-more-button:hover { background-color: #e0e0e0; }
/* ---------- RESPONSIVE STYLES ---------- */
/* (1440px and below) */
@media screen and (max-width: 1440px) {
    .banner-container { padding: 0; }
    .main-banner {
        width: calc(100% + 20%);
        border-radius: 0;
        margin-left: -10%;
        margin-right: -10%;
        height: calc(10vw + 17.5rem);
    }
    .features-row { flex-wrap: wrap; }
    .feature-item {
        flex: 1 0 calc(50% - 1px);
        min-width: calc(50% - 1px);
    }
    .feature-item:nth-child(2n):after { display: none; }
    .promo-banner {
        min-height: calc(5vw + 9rem);
    }
    .product-grid,
    .recommended-grid { 
        grid-template-columns: repeat(4, 1fr);
    }
    .custom-carousel .p-carousel-item { 
        flex: 0 0 calc(25% - 0.8rem);
    }
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Hide */
    .qr-section,
    .promo-banner,
    .venue-info { display: none; }
}
/* (768px and below) */
@media screen and (max-width: 768px) {
    .banner-container { padding: 0; }
    .main-banner {
        height: calc(8vw + 15rem);
        margin: 0;
        width: 100%;
        border-radius: 0;
        margin-left: -10%;
        margin-right: -10%;
    }
    .features-section { 
        padding: calc(0.5vw + 1rem) 5%;
    }
    .features-row { flex-direction: column; }
    .feature-item {
        flex: 1 0 100%;
        min-width: 100%;
        margin-bottom: calc(0.3vw + 0.5rem);
        border-bottom: calc(0.05vw + 0.1rem) solid #eee;
    }
    .feature-item:not(:last-child):after { display: none; }
    .product-grid,
    .recommended-grid { 
        grid-template-columns: repeat(2, 1fr);
    }
    .recommended-grid {
        max-height: calc(9vw + 16.5rem);
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    .recommended-grid.expanded { max-height: calc(55vw + 100rem); }
    .show-more-button { display: block; }
    .custom-carousel .p-carousel-item { 
        flex: 0 0 calc(50% - 0.5rem);
    }
    .category-item { max-width: calc(2.5vw + 5rem); }
    .category-icon {
        width: calc(2vw + 4rem);
        height: calc(2vw + 4rem);
    }
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}
/*--------------------------------------------------------------
# About Us.jsp (CLEAR)
--------------------------------------------------------------*/
.about-section {
    padding: calc(1vw + 2rem) 5%;
    display: flex;
    gap: calc(0.8vw + 1.5rem);
    align-items: center;
    font-family: NotoSansThai, sans-serif;
    letter-spacing: 0.36px;
    background-color: #fff;
    color: var(--text-primary);
    transition: background-color 0.3s, color 0.3s;
}
.about-content {
    flex: 1;
}
.about-content2 {
    flex: 1;
}
.about-image {
    flex: 1;
    text-align: center;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: auto;
    border-radius: calc(0.2vw + 0.5rem);
    box-shadow: var(--shadow-light);
    display: block;
}
.vision-mission {
    background-color: var(--section-bg);
    padding: calc(1vw + 2rem) 5%;
    display: flex;
    gap: calc(0.8vw + 1.5rem);
    font-family: NotoSansThai, sans-serif;
}
.vision-box, .mission-box {
    flex: 1;
    background: #fff;
    padding: calc(0.8vw + 1.5rem);
    border-radius: calc(0.2vw + 0.5rem);
    box-shadow: 0 calc(0.3vw + 0.5rem) calc(0.8vw + 1.5rem) rgba(0,0,0,0.05);
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}
.icon-container {
    display: flex;
    justify-content: center;
}
.icon-circle {
    width: calc(2vw + 4rem);
    height: calc(2vw + 4rem);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-circle i {
    font-size: calc(1vw + 2rem);
    color: var(--secondary-color);
}
.timeline-section {
    padding: calc(1vw + 2rem) 5%;
    background-color: #fff;
    font-family: NotoSansThai, sans-serif;
}
.timeline-container {
    max-width: calc(60vw + 30rem);
    margin: 0 auto;
    position: relative;
}
.timeline-item {
    display: flex;
    margin-bottom: calc(1vw + 2rem);
    position: relative;
    align-items: flex-start;
    justify-content: center;
}
.timeline-title {
    width: 40%;
    text-align: right;
    font-weight: bold;
    font-size: calc(0.5vw + 1rem);
    padding-right: calc(1vw + 2rem);
    flex-shrink: 0;
    margin-right: 0;
    color: var(--text-primary);
}
.timeline-connector {
    width: calc(1vw + 2rem);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    flex-shrink: 0;
    z-index: 5;
}
.timeline-circle {
    width: calc(0.5vw + 1rem);
    height: calc(0.5vw + 1rem);
    background-color: #fff;
    border: calc(0.1vw + 0.2rem) solid var(--secondary-color);
    border-radius: 50%;
    z-index: 2;
}
.timeline-item:last-child .timeline-circle {
    background-color: var(--secondary-color);
}
.timeline-line {
    position: absolute;
    width: calc(0.1vw + 0.2rem);
    background-color: var(--secondary-color);
    top: calc(0.5vw + 1rem);
    bottom: calc(-1 * calc(1vw + 2rem));
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.timeline-container::before {
    content: '';
    position: absolute;
    width: calc(0.1vw + 0.2rem);
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.timeline-item:last-child .timeline-line {
    display: none;
}
.timeline-content {
    width: 40%;
    padding: 0 calc(1vw + 2rem);
    text-align: left;
    margin-left: 0;
    font-size: calc(0.4vw + 0.8rem);
}
.timeline-content p {
    margin: 0;
    line-height: 1.5;
    font-size: calc(0.4vw + 0.8rem);
    color: var(--text-secondary);
}
@media screen and (max-width: 1440px) {
    .about-section {
        flex-direction: column;
    }
    .about-image {
        order: -1;
        margin-bottom: calc(0.8vw + 1.5rem);
    }
    .about-content, .about-content2 {
        flex: none;
        width: 100%;
    }
    .vision-mission {
        flex-direction: column;
    }
    .vision-box, .mission-box {
        flex: none;
        width: 100%;
        margin-bottom: calc(0.5vw + 1rem);
    }
    .mission-box {
        margin-bottom: 0;
    }
    .timeline-container::before {
        display: none;
    }
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
    }
    .timeline-title {
        width: 100%;
        text-align: left;
        padding-right: 0;
        margin-bottom: calc(0.3vw + 0.5rem);
        margin-left: 0;
        font-size: calc(0.5vw + 1rem);
        font-weight: bold;
    }
    .timeline-connector {
        display: none;
    }
    .timeline-line {
        display: none;
    }
    .timeline-content {
        width: 100%;
        padding: 0;
        margin-left: 0;
        font-size: calc(0.5vw + 1rem);
    }
    .timeline-content p {
        color: var(--text-color-muted);
        line-height: 1.4;
    }
}
/*--------------------------------------------------------------
# Global Sections (CLEAR)
--------------------------------------------------------------*/
.section-title {
    font-size: calc(0.7vw + 1.3rem);
    font-weight: bold;
    margin: calc(0.6vw + 1rem) 0 calc(0.5vw + 1rem);
    color: #000000;
    text-align: left;
}
.section-title2 {
    font-size: calc(0.4vw + 1.2rem);
    font-weight: bold;
    margin: calc(0.6vw + 1rem) 0 calc(0.5vw + 1rem);
    color: #000000;
    padding: 0 5%;
    text-align: center;
}
.section-subtitle {
    font-size: calc(0.6vw + 1.2rem);
    margin-bottom: calc(0.5vw + 1rem);
    line-height: 1.5;
}
.section-text {
    font-size: calc(0.3vw + 0.75rem);
    line-height: 1.5;
    margin-bottom: calc(0.5vw + 1rem);
}
/*--------------------------------------------------------------
# Contact Us.jsp (CLEAR)
--------------------------------------------------------------*/
.contact .info-container {
    display: flex;
    justify-content: space-between;
    gap: calc(0.4vw + 1.5rem);
}
.contact .info-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--surface-color);
    padding: calc(0.5vw + 1.3rem) 0 calc(0.6vw + 1.9rem) 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.contact .info-item i {
    font-size: calc(0.5vw + 1.3rem);
    color: var(--accent-color);
    width: calc(1vw + 3.5rem);
    height: calc(1vw + 3.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: calc(0.2vw + 0.5rem);
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}
.contact .info-item h3 {
    font-size: calc(0.5vw + 1.3rem);
    font-weight: 600;
    margin: calc(0.5vw + 1.3rem) 0;
}
.contact .info-item p {
    padding: 0;
    padding-right: calc(0.5vw + 1.3rem);
    padding-left: calc(0.5vw + 1.3rem);
    margin-bottom: 0;
    font-size: calc(0.3vw + 0.9rem);
    text-align: center;
}
.contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: calc(0.6vw + 1.9rem);
    box-shadow: 0 0 calc(0.3vw + 1.3rem) rgba(0, 0, 0, 0.1);
}
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: calc(0.3vw + 0.9rem);
    padding: calc(0.25vw + 0.6rem) calc(0.4vw + 1rem);
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}
.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: calc(0.25vw + 0.6rem) calc(0.6vw + 1.9rem);
    transition: 0.4s;
    border-radius: calc(1.3vw + 3.1rem);
}
.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
/*--------------------------------------------------------------
# HelpCenter.xhtml (CLEAR)
--------------------------------------------------------------*/
.sidebar {
    width: calc(20vw + 80px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-right: calc(0.1vw + 1px) solid #e3e6ea;
    padding: calc(1.5vw + 10px) 0;
    top: 0;
    height: fit-content;
    box-shadow: calc(0.2vw + 2px) 0 calc(0.8vw + 8px) rgba(0,0,0,0.06);
}
.sidebar-nav {
    list-style: none;
    padding: 0;
}
.nav-item {
    margin-bottom: calc(0.2vw + 2px);
    border-radius: calc(0.5vw + 6px);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-item:hover {
    transform: translateX(calc(0.2vw + 2px));
    box-shadow: 0 calc(0.2vw + 2px) calc(0.8vw + 8px) rgba(0,0,0,0.1);
}
.nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(0.8vw + 8px) calc(1.5vw + 12px);
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: calc(0.8vw + 10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border-left: calc(0.3vw + 3px) solid transparent;
}
.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #e53935, #c62828);
    transition: width 0.3s ease;
}
.nav-link:hover {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828;
    padding-left: calc(1.5vw + 14px);
}
.nav-link:hover::before {
    width: calc(0.3vw + 3px);
}
.nav-link.active {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
    color: #b71c1c;
    border-left: calc(0.3vw + 3px) solid #c62828;
    font-weight: 600;
    box-shadow: inset 0 calc(0.1vw + 1px) calc(0.3vw + 3px) rgba(198, 40, 40, 0.1);
}
.nav-link i {
    font-size: calc(0.6vw + 8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #9ca3af;
}
.nav-item.expanded .nav-link i {
    transform: rotate(180deg);
    color: #c62828;
}
.sub-nav {
    display: none;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f3f4 100%);
    border-top: calc(0.1vw + 1px) solid #e8eaed;
    overflow: hidden;
}
.nav-item.expanded .sub-nav {
    display: block;
    animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(calc(-0.8vw - 10px));
    }
    to {
        opacity: 1;
        max-height: calc(20vw + 200px);
        transform: translateY(0);
    }
}
.sub-nav-item {
    padding: 0;
    border-bottom: calc(0.1vw + 1px) solid rgba(0,0,0,0.05);
}
.sub-nav-item:last-child {
    border-bottom: none;
}
.sub-nav-link {
    color: #6b7280;
    text-decoration: none;
    font-size: calc(0.7vw + 9px);
    display: block;
    padding: calc(0.8vw + 6px) calc(2vw + 20px);
    transition: all 0.3s ease;
    position: relative;
    font-weight: 400;
}
.sub-nav-link::before {
    content: '•';
    position: absolute;
    left: calc(1.5vw + 10px);
    color: #d1d5db;
    transition: color 0.3s ease;
}
.sub-nav-link:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ffebee 100%);
    color: #b71c1c;
    padding-left: calc(2.5vw + 20px);
    transform: translateX(calc(0.2vw + 2px));
}
.sub-nav-link:hover::before {
    color: #b71c1c;
}
.sub-nav-link.active {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
    color: #b71c1c;
    font-weight: 500;
    border-left: calc(0.2vw + 2px) solid #e53935;
}
.content-area {
    flex: 1;
    padding: calc(2vw + 20px) 0 calc(2vw + 20px) calc(3vw + 30px);
    background: #ffffff;
    transition: all 0.3s ease;
}
.content-title {
    font-size: calc(1.5vw + 12px);
    font-weight: 600;
    color: #1f2937;
    margin-bottom: calc(1vw + 15px);
    border-bottom: calc(0.2vw + 2px) solid #e5e7eb;
    padding-bottom: calc(0.8vw + 8px);
    position: relative;
}
.content-title::after {
    content: '';
    position: absolute;
    bottom: calc(-0.2vw - 2px);
    left: 0;
    width: calc(4vw + 60px);
    height: calc(0.2vw + 2px);
    background: linear-gradient(45deg, #e53935, #b71c1c);
}
.content-text {
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: calc(1vw + 10px);
    font-size: calc(0.8vw + 6px);
}
@media (max-width: 1440px) {
    .container {
        max-width: 100%;
        margin: 0 calc(1.5vw + 20px);
    }
    .sidebar {
        width: calc(22vw + 60px);
    }
    .content-area {
        padding: calc(1.8vw + 15px) 0 calc(1.8vw + 15px) calc(2.5vw + 20px);
    }
    .nav-link {
        font-size: calc(0.9vw + 9px);
        padding: calc(0.9vw + 7px) calc(1.3vw + 10px);
    }
    .sub-nav-link {
        font-size: calc(0.8vw + 8px);
        padding: calc(0.7vw + 5px) calc(1.8vw + 18px);
    }
}
@media (max-width: 1440px) {
    .sidebar {
        width: calc(25vw + 50px);
    }
    .nav-link {
        font-size: calc(1vw + 8px);
        padding: calc(1vw + 6px) calc(1.2vw + 8px);
    }
    .sub-nav-link {
        font-size: calc(0.9vw + 7px);
        padding: calc(0.8vw + 4px) calc(1.6vw + 16px);
    }
    .content-title {
        font-size: calc(1.8vw + 10px);
    }
    .content-text {
        font-size: calc(0.9vw + 8px);
    }
}
@media (max-width: 768px) {
    .container {
        margin: 0;
        box-shadow: none;
    }
    .main-content {
        flex-direction: column;
        min-height: auto;
    }
    .sidebar {
        width: 100%;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        z-index: 999;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: none;
        padding: calc(2vw + 12px) 0;
    }
    .sidebar.show {
        left: 0;
        box-shadow: calc(0.5vw + 2px) 0 calc(2vw + 20px) rgba(0,0,0,0.3);
    }
    .content-area {
        padding: calc(2vw + 10px) calc(1vw + 8px);
        margin-top: calc(2vw + 20px);
    }
    .content-title {
        font-size: calc(2.5vw + 12px);
        margin-bottom: calc(1.5vw + 12px);
    }
    .content-text {
        font-size: calc(1vw + 10px);
    }
    .nav-link {
        font-size: calc(1.5vw + 11px);
        padding: calc(1.5vw + 10px) calc(2.5vw + 14px);
    }
    .sub-nav-link {
        font-size: calc(1.3vw + 10px);
        padding: calc(1.3vw + 8px) calc(2.3vw + 18px);
    }
}
@media (max-width: 480px) {
    .sidebar {
        padding: calc(3vw + 8px) 0;
    }
    .nav-link {
        font-size: calc(2vw + 10px);
        padding: calc(2vw + 8px) calc(3vw + 12px);
    }
    .sub-nav-link {
        font-size: calc(1.8vw + 9px);
        padding: calc(1.8vw + 6px) calc(3vw + 16px);
    }
    .content-area {
        padding: calc(3vw + 8px) calc(2vw + 6px);
    }
    .content-title {
        font-size: calc(4vw + 12px);
        margin-bottom: calc(2vw + 10px);
    }
    .content-text {
        font-size: calc(1.5vw + 10px);
        line-height: 1.6;
    }
    .content-title::after {
        width: calc(6vw + 40px);
        height: calc(0.4vw + 1px);
    }
}
/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(calc(2vw + 20px));
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}
.overlay.show {
    display: block;
}
/*---------------------------- CLEAR ----------------------------*/

/*--------------------------------------------------------------
# Global Header (CLEAR)
--------------------------------------------------------------*/
.header {
    --background-color: #FFFFFF;
    --heading-color: #333333;
    border-bottom: 1px solid #f0f0f0;
    color: var(--default-color);
    background-color: var(--background-color);
    transition: all 0.3s ease;
    z-index: 997;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}
.scrolled .header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(240, 240, 240, 0.5);
}
.header .logo {
    line-height: 1;
}
.header .logo img {
    max-height: clamp(32px, 6vw, 42px);
    margin-right: clamp(4px, 1vw, 6px);
}
.header .logo h1 {
    font-size: clamp(22px, 4vw, 30px);
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}
.header .cta-btn,
.header .cta-btn:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: clamp(14px, 2.5vw, 16px);
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px);
    margin: 0 0 0 clamp(12px, 3vw, 16px);
    border-radius: 50px;
    transition: 0.3s;
}
.header .cta-btn:hover,
.header .cta-btn:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.gradient-text {
    background: linear-gradient(90deg, #f44336, #ff9800, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.logo img { 
    height: clamp(27px, 5vw, 37px);
}
.search-container {
    max-width: 350px;
    min-width: 250px;
    width: 100%;
    padding: 0 clamp(4px, 1vw, 8px);
    flex-grow: 1;
    flex-shrink: 1;
    background: rgba(240, 240, 240, 0.3);
    border-radius: 20px;
}
.search-box {
    display: flex;
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    height: clamp(32px, 6vw, 40px);
    background: rgba(240, 240, 240, 0.3);
}
.search-box:focus-within {
    border-color: #FF5353;
    box-shadow: 0 2px 8px rgba(255, 83, 83, 0.15);
    background: rgba(240, 240, 240, 0.5);
}
.search-input,
.search-box .form-control,
.search-box .ui-autocomplete .ui-inputtext {
    flex: 1;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
    border-radius: 20px 0 0 20px !important;
    font-size: clamp(12px, 2.5vw, 14px);
    padding: clamp(8px, 2vw, 10px) clamp(10px, 2.5vw, 12px);
}
.search-button {
    position: absolute;
    right: 2px;
    top: 2px;
    height: calc(100% - 4px);
    width: clamp(28px, 6vw, 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #FF5353, #ff7b7b);
    color: #fff;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(255, 83, 83, 0.25);
}
.search-button:hover {
    background: linear-gradient(45deg, #e64545, #ff6b6b);
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(255, 83, 83, 0.3);
}
.navmenu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(9px, 1vw, 18px)
}
.navmenu a {
    text-decoration: none;
    color: #333;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    position: relative;
}
.navmenu a.active {
    color: #FF5353;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
}
.language-selector { 
    position: relative; 
    cursor: pointer; 
}
.language-button {
    display: flex;
    align-items: center;
    gap: clamp(2px, 0.5vw, 4px);
    background: none;
    border: none;
    cursor: pointer;
    font-size: clamp(14px, 2.5vw, 16px);
    color: #333;
    padding: clamp(2px, 0.5vw, 4px);
}
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: clamp(60px, 12vw, 80px);
    z-index: 1000;
    display: none;
    padding: clamp(2px, 0.5vw, 4px) 0;
}
.language-dropdown.active { 
    display: block; 
}
.language-option {
    padding: clamp(3px, 0.8vw, 5px) clamp(5px, 1.2vw, 8px);
    cursor: pointer;
    font-size: clamp(14px, 2.5vw, 16px);
    transition: background 0.2s;
}
.language-option:hover { 
    background: #f5f5f5; 
}
.language-selector-wrapper:hover .language-dropdown {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
    min-width: 100px;
    z-index: 1000;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.language-option {
    padding: 6px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: clamp(14px, 2.5vw, 16px);
}
.language-option:hover {
    background-color: #f5f5f5;
}
.language-button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: clamp(4px, 1vw, 6px) clamp(8px, 2vw, 10px);
    border-radius: 4px;
    transition: background-color 0.2s;
    font-size: clamp(14px, 2.5vw, 16px);
}
.language-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.app-download-wrapper:hover .app-download-dropdown {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.app-download-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 14px;
    z-index: 1000;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 250px;
}
.app-download-wrapper:hover .app-download-dropdown {
    transform: translateX(-50%) translateY(0);
}
.app-download-content {
    align-items: center;
}
.dropdown-qr {
    width: auto;
    height: clamp(60px, 15vw, 80px);
    object-fit: contain;
    flex-shrink: 0;
}
.app-links {
    flex: 1;
    height: clamp(60px, 15vw, 75px);
}
.qr-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.app-link {
    display: block;
    transition: transform 0.2s;
}
.app-link:hover {
    transform: scale(1.05);
}
.app-store-img {
    width: clamp(90px, 20vw, 110px);
    height: clamp(20px, 5vw, 26px);
    object-fit: contain;
}
.app-download-trigger {
    text-decoration: none;
    color: inherit;
    padding: clamp(4px, 1vw, 6px) clamp(8px, 2vw, 10px);
    border-radius: 4px;
    transition: background-color 0.2s;
    font-size: clamp(14px, 2.5vw, 16px);
}
.app-download-trigger:hover {
    background-color: rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
}
@media (max-width: 768px) {
    .app-download-dropdown {
        min-width: clamp(200px, 50vw, 220px);
    }
    .dropdown-qr {
        width: clamp(40px, 10vw, 50px);
        height: clamp(40px, 10vw, 50px);
    }
    .app-store-img {
        width: clamp(70px, 18vw, 90px);
    }
}
.header_navbar {
    display: flex;
    align-items: center;
    width: 100%;
    gap: clamp(10px, 2.5vw, 15px);
    min-height: clamp(50px, 12vw, 60px);
}
.header_navbar .logo { 
    flex: 0 0 auto;
    min-width: fit-content;
}
.header_navbar .search-container { 
    flex: 1 1 auto;
    min-width: 220px;
}
.header_navbar .right-block {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-left: auto;
    min-width: fit-content;
}
.admin-tools {
    padding: clamp(3px, 0.8vw, 5px) clamp(5px, 1.2vw, 8px);
}
.ui-autocomplete-input {
    width: 100% !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
.mobile-nav-toggle {
    display: none;
    color: var(--nav-color);
    font-size: clamp(18px, 4vw, 24px);
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
}
/*--------------------------------------------------------------
# Navigation Menu (CLEAR)
--------------------------------------------------------------*/
/* Desktop Navigation - Above 1440px */
@media (min-width: 1441px) {
    .navmenu {
        padding-left: calc(1vw + 16px);
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        gap: clamp(9px, 1vw, 18px)
    }
    .navmenu li {
        position: relative;
    }
    .navmenu>ul>li {
        white-space: nowrap;
        padding: clamp(6px, 1.5vw, 10px) clamp(6px, 1.5vw, 10px);
    }
    .navmenu>ul>li:last-child {
        padding-right: 0;
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: clamp(14px, 2.5vw, 16px);
        padding: 0 clamp(1px, 0.2vw, 2px);
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: clamp(12px, 2vw, 14px);
        line-height: 0;
        margin-left: clamp(2px, 0.5vw, 4px);
        transition: 0.3s;
    }
    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: clamp(-3px, -0.8vw, -2px);
        left: 0;
        background-color: var(--accent-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }
    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: clamp(4px, 1vw, 6px) 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: clamp(6px, 1.5vw, 8px);
        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: clamp(120px, 20vw, 140px);
    }
    .navmenu .dropdown ul a {
        padding: clamp(4px, 1vw, 6px) clamp(8px, 2vw, 10px);
        font-size: clamp(14px, 2.5vw, 16px);
        text-transform: none;
        color: var(--nav-dropdown-color);
    }
    .navmenu .dropdown ul a i {
        font-size: clamp(12px, 2vw, 14px);
    }
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}
/* Tablet Navigation - 769px to 1440px */
@media (min-width: 769px) and (max-width: 1440px) {
    /* Hide search box and language selector on tablet screens */
    .search-box {
        display: none !important;
    }
    .language-selector-wrapper {
        display: none !important;
    }
    .mobile-nav-toggle {
        display: none;
    }
    .navmenu {
        padding-left: calc(1vw + 16px);
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        gap: clamp(9px, 1vw, 18px)
    }
    .navmenu li {
        position: relative;
    }
    .navmenu>ul>li {
        white-space: nowrap;
        padding: clamp(6px, 1.5vw, 10px) clamp(6px, 1.5vw, 10px);
    }
    .navmenu>ul>li:last-child {
        padding-right: 0;
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: clamp(12px, 2.5vw, 16px);
        padding: 0 clamp(1px, 0.2vw, 2px);
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: clamp(12px, 2vw, 16px);
        line-height: 0;
        margin-left: clamp(2px, 0.5vw, 4px);
        transition: 0.3s;
    }
    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: clamp(-3px, -0.8vw, -2px);
        left: 0;
        background-color: var(--accent-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }
    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }
}
/* Mobile Navigation - Below 768px */
@media (max-width: 768px) {
    /* Hide search box in header on mobile - will show in mobile menu */
    .search-box {
        display: none !important;
    }
    /* Hide language selector in header on mobile - will show in mobile menu */
    .language-selector-wrapper {
        display: none !important;
    }
    .mobile-nav-toggle {
        display: block;
        color: var(--nav-color);
        font-size: clamp(18px, 4vw, 24px);
        line-height: 0;
        cursor: pointer;
        transition: color 0.3s;
    }
    .navmenu {
        padding-left: calc(1vw + 16px);
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: clamp(30px, 8vw, 40px) clamp(8px, 2vw, 12px) clamp(8px, 2vw, 12px) clamp(8px, 2vw, 12px);
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-dropdown-background-color);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
    /* Mobile menu search box */
    .navmenu ul .mobile-search-container {
        margin-bottom: clamp(12px, 3vw, 15px);
        padding-bottom: clamp(10px, 2.5vw, 12px);
        border-bottom: 1px solid #eee;
    }
    .navmenu ul .mobile-search-box {
        display: flex;
        position: relative;
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        background: #fff;
        height: clamp(32px, 8vw, 36px);
    }
    .navmenu ul .mobile-search-input {
        flex: 1;
        border: none;
        outline: none;
        box-shadow: none;
        font-size: clamp(14px, 2.5vw, 16px);
        padding: clamp(8px, 2vw, 10px) clamp(10px, 2.5vw, 12px);
        background: #fff;
        border-radius: 20px 0 0 20px;
    }
    .navmenu ul .mobile-search-button {
        position: absolute;
        right: 2px;
        top: 2px;
        height: calc(100% - 4px);
        width: clamp(28px, 7vw, 32px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(45deg, #FF5353, #ff7b7b);
        color: #fff;
        border: none;
        border-radius: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 6px rgba(255, 83, 83, 0.3);
    }
    /* Mobile menu language selector */
    .navmenu ul .mobile-language-selector {
        margin-bottom: clamp(12px, 3vw, 15px);
        padding-bottom: clamp(10px, 2.5vw, 12px);
        border-bottom: 1px solid #eee;
    }
    .navmenu ul .mobile-language-button {
        display: flex;
        align-items: center;
        gap: clamp(4px, 1vw, 6px);
        background: none;
        border: none;
        cursor: pointer;
        font-size: clamp(14px, 2.5vw, 18px);
        color: var(--nav-dropdown-color);
        padding: clamp(6px, 1.5vw, 8px) 0;
        width: 100%;
        text-align: left;
    }
    .navmenu ul .mobile-language-options {
        display: none;
        margin-top: clamp(6px, 1.5vw, 8px);
        background: #f8f9fa;
        border-radius: 6px;
        padding: clamp(6px, 1.5vw, 8px);
    }
    .navmenu ul .mobile-language-options.active {
        display: block;
    }
    .navmenu ul .mobile-language-option {
        padding: clamp(6px, 1.5vw, 8px) clamp(8px, 2vw, 10px);
        cursor: pointer;
        font-size: clamp(14px, 2.5vw, 16px);
        transition: background 0.2s;
        border-radius: 4px;
        margin-bottom: clamp(3px, 0.8vw, 4px);
    }
    .navmenu ul .mobile-language-option:hover {
        background: #e9ecef;
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: clamp(5px, 1.2vw, 8px) clamp(10px, 2.5vw, 15px);
        font-family: var(--nav-font);
        font-size: clamp(14px, 2.5vw, 18px);
        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: clamp(14px, 2.5vw, 18px);
        line-height: 0;
        margin-left: clamp(2px, 0.8vw, 4px);
        width: clamp(20px, 5vw, 25px);
        height: clamp(20px, 5vw, 25px);
        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: clamp(5px, 1.2vw, 8px) 0;
        margin: clamp(5px, 1.2vw, 8px) clamp(10px, 2.5vw, 15px);
        background-color: var(--nav-dropdown-background-color);
        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: clamp(20px, 5vw, 26px);
        top: clamp(6px, 1.5vw, 8px);
        right: clamp(6px, 1.5vw, 8px);
        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 (CLEAR)
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: clamp(12px, 2.5vw, 14px);
    position: relative;
}
.footer .footer-top {
    background-color: color-mix(in srgb, var(--background-color), white 5%);
    padding-top: clamp(30px, 8vw, 50px);
}
.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: clamp(15px, 4vw, 25px);
}
.footer .footer-about .logo img {
    max-height: clamp(30px, 6vw, 40px);
    margin-right: clamp(4px, 1vw, 6px);
}
ooter-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 700;
    letter-spacing: calc(0.5px + 0.1vw);
}
.footer .footer-about p {
    font-size: clamp(12px, 2.5vw, 14px);
    font-family: var(--heading-font);
}
.footer h4, .footer h5, .footer-title {
    font-size: clamp(18px, 3.5vw, 22px);
    font-weight: 600;
    padding-bottom: clamp(8px, 2vw, 12px);
    margin-bottom: clamp(15px, 4vw, 20px);
}
.footer h4::after, .footer h5::after, .footer-title::after {
    content: "";
    position: absolute;
    display: block;
    width: clamp(15px, 3vw, 20px);
    height: calc(1px + 0.2vw);
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}
.footer .footer-links, .footer-edit .footer-links {
    flex: 1;
    min-width: clamp(180px, 40vw, 200px);
}
.footer .footer-links ul, .footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: calc(14px + 0.3vw);
}
.footer .footer-links ul i {
    padding-right: calc(1px + 0.2vw);
    font-size: clamp(10px, 2vw, 12px);
    line-height: 0;
}
.footer .footer-links ul li {
    padding: clamp(6px, 1.5vw, 8px) 0;
    display: flex;
    align-items: center;
}
.footer .footer-links ul li:first-child {
    padding-top: 0;
}
.footer .footer-links ul a, .footer-link a {
    color: color-mix(in srgb, var(--default-color, #3E5055), transparent 30%);
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}
.footer .footer-links ul a:hover, .footer-link a:hover {
    color: var(--accent-color);
}
.footer .footer-contact p {
    margin-bottom: clamp(3px, 1vw, 5px);
}
.footer .copyright {
    padding: clamp(20px, 5vw, 30px) 0;
}
.footer .copyright p {
    margin-bottom: 0;
}
.footer .credits {
    margin-top: clamp(3px, 1vw, 5px);
    font-size: clamp(11px, 2vw, 13px);
}
.footer .social-links a {
    font-size: clamp(14px, 3vw, 18px);
    display: inline-block;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--contrast-color);
    line-height: 1;
    padding: clamp(6px, 1.5vw, 8px) 0;
    margin-right: clamp(2px, 1vw, 4px);
    border-radius: clamp(2px, 0.5vw, 4px);
    text-align: center;
    width: clamp(28px, 6vw, 36px);
    height: clamp(28px, 6vw, 36px);
    transition: 0.3s;
}
.footer .social-links a:hover {
    background: var(--accent-color);
    text-decoration: none;
}
.footer-icon {
    max-width: clamp(30px, 8vw, 40px);
}
.footer-app {
    max-width: clamp(80px, 20vw, 120px);
}
.footer-qr {
    max-width: clamp(100px, 25vw, 150px);
    height: auto;
}
.footer-social-icon {
    max-width: clamp(25px, 6vw, 30px);
    margin-bottom: clamp(15px, 4vw, 20px);
}
.footer-container {
    margin: 0 auto;
    max-width: clamp(320px, 90vw, 3000px);
}
.payment-methods img, .app-download img {
    transition: transform 0.3s ease;
}
.payment-methods img:hover, .app-download img:hover {
    transform: scale(1.05);
}
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 2vw, 10px);
    margin-bottom: clamp(15px, 4vw, 20px);
}
.payment-methods a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.shipping-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(8px, 2vw, 10px);
}
.shipping-methods a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.small-image {
    border-radius: clamp(2px, 0.5vw, 4px);
    box-shadow: 0 calc(1px + 0.2vw) clamp(2px, 1vw, 4px) rgba(0,0,0,0.1);
}

.footer-edit .container > .row, .footer .footer_edit .container .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: clamp(30px, 6vw, 40px);
}
/* Desktop responsive (1441px+) */
@media (min-width: 1441px) {
    .footer .footer_edit .container .row,
    .footer-edit .container > .row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: clamp(40px, 4vw, 60px);
    }
}
/* Tablet View - 768px to 1440px (2x2 grid layout) */
@media (min-width: 768px) and (max-width: 1440px) {
    .footer .footer_edit .container .row,
    .footer-edit .container > .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: clamp(25px, 5vw, 40px) clamp(40px, 8vw, 60px);
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .footer .footer-links:nth-child(1),
    .footer-edit .footer-links:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    .footer .footer-links:nth-child(2),
    .footer-edit .footer-links:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    .footer .footer-links:nth-child(3),
    .footer-edit .footer-links:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }
    .footer .footer-links:nth-child(4),
    .footer-edit .footer-links:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }
    .footer .footer-links,
    .footer-edit .footer-links {
        margin-bottom: 0;
        flex: 1 1 45%;
    }
    .footer .col-lg-2, .footer .col-lg-3 {
        width: 100%;
        max-width: none;
    }
}
/* Mobile View - Below 768px (vertical stack) */
@media (max-width: 767px) {
    .footer .footer_edit .container .row,
    .footer-edit .container > .row {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: clamp(20px, 5vw, 30px);
        padding: clamp(15px, 4vw, 20px) 0;
    }
    .footer .footer-links,
    .footer-edit .footer-links {
        flex: 1 1 100%;
        margin-bottom: clamp(20px, 5vw, 30px);
        min-width: auto;
    }
    .footer .col-lg-2, .footer .col-lg-3 {
        width: 100%;
        margin-bottom: clamp(15px, 4vw, 20px);
    }
    .app-download, .app-download .d-flex {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: clamp(8px, 2vw, 10px);
    }
}
/*--------------------------------------------------------------
# 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: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}
.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}
.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    /*min-height: 100vh;*/
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}
.hero .container {
    position: relative;
    z-index: 3;
}
.hero h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
}
.hero h2 span {
    color: var(--accent-color);
}
.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: 24px;
}
.hero.section.dark-background {
    position: relative;
}
.hero.section.dark-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1;
    transition: background-color 0.5s ease;
}
.hero.section.dark-background img {
    position: relative;
    z-index: 0;
}
.hero.section.dark-background .container {
    position: relative;
    z-index: 2;
}
.hero-section {
    display: flex;
    width: 100%;
    position: relative;
    justify-content: space-between;
    overflow: hidden;
    min-height: clamp(600px, 100vh, 800px);
    height: auto;
    transition: all 0.5s ease;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    display: block;
    transition: filter 0.8s ease, transform 0.5s ease;
}
.hero-content {
    flex: 1;
    padding: clamp(30px, 5vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: left;
    padding-left: clamp(40px, 8vw, 80px);
    transition: all 0.5s ease;
}
.hero-title {
    color: #E52D27;
    font-size: clamp(24px, 4vw, 30px);
    font-weight: bold;
    margin-bottom: clamp(8px, 1.5vw, 10px);
    transition: all 0.3s ease;
}
.hero-subtitle {
    font-size: clamp(20px, 3.5vw, 24px);
    margin-bottom: clamp(15px, 3vw, 20px);
    transition: all 0.3s ease;
}
.hero-description {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #666;
    margin-bottom: clamp(12px, 2vw, 15px);
}
.hero-note {
    font-size: clamp(12px, 2vw, 14px);
    color: #666;
}
.hero-form {
    flex: 0 0 clamp(300px, 50vw, 400px);
    background-color: white;
    padding: clamp(25px, 4vw, 30px);
    border-radius: clamp(8px, 1.5vw, 10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: clamp(50px, 20vw, 150px);
    position: relative;
    z-index: 1;
    height: fit-content;
    align-self: center;
    transition: all 0.5s ease;
}
@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
        line-height: 36px;
    }
    .hero p {
        font-size: 18px;
        line-height: 24px;
    }
}
.hero .about-info {
    overflow: hidden;
    position: relative;
    padding: 60px 0 40px 0;
    z-index: 2;
    width: 100%;
}
.hero .about-info:before {
    content: "";
    /*background: color-mix(in srgb, var(--background-color), transparent 50%);*/
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.hero .about-info h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}
.hero .about-info h3 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}
.hero .about-info p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #fff;
}
/*---------------------------- CLEAR ----------------------------*/