:root {
    --primary: #FFCC00;
    --dark: #111111;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --text-main: #333;
    --text-muted: #777;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- MOBILE MENU ANIMATION --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

/* === NAVBAR === */
.navbar {
    /* position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999999 !important;
    background: var(--primary-yellow);
    padding: 10px 0;
    transition: var(--transition);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    isolation: isolate; */
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999999 !important;
    background: var(--primary-yellow);
    padding: 10px 0;
    /* Padding tipis biar navbar nggak lebar */
    transition: var(--transition);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    /* background: rgba(255, 210, 0, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    padding: 5px 0;
}

.nav-wrapper {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

/* === LOGO STYLING === */
:root {
    --primary-yellow: #FFD200;
    --dark-black: #1A1A1A;
}

.logo-container {
    /* display: flex;
    align-items: center; */
    display: flex;
    align-items: center;
    /* Kita kasih tinggi kontainer logo biar konsisten */
    height: 60px;
}

.logo-box {
    /* display: flex;
    align-items: center;
    border: 1.5px solid var(--dark-black);
    padding: 5px 12px;
    border-radius: 6px;
    background: transparent; */
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.main-logo {
    height: 180px;
    width: auto;
    display: block;
    object-fit: contain;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.navbar.scrolled .main-logo {
    height: 140px;
}

.logo-icon {
    display: flex;
    position: relative;
    font-weight: 900;
    font-size: 28px;
    font-style: italic;
    color: var(--dark-black);
    margin-right: 12px;
    transform: skewX(-5deg);
}

.char-f {
    margin-left: -5px;
    color: #333;
}

.logo-divider {
    width: 1.5px;
    height: 35px;
    background-color: var(--dark-black);
    margin-right: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.5px;
    color: var(--dark-black);
    margin: 0;
}

.brand-sub {
    display: flex;
    flex-direction: column;
    margin-top: 2px;
}

.brand-sub span:first-child {
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--dark-black);
}

.est {
    font-size: 6px;
    font-weight: 500;
    text-transform: uppercase;
    color: #666;
}

.logo-box:hover {
    background-color: rgba(0, 0, 0, 0.03);
    transition: 0.3s ease;
    cursor: pointer;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-black);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dark-black);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links i {
    font-size: 1rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.nav-links a.nav-item {
    padding: 8px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-links a.nav-item.active {
    background: rgba(0, 0, 0, 0.08);
    color: var(--dark-black);
}

.nav-links a.nav-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-links a::after {
    display: none;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.95);
    background: var(--white);
    min-width: 220px;
    padding: 12px 0;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1001;
}

.dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px) scale(1);
}

.dropdown.show i {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--dark-black);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--dark-black);
}

