/*ASIATRIX
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Root Variables
02. General css
03. Header css

-------------------------------------------------------------------------------------- */

/* =========================
   01. ROOT VARIABLES
========================= */
:root {

    /* COLORS */
    --color-primary: #ffffff;
    --color-secondary: #aaaaaa;
    --color-black: #000000;
    --color-dark: #111111;
    --color-border: #222222;

    /* BRAND (optional future use) */
    --color-accent: #2563eb;
    --color-accent-gold: #facc15;

    /* TEXT */
    --text-color: var(--color-primary);
    --text-muted: var(--color-secondary);

    /* FONT */
    --font-primary: 'Hanken Grotesk', sans-serif;

    /* FONT SIZES */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-md: 16px;
    --font-lg: 18px;
    --font-xl: 24px;
    --font-xxl: 40px;

    /* SPACING */
    --space-xs: 5px;
    --space-sm: 10px;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 80px;

    /* BORDER RADIUS */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* TRANSITION */
    --transition: all 0.3s ease;

    /* CONTAINER */
    --container-width: 1200px;

}
html, body {
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   02. General css
========================= */
body {
    font-family: var(--font-primary);
    font-size: var(--font-md);
    color: var(--text-color);
    background: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* IMAGES */
img {
    max-width: 100%;
    display: block;
}

/* LINKS */
a {
    text-decoration: none;
    color: inherit;
}

/* LIST */
ul {
    list-style: none;
}

/* CONTAINER */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* FLEX HELPERS */
.flex {
    display: flex;
    align-items: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BUTTON (GLOBAL STYLE) */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    background: var(--color-primary);
    color: var(--color-black);
    font-size: var(--font-sm);
    transition: var(--transition);
}

.btn:hover {
    opacity: 0.8;
}

/* SECTION SPACING */
.section {
    padding: var(--space-xl) 0;
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/************************************/
/****        03. HEADER CSS      ****/
/************************************/

/* BODY */
body {
    overflow-x: hidden;
}

/* HEADER */
.header {
    background: #000;
    color: #fff;
    position: relative;
    z-index: 1000;
    top: 0;
    left: 0;
}


/* SAME SPACING SYSTEM */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 40px;
}

/* MENU */
.menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.menu-item {
    font-weight: 500;
}

/* LINKS */
.menu-link,
.menu-item a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: 0.3s;
}

.menu-link:hover,
.menu-item a:hover {
    color: #aaa;
}

/* UNDERLINE */
.menu-item a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #aaa;
    transition: 0.3s;
}

.menu-item a:hover::after {
    width: 100%;
}

/* =========================
   🔥 MEGA MENU (ACCENTURE)
========================= */

.mega-parent {
    position: static;
}

/* FULL WIDTH BACKGROUND */
.mega-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;

    background: #111;
    padding: 60px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: 0.4s ease;

    z-index: 999;
}

/* SHOW */
.dropdown.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 🔥 SAME WIDTH AS HEADER */
.mega-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* SAME as header */
}

/* TITLE */
.mega-header {
    margin-bottom: 40px;
}

.mega-title {
    font-size: 28px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

/* UNDERLINE */
.mega-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.mega-title:hover::after {
    width: 100%;
}

/* ARROW */
.arrow {
    font-size: 24px;
    transition: 0.3s;
}

.mega-title:hover .arrow {
    transform: translateX(6px);
}

/* GRID */
.mega-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px; /* more premium spacing */
}

