:root {
    --color1: #DDD1C1;
    --color2: #6A5950;
    --color3: #26222F;
    --color4: #312E39;
    --color5: #F7F7F7;
    --color6: #FDF6F1;
    --sonic-silver: hsl(0, 0%, 47%);
    --onyx: hsl(0, 0%, 27%);
    --salmon-pink: hsl(353, 100%, 78%);
    --white: hsl(0, 100%, 100%);
    --cultured: hsl(0, 0%, 93%);
    --h1: 2rem;
    --h2: 1.5rem;
    --h3: 1.17rem;
    --h4: 1rem;
    --h5: 0.83rem;
    --h6: 0.67rem;
    --h7: 1rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-user-drag: none;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    letter-spacing: 1px;
    color: black;
    background-color: var(--color5);
    overflow-x: hidden;
}

h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin: 0.6em 0;
}

h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin: 0.5em 0;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0.4em 0;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0.35em 0;
}

h5 {
    font-size: 1.125rem;
    line-height: 1.4;
    margin: 0.3em 0;
}

h6 {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0.25em 0;
}

p {
    font-size: 1.1rem;
    line-height: 1.5;
}

span {
    font-size: 1.1rem;
    line-height: 1.5;
}

img {
    user-select: none;
}

video {
    pointer-events: none;
    user-select: none;
    object-fit: cover;
}

i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    user-select: none;
}

a,
button {
    color: #000;
    letter-spacing: 1px;
    user-select: none;
    flex-wrap: nowrap;
}

.top-info-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--color4);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-size: clamp(12px, 2vw, 14px);
    letter-spacing: 1px;
    z-index: 10000;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-info-bar p {
    font-size: 14px;
    margin: 0;
}

#closeInfoBar {
    position: absolute;
    right: clamp(20px, 5vw, 48px);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    width: 1.5em;
    height: 1.5em;
}

#closeInfoBar:hover {
    opacity: 1;
}

.top-info-bar.hidden {
    transform: translateY(-100%);
}

header {
    position: fixed;
    top: 40px;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 48px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: black;
    font-family: 'Montserrat', sans-serif;
    z-index: 9999;
    transition: top 0.3s ease;
    user-select: none;
}

header.sticky {
    top: 0;
}