.btn-register {
    background: var(--white);
    color: var(--dark-black);
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-register:hover {
    background: var(--dark-black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* === HERO BANNER === */
.hero-premium {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #000;
    overflow: hidden;
    padding-top: 80px;
}

.hero-visual {
    position: relative;
    /* clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%); */
    overflow: hidden;
    height: 100%;
}

.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-background-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content-luxury {
    /* display: flex;
    align-items: center;
    padding: 0 10%;
    color: white;
    background: #0a0a0a; */
    flex: 1;
    display: flex;
    align-items: center;
    padding: 30px 5%;
    color: white;
    background: #0a0a0a;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-placeholder video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.6;
}

.italic-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.hero-text-wrap {
    max-width: 500px;
}

.line-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.split-text {
    /* font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px; */
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    font-weight: 800;
}

.hero-text-wrap p {
    /* font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3.5rem;
    font-weight: 300; */
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-align: justify;
}

.hero-actions-new {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-main {
    background: var(--primary);
    padding: 18px 45px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 20px rgba(255, 210, 0, 0.2);
}

.btn-main:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: #000;
}

.btn-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: 0.3s;
}

.btn-link:hover {
    color: var(--primary);
}

.btn-link:hover::after {
    width: 100%;
}

.btn-link i {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-link:hover i {
    transform: translate(3px, -3px);
}

/* === ABOUT US === */
.about {
    padding: 40px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.main-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.stat-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.stat-float h3 {
    font-size: 2.5rem;
    font-weight: 800;
}

.sub-title {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: block;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.highlight {
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(255, 204, 0, 0.3);
    z-index: -1;
}

/* === WHY US === */
.why-us {
    background: linear-gradient(180deg, #FFD200 0%, #FFCC00 100%);
    padding: 60px 0;
    position: relative;
}

.why-us-divider {
    width: 80%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 40px auto;
}

.wave-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-layer .shape-fill {
    /* fill: #FFFFFF; */
    fill: #F9F9F9;
}

.why-us .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-pill {
    background: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-black);
}

.dark-pill {
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card.active {
    background: var(--dark-black);
    color: var(--white);
}

.feature-card.active h4 {
    color: var(--white);
}

.feature-card.active p {
    color: rgba(255, 255, 255, 0.8);
}

.icon-circle {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
}

.feature-card.active .icon-circle {
    color: var(--primary);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-black);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    font-weight: 400;
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--dark-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-text h5 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-black);
    margin: 0;
    line-height: 1;
}

.stat-text p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-black);
    margin: 0;
    white-space: nowrap;
}

.why-us-divider {
    width: 100%;
    max-width: 900px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    margin: 50px auto;
}

/* === SOLUTIONS ===  */
.solutions-header h2 {
    font-size: 3rem;
    margin: 30px 0 30px 0;
    text-align: center;
    font-family: sans-serif;
    font-weight: 700;
}

.text-yellow {
    color: #ffcc29;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.sol-card {
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sol-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.sol-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sol-info {
    background-color: #ffcc29;
    padding: 5px 15px 5px 15px;
    flex-grow: 1;
}

.sol-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #333;
}

.sol-list {
    list-style: none;
    padding: 0;
}

.sol-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
}

.sol-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.3rem;
}

/* === CATALOGUE === */
.catalogue-section {
    background-color: #f9f9f9;
}

.section-header-center {
    text-align: center;
    /* margin-bottom: 60px; */
}

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 10px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFD700;
    color: #1a1a1a;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.product-img {
    height: 240px;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.product-detail {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.product-detail p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.product-specs span {
    font-size: 11px;
    color: #444;
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.product-specs i {
    color: #FFD700;
    margin-right: 4px;
}

.btn-product {
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 12px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-product:hover {
    background: #FFD700;
    color: #1a1a1a;
}

.see-all-container {
    text-align: center;
    margin: 10px 0 40px 0;
}

.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-see-all:hover {
    background: #1a1a1a;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-see-all i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-see-all:hover i {
    transform: rotate(90deg);
}

.catalogue-footer {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border: 1px dashed #ccc;
    border-radius: 12px;
    margin: 20px auto;
    max-width: 90%;
}

.catalogue-footer p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 25px;
}

.catalogue-footer .btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    width: auto;
    min-width: 280px;
    font-size: 0.9rem;
    background: #FFD700;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
}

/* === OUR CLIENT === */
.client-section {
    padding: 0 0 40px 0;
    margin: 20px 0 0 0;
    background-color: #f9f9f9;
}

.client-slider {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
}

.client-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollLogos 20s linear infinite;
}

.client-item {
    width: 120px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.client-item img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.client-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.client-track:hover {
    animation-play-state: paused;
}

/* === FOOTER === */
.footer {
    background: #ffffff;
    padding: 20px 0 0;
    color: #333;
    border-top: 1px solid #ffffff;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.footer-logo {
    border-color: #ffffff !important;
}

.footer-logo .logo-icon,
.footer-logo .brand-name,
.footer-logo .brand-sub span,
.footer-logo .logo-divider {
    color: #ffffff !important;
    background-color: transparent;
}

.footer-logo .logo-divider {
    background-color: #ffffff !important;
}

.footer-logo .char-f {
    color: var(--primary-yellow) !important;
}

.footer-brand-top {
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-start;
}

.footer-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.f-col h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-yellow);
}

.f-col p,
.f-col a {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #000000;
    text-decoration: none;
    transition: 0.3s ease;
}

.f-col a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.map-wrapper {
    width: 95%;
    height: 130px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 2px solid #333;
}

.map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) invert(1);
    opacity: 0.6;
}

.map-overlay a {
    background: var(--primary-yellow);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #000 !important;
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark-black);
}

.mobile-only {
    display: none;
}

/* === FOOTER COPYRIGHT === */
.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
    color: #666;
    position: relative;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: #222;
}