/* COLUMN */
.mega-col h4 {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

.mega-col ul li {
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.mega-col ul li:hover {
    color: #aaa;
}

/* =========================
   COUNTRY DROPDOWN
========================= */

.country {
    position: relative;
}

.country .dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;

    background: #111;
    min-width: 160px;
    padding: 10px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
}

.country.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li:hover {
    background: #222;
}

/* =========================
   ICONS
========================= */

.icon-svg {
    width: 20px;
    height: 20px;
    color: #fff;
    transition: 0.3s;
}

.chevron-svg {
    width: 14px;
    height: 14px;
    transition: 0.3s;
}

.icon:hover .icon-svg,
.country:hover .icon-svg,
.menu-item:hover .chevron-svg {
    color: #aaa;
}

.dropdown.active .chevron-svg {
    transform: rotate(180deg);
}

/* RIGHT */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.country-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =========================
   🔥 GRADIENT BRAND TOUCH
========================= */

:root {
    --gradient-main: linear-gradient(90deg, #2563eb, #9333ea);
}

/* =========================
   🌑 OVERLAY BACKGROUND
========================= */

.mega-overlay {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);

    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 998;
}

/* SHOW OVERLAY */
.dropdown.active ~ .mega-overlay {
    opacity: 1;
    visibility: visible;
}

/* =========================
   🎬 STAGGER ANIMATION
========================= */

.mega-col {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
}

/* stagger delays */
.dropdown.active .mega-col:nth-child(1) { transition-delay: 0.1s; }
.dropdown.active .mega-col:nth-child(2) { transition-delay: 0.2s; }
.dropdown.active .mega-col:nth-child(3) { transition-delay: 0.3s; }
.dropdown.active .mega-col:nth-child(4) { transition-delay: 0.4s; }

.dropdown.active .mega-col {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   ✨ TITLE PREMIUM EFFECT
========================= */

.mega-title {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* UNDERLINE GRADIENT */
.mega-title::after {
    background: var(--gradient-main);
}

/* ARROW GLOW */
.arrow {
    color: #9333ea;
}

.mega-title:hover .arrow {
    transform: translateX(8px);
    color: #2563eb;
}

/* =========================
   🔥 MENU HOVER PREMIUM
========================= */

.menu-link:hover,
.menu-item a:hover {
    color: #fff;
}

/* animated underline gradient */
.menu-item a::after {
    background: var(--gradient-main);
}

/* =========================
   💡 LIST HOVER EFFECT
========================= */

.mega-col ul li {
    position: relative;
}

/* left glow line */
.mega-col ul li::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: 0.3s;
    transform: translateY(-50%);
}

.mega-col ul li:hover::before {
    width: 6px;
}

.mega-col ul li:hover {
    color: #fff;
    transform: translateX(6px);
}

/* =========================
   🌟 ICON HOVER GLOW
========================= */

.icon-svg,
.chevron-svg {
    transition: 0.3s;
}

.icon:hover .icon-svg,
.country:hover .icon-svg {
    color: #9333ea;
}

/* =========================
   🔥 MEGA MENU TOP BORDER
========================= */

.mega-menu {
    border-top: 1px solid rgba(255,255,255,0.05);
}



/* =========================
   MOBILE SAFE LAYER
   (No conflict with desktop)
========================= */

/* Hide mobile by default */
.mobile-header,
.mobile-menu {
    display: none;
}

/* =========================
   MOBILE ONLY
========================= */
@media (max-width: 768px) {

    /* Hide desktop elements ONLY visually */
    .header .menu,
    .header .header-right {
        display: none !important;
    }

    /* Keep logo hidden only on mobile */
    .header .logo {
        display: none;
    }

    /* =========================
       MOBILE HEADER
    ========================= */
    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        padding-top: 12px;  /* control spacing */
        background: #000;
        color: #fff;
        position: relative;
        z-index: 1001;
    }
    @media (max-width: 1024px) {

    .mobile-header {
        margin: 0;
        padding-top: 12px;  /* control spacing */
    }

}

    /* LEFT HAMBURGER */
    .hamburger {
        font-size: 22px;
        cursor: pointer;
    }

    /* CENTER LOGO */
    .mobile-logo img {
        height: 28px;   
        width: auto;
    }

    /* RIGHT ICONS */
    .mobile-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* =========================
       MOBILE MENU PANEL
    ========================= */

    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #111;
        padding: 20px;

        flex-direction: column;
        justify-content: space-between;

        transition: left 0.4s ease;
        z-index: 9999;
    }

    .mobile-menu.active {
        left: 0;
    }

    /* TOP BAR */
    .mobile-menu-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .close-menu {
        font-size: 22px;
        cursor: pointer;
    }

    /* =========================
       MENU ITEMS
    ========================= */

    .mobile-menu-content {
        margin-top: 40px;
    }

    .mobile-item {
        font-size: 20px;
        margin-bottom: 25px;
        cursor: pointer;
    }

    .mobile-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* SUBMENU */
    .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        transition: 0.3s ease;
        padding-left: 10px;
    }

    .mobile-submenu p {
        margin: 10px 0;
        color: #aaa;
    }

    .mobile-item.active .mobile-submenu {
        max-height: 200px;
    }

    /* =========================
       BOTTOM SOCIAL
    ========================= */

    .mobile-bottom {
        margin-top: 40px;
    }

    .mobile-bottom p {
        margin: 10px 0;
    }

    .socials {
        display: flex;
        gap: 20px;
        margin-top: 20px;
    }

    .socials span {
        padding: 8px;
        border: 1px solid #333;
        border-radius: 4px;
        transition: 0.3s;
    }

    .socials span:hover {
        border-color: #9333ea;
        color: #9333ea;
    }
}