.desktop-navigation-menu {
    position: relative;
    z-index: 10;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

.desktop-menu-category-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.menu-category {
    position: relative;
}

.menu-title {
    font-weight: 600;
    font-size: 16px;
    color: black;
    padding: 12px 0;
    position: relative;
    display: block;
    transition: color 0.3s;
    text-decoration: none;
}

.menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--salmon-pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.menu-title:hover::after,
.menu-title.active::after {
    transform: scaleX(1);
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    background: #fff;
    padding: 32px;
    width: 60vw;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    border-radius: 8px;
    z-index: 5;
}

.menu-category:hover>.dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-panel-list .menu-title {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.dropdown-panel-list .menu-title a {
    display: block;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #000;
    text-decoration: none;
}

.panel-list-item a {
    display: inline-block;
    padding: 6px 0;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: capitalize;
    text-decoration: none;
    position: relative;
}

.panel-list-item a:hover {
    color: var(--salmon-pink);
}

.panel-list-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--salmon-pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.panel-list-item a:hover::after {
    transform: scaleX(1);
}

.panel-list-item:last-child {
    margin-top: 16px;
}

.panel-list-item img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-container {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    background: #fff;
    padding: 16px 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 5;
    white-space: nowrap;
    gap: 16px;
}

.menu-category:hover>.dropdown-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-item a {
    text-decoration: none;
    color: #555;
    padding: 6px 0;
    display: inline-block;
    transition: color 0.3s;
    position: relative;
}

.dropdown-item a:hover {
    color: var(--salmon-pink);
}

.dropdown-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--salmon-pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.dropdown-item a:hover::after {
    transform: scaleX(1);
}

.dropdown-image {
    margin-left: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.dropdown-image img {
    width: 200px;
    height: auto;
}

.header-logo img {
    position: absolute;
    max-height: 40px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

.header-social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    gap: 6px;
}

.header-social-media a {
    font-size: 18px;
    max-width: 24px;
    display: flex;
    overflow: hidden;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: black;
    gap: 2px;
    transition: max-width 0.4s ease;
    white-space: nowrap;
}

.header-social-media a:hover {
    max-width: 140px;
}

.Facebook-btn:hover {
    color: #4267B2;
}

.Instagram-btn:hover {
    color: #E1306C;
}

.YouTube-btn:hover {
    color: #ff0000;
}

.TikTok-btn:hover {
    color: var(--salmon-pink);
}

.mobile-menu-toggle {
    position: absolute;
    left: 20px;
    display: none;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    z-index: 999;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99991;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-navigation-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 99999;
    padding: 24px;
    transition: left 0.4s ease;
    overflow-y: auto;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
}

.mobile-navigation-menu.active {
    left: 0;
}

.menu-top {
    padding-bottom: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.menu-top .menu-title {
    color: #0077ED;
    font-size: 20px;
    font-weight: 600;
}

.menu-close-btn {
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-category-list {
    margin: 0 0 24px;
    list-style: none;
}

.mobile-menu-category-list li {
    line-height: 3;
    border-bottom: 1px solid #eee;
}

.mobile-menu-category-list li a {
    color: inherit;
    text-decoration: none;
}

.accordion-menu {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: inherit;
}

.accordion-menu .minus-icon {
    display: none;
}

.accordion-menu.open .plus-icon {
    display: none;
}

.accordion-menu.open .minus-icon {
    display: inline-flex;
}

.submenu-category-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding-left: 16px;
    list-style: none;
}

.submenu-category-list.open {
    max-height: 600px;
}

.submenu-category-list li {
    border-bottom: 0;
    line-height: 2.5;
}

.submenu-category-list li a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #6e5c5c;
    text-decoration: none;
}

.submenu-category-list li a:hover {
    color: var(--salmon-pink);
}

.menu-social-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}

.social-link {
    background: #EDEDED;
    color: var(--color4);
    font-size: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    text-decoration: none;
}

@media (max-width: 1500px) {
    .desktop-navigation-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 800px) {
    .header-right {
        display: none;
    }
}

.pages-hero {
    margin-top: 100px;
    background-image: url('/static/img/global-img/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.infobox-pages {
    padding: 0 5vw;
}

.infobox-pages p {
    display: inline-block;
    font-size: clamp(8px, 1.5vw, 14px);
    background-color: rgb(0, 0, 0, 0.2);
    border-radius: 24px;
    padding: 4px 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.infobox-pages h1 {
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.infobox-pages h3 {
    font-size: clamp(10px, 1.5vw, 16px);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.submit-section {
    margin-top: 20px;
    padding: 80px clamp(40px, 10vw, 240px) 100px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.submit-section h2 {
    margin-bottom: 24px;
}

.inquiry-form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
}

.submit-item {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.submit-right {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.submit-data {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.submit-data label {
    font-weight: 600;
    color: #444;
}

.submit-data input,
.submit-data textarea {
    padding: 10px 12px;
    font-size: 16px;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
    width: 100%;
    background-color: #fdfdfd;
}

.submit-data input:focus,
.submit-data textarea:focus {
    border-color: var(--salmon-pink);
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

textarea {
    resize: vertical;
    min-height: 160px;
}

.submit-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.submit-btn .btn1 {
    display: inline-block;
    padding: 12px 24px;
    color: #000;
    text-decoration: none;
    font-size: clamp(12px, 1.5vw, 14px);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: black 1px solid;
    background-color: transparent;
    transition: background-color 0.3s ease, transform 0.2s ease;
    user-select: none;
}

.submit-btn .btn1:hover {
    background-color: black;
    color: white;
}

.success-message {
    display: none;
    background-color: var(--color3);
    color: white;
    padding: 12px;
    margin-top: 24px;
    border-radius: 8px;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 1150px) {
    .inquiry-form {
        flex-direction: column;
        gap: 16px;
    }

    .submit-item,
    .submit-right {
        width: 100%;
        gap: 16px;
    }
}

.site-footer {
    background-color: var(--color3);
    color: #fff;
    padding: 60px clamp(40px, 10vw, 240px);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: clamp(40px, 10vw, 200px);
    margin: 0 auto;
}

.footer-brand {
    flex: 1 1 200px;
}

.footer-logo {
    width: 260px;
    margin: 48px 0 36px;
    user-select: none;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-info address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info .brand-link {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.footer-info .brand-link i {
    margin-right: 6px;
}

.footer-info .brand-link:hover {
    color: var(--salmon-pink);
}

.social-icons {
    margin-top: 36px;
    user-select: none;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    margin-right: 12px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--salmon-pink);
}

.footer-list {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
}

.footer-column {
    flex: 0 0 auto;
    text-align: left;
}

.footer-column h3 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-column ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.footer-column ul li a:hover {
    color: var(--salmon-pink);
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--salmon-pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.footer-column ul li a:hover::after {
    transform: scaleX(1);
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    color: #999;
}

@media (max-width: 1050px) {
    .footer-content {
        display: flex;
        flex-direction: column;
    }
}

.floating-action-box {
    position: fixed;
    bottom: 40px;
    right: 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.fab-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.5);
    color: #000;
    font-size: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, font-size 0.3s ease, letter-spacing 0.3s;
    animation: glowPulse 2.5s infinite ease-in-out;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow:
            0 0 8px rgba(255, 255, 255, 0.6),
            0 0 12px rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
}

.fab-btn:hover {
    transform: scale(1.05);
    font-size: 28px;
    letter-spacing: 1px;
}

.fab-btn i {
    pointer-events: none;
}

.fab-hidden {
    display: none !important;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    line-height: 80px;
    border-bottom: 1px solid #ddd;
    user-select: none;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #000;
}

.breadcrumb span {
    font-size: 14px;
}