/* === LOADING === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.logo-box-loader {
    position: relative;
    width: 120px;
    height: 120px;
    background: #000000;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #222;
}

.logo-icon-loader {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.char-c-loader {
    color: #FFCC00;
}

.char-f-loader {
    color: #FFFFFF;
}

.precision-scanner {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 5px;
    border: 3px solid transparent;
    border-top-color: #FFCC00;
    border-bottom-color: #FFCC00;
    animation: precisionSpin 1.5s linear infinite;
}

@keyframes precisionSpin {
    0% {
        transform: rotate(0deg);
    }

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

.loader-text h4 {
    color: #FFCC00;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.loader-text p {
    color: #666;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === RESPONSIVE MODE === */
@media (max-width: 1024px) {
    .hero-premium {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-visual {
        height: 400px;
        clip-path: none;
    }

    .hero-content-luxury {
        padding: 60px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat-float {
        right: 10px;
        bottom: 10px;
        padding: 20px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start !important;
        padding: 80px 30px;
        gap: 20px;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: var(--dark-black);
        cursor: pointer;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a.nav-item {
        font-size: 1.1rem;
        display: block;
        padding: 10px 0;
        border-radius: 0;
        background: transparent !important;
    }

    .mobile-only {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    .mobile-only-btn {
        display: block;
        margin-top: 20px;
        width: 100%;
    }

    .btn-register-mobile {
        display: block;
        background: var(--primary-yellow);
        color: var(--dark-black);
        text-align: center;
        padding: 15px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 800;
        box-shadow: 0 4px 15px rgba(255, 210, 0, 0.3);
        transition: 0.3s;
    }

    .btn-register-mobile:hover {
        background: var(--dark-black);
        color: var(--white);
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: #f5f5f5;
        margin-top: 10px;
        width: 100%;
        display: none;
    }

    .dropdown.show .dropdown-menu {
        display: block;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .solutions-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .main-logo {
        height: 120px;
    }

    .nav-wrapper {
        height: 40px;
    }

    .navbar.scrolled .main-logo {
        height: 100px;
    }

    .hero-premium {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .hero-visual {
        clip-path: none;
        height: 300px;
        width: 100%;
        margin-top: -18px;
    }

    .hero-content-luxury {
        padding: 40px 20px;
    }

    .video-background-container iframe {
        width: 100%;
        margin-left: 0;
    }

    .split-text {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .prod-grid {
        grid-template-columns: 1fr;
    }

    .p-item {
        flex-direction: column;
    }

    .p-img {
        width: 100%;
        height: 200px;
    }

    .p-content {
        width: 100%;
        padding: 20px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .section-pill {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }

    .why-us {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-pill {
        font-size: 0.8rem;
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 30px;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .section-header-center h2 {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-img {
        height: 180px;
    }

    .product-detail {
        padding: 15px;
    }

    .product-detail h3 {
        font-size: 1.1rem;
    }

    .product-specs span {
        font-size: 10px;
        padding: 3px 8px;
    }

    .catalogue-footer {
        padding: 30px 15px;
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .catalogue-footer p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 20px;
        max-width: 90%;
    }

    .catalogue-footer .btn-main {
        padding: 12px 20px;
        font-size: 0.9rem;
        letter-spacing: normal;
        text-transform: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .catalogue-footer .btn-main i {
        font-size: 1rem;
        margin: 0;
    }

    .footer {
        padding-top: 50px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .logo-col {
        display: flex;
        justify-content: center;
    }

    .map-container {
        height: 200px;
    }

    .footer-links li {
        margin-bottom: 15px;
    }
}

@media (max-width: 600px) {
    .footer-grid-four {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-brand-top {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-text-wrap h1 {
        font-size: 2.5rem;
    }

    .product-badge {
        font-size: 9px;
        padding: 4px 10px;
    }

    .btn-main,
    .btn-product {
        width: 100%;
    }

    .see-all-container {
        margin: 30px 0 40px 0;
        padding: 0 15px;
    }

    .btn-see-all {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 13px;
    }

    .catalogue-footer p {
        font-size: 0.95rem;
    }

    .catalogue-footer .btn-main {
        min-width: unset;
        width: 100%;
        font-size: 0.8rem;
        padding: 15px 10px;
        white-space: normal;
        line-height: 1.4;
    }